christiaan / php-sandbox

Php Sandbox in a child process which should make it possible to run user supplied code safely
MIT License
4 stars 0 forks source link

Is this under maintained? #2

Open peter279k opened 3 years ago

peter279k commented 3 years ago

As title, since I need to build a sandbox on the web and I research some repositories.

They're as follows:

I need to select one of the above repositories and build my sandbox with the customized PHP package demos.

Is this repository maintained? If possible, I would be happy to do some improved contributions on this repository -:).

christiaan commented 3 years ago

When developing this POC I had a need for a faster solution, spawning a separate PHP process for every request is not really a performant solution. I was looking to render mail templates written in PHP securely for thousands/millions of recipients.

However looking at that other project I can imagine this being more secure as the foreign code can only communicate using strings with the parent process.

Contributions are definitely welcome, I can imagine that most dependencies are quite out of date by now.