What are the security concerns of evaluating user code in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T09:27:02Z http://stackoverflow.com/feeds/question/131902 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php 4 What are the security concerns of evaluating user code in PHP? Graphain 2008-09-25T07:22:30Z 2009-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>&lt;?php eval($_POST['codeInput']); %&gt; </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#131911 15 Answer by Owen for What are the security concerns of evaluating user code in PHP? Owen 2008-09-25T07:23:51Z 2008-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#131965 3 Answer by keparo for What are the security concerns of evaluating user code in PHP? keparo 2008-09-25T07:34:50Z 2008-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#131984 4 Answer by Rich Bradshaw for What are the security concerns of evaluating user code in PHP? Rich Bradshaw 2008-09-25T07:42:37Z 2008-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#132095 0 Answer by Eikern for What are the security concerns of evaluating user code in PHP? Eikern 2008-09-25T08:20:23Z 2008-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#137019 2 Answer by arin sarkissian for What are the security concerns of evaluating user code in PHP? arin sarkissian 2008-09-26T00:04:37Z 2008-09-26T00:04:37Z <p>could potentially be in really big trouble if you <code>eval()</code>'d something like </p> <pre><code>&lt;?php eval("shell_exec(\"rm -rf {$_SERVER['DOCUMENT_ROOT']}\");"); ?&gt; </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 &amp; checks.</p> http://stackoverflow.com/questions/131902/what-are-the-security-concerns-of-evaluating-user-code-in-php/137066#137066 3 Answer by paan for What are the security concerns of evaluating user code in PHP? paan 2008-09-26T00:18:07Z 2008-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#137118 2 Answer by randy for What are the security concerns of evaluating user code in PHP? randy 2008-09-26T00:31:22Z 2008-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#137167 3 Answer by Geoff for What are the security concerns of evaluating user code in PHP? Geoff 2008-09-26T00:48:34Z 2008-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#739930 1 Answer by ultramage for What are the security concerns of evaluating user code in PHP? ultramage 2009-04-11T11:49:54Z 2009-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>