What are the security concerns of evaluating user code in PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T09:27:02Zhttp://stackoverflow.com/feeds/question/131902http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php4What are the security concerns of evaluating user code in PHP?Graphain2008-09-25T07:22:30Z2009-04-11T11:49:54Z
<p>Hi,</p>
<p>I am wondering what security concerns there are to implementing a PHP evaluator like this:</p>
<pre><code><?php eval($_POST['codeInput']); %>
</code></pre>
<p>This is in the context of making a PHP sandbox so sanitising against DB input etc. isn't a massive issue.</p>
<p>Users destroying the server the file is hosted on is.</p>
<p>I've seen Ruby simulators so I was curious what's involved security wise (vague details at least).</p>
<p><hr></p>
<p>Thanks all. I'm not even sure on which answer to accept because they are all useful.</p>
<p><a href="http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php#131911">Owen's answer</a> summarises what I suspected (the server itself would be at risk).</p>
<p><a href="http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php#137019">arin's answer</a> gives a great example of the potential problems.</p>
<p><a href="http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php#137167">Geoff's answer</a> and <a href="http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php#137118">randy's answer</a> echo the general opinion that you would need to write your own evaluator to achieve simulation type capabilities.</p>
http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/131911#13191115Answer by Owen for What are the security concerns of evaluating user code in PHP?Owen2008-09-25T07:23:51Z2008-09-25T07:23:51Z<p>don't do that.</p>
<p>they basically have access to anything you can do in PHP (look around the file system, get/set any sort of variables, open connections to other machines to insert code to run, etc...)</p>
http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/131965#1319653Answer by keparo for What are the security concerns of evaluating user code in PHP?keparo2008-09-25T07:34:50Z2008-09-25T07:41:13Z<p>There are a lot of things you could say.. The concerns are <strong>not specific to PHP.</strong></p>
<p>Here's the simple answer:</p>
<p><strong>Any input to your machine (or database) needs to be sanitized.</strong></p>
<p>The code snippet you've posted pretty much lets a user run any code they want, so it's especially dangerous.</p>
<p>There is a pretty good introductory article on code injection here:</p>
<p><a href="http://en.wikipedia.org/wiki/Code_injection" rel="nofollow">Wikipedia on Code Injection</a>.</p>
http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/131984#1319844Answer by Rich Bradshaw for What are the security concerns of evaluating user code in PHP?Rich Bradshaw2008-09-25T07:42:37Z2008-09-25T07:42:37Z<p>If you allow arbitrary code to be run on your server, it's not your server any more.</p>
http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/132095#1320950Answer by Eikern for What are the security concerns of evaluating user code in PHP?Eikern2008-09-25T08:20:23Z2008-09-25T08:20:23Z<p>As already answered, you need to sanitize your inputs. I guess you could use some regex-filtring of some kind to remove unwanted commands such as "exec" and basically every malicious command PHP has got to offer (or which could be exploited), and that's a lot.</p>
http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/137019#1370192Answer by arin sarkissian for What are the security concerns of evaluating user code in PHP?arin sarkissian2008-09-26T00:04:37Z2008-09-26T00:04:37Z<p>could potentially be in really big trouble if you <code>eval()</code>'d something like </p>
<pre><code><?php
eval("shell_exec(\"rm -rf {$_SERVER['DOCUMENT_ROOT']}\");");
?>
</code></pre>
<p>it's an extreme example but it that case your site would just get deleted. hopefully your permissions wouldn't allow it but, it helps illustrate the need for sanitization & checks.</p>
http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/137066#1370663Answer by paan for What are the security concerns of evaluating user code in PHP?paan2008-09-26T00:18:07Z2008-09-26T00:18:07Z<p>Dear god <strong>NO</strong>. I cringe even at the title. Allowing user to run any kind of arbitrary code is like handing the server over to them</p>
<p>I know the people above me already said that. But believe me. That's never enough times that someone can tell you to sanitize your input.</p>
<p>If you <em>really, really</em> want to allow user to run some kind of code. Make a subset of the commands available to the user by creating some sort of psudo language that the user can use to do that. A-la the way bbcode or markdown works. </p>
http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/137118#1371182Answer by randy for What are the security concerns of evaluating user code in PHP?randy2008-09-26T00:31:22Z2008-09-26T00:31:22Z<p>Do <strong>NOT</strong> allow unfiltered code to be executed on your server, period.</p>
<p>If you'd like to create a tool that allows for interactive demonstration of a language such as the tool seen here: <a href="http://tryruby.hobix.com/" rel="nofollow">http://tryruby.hobix.com/</a> I would work on coding a sub portion of the language yourself. Ideally, you'll be using it to demonstrate simple concepts to new programmers, so it's irrelevant if you properly implement all the features.</p>
<p>By doing this you can control the input via a <strong>white list</strong> of known acceptable input. If the input isn't on the white list it isn't executed.</p>
<p>Best of luck!</p>
http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/137167#1371673Answer by Geoff for What are the security concerns of evaluating user code in PHP?Geoff2008-09-26T00:48:34Z2008-09-26T00:48:34Z<p>If you are looking to build an <a href="http://www.hping.org/phpinteractive/" rel="nofollow">online PHP interpreter</a>, you will need to build an actual <a href="http://en.wikipedia.org/wiki/REPL" rel="nofollow">REPL</a> interpreter and not use eval.</p>
<p>Otherwise, never ever execute arbitrary user code. Ever. </p>
http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/739930#7399301Answer by ultramage for What are the security concerns of evaluating user code in PHP?ultramage2009-04-11T11:49:54Z2009-04-11T11:49:54Z<p>The eval() function is hard to sanitize and even if you did there would surely be a way around it. Even if you filtered 'exec', all you need to do is to somehow glue the string 'exec' into a variable, and then do $variable(). You'd need to really cripple the language to achieve at least some sort of imaginary security.</p>