开发者

Best way to allow user to inject and run php code

开发者 https://www.devze.com 2023-03-06 12:11 出处:网络
I\'ve been thinking for a while about the idea of allowing user to inject code on website and run it on a web server. It\'s not a new idea - many websites allow users to \"test\" their code online - s

I've been thinking for a while about the idea of allowing user to inject code on website and run it on a web server. It's not a new idea - many websites allow users to "test" their code online - such as http://ideone.com/.

For example: Let's say that we have a form containing <textarea> element in which that user enters his piece of code and then submits it. Server reads POST data, saves as PHP file and require()s it while being surrounded by ob_*() output buffering handlers. Captured output is presented to end user.

My question is: how to do it properly? Things that we should take into account [and possible solutions开发者_高级运维]:

  • security, user is not allowed to do anything evil,
    • php.ini's disable_functions
  • stability, user is not allowed to kill webserver submitting while(true){},
    • set_time_limit()
  • performance, server returns answer in an acceptable time,
  • control, user can do anything that matches previous points.

I would prefer PHP-oriented answers, but general approach is also welcome. Thank you in advance.


I would think about this problem one level higher, above and outside of the web server. Have a very unprivileged, jailed, chroot'ed standalone process for running these uploaded PHP scripts, then it doesn't matter what PHP functions are enabled or not, they will fail based on permissions and lack of access.

Have a parent process that monitors how long the above mentioned "worker" process has been running, if its been too long, kill it, and report back a timeout error to the end user.

Obviously there are many implementation details to work out as to how to run this system asynchronously outside of the browser request, but I think it would provide a pretty secure way to run your untrusted PHP scripts.


Wouldn't disabling functions in your server's ini file limit some of the functions of the application itself?

I think you have to do some hardcore sanitization on the POST data and strip "illegal" code there. I think doing that with the addition of the other methods you describe might make it work.

Just remember. Sanitize the everloving daylight out of that POST data.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号