Wiki source code of Application_PHP5

Version 14.1 by Nicolas Gregoire on 2012/01/16 11:33

Hide last authors
Nicolas Gregoire 12.1 1 {{toc/}}
2
Nicolas Gregoire 13.1 3 = Introduction =
Nicolas Gregoire 12.1 4
Nicolas Gregoire 1.1 5 Dixit [[Wikipedia>>http://en.wikipedia.org/wiki/PHP||rel="__blank"]] : "//PHP is a general-purpose server-side scripting language originally designed for web development to produce dynamic web pages. It is among one of the first developed server-side scripting languages that is embedded into a HTML source document, rather than calling an external file to process data. Ultimately, the code is interpreted by a web server with a PHP processor module which generates the resulting web page.//"
6
Nicolas Gregoire 12.1 7 = Creating files =
Nicolas Gregoire 1.1 8
Nicolas Gregoire 11.1 9 Version 5 of the PHP language uses the [[libxslt>>Engine_libxslt]] engine to transform XML documents using XSLT. Prior to version 5.3.9, calls to libxslt were not restricted via xsltSetSecurityPrefs(). It was then possible to create or overwrite files on the engine side, typically for dropping a PHP Web Shell. This vulnerability ([[Bug #54446>>https://bugs.php.net/bug.php?id=54446||rel="__blank"]]) was patched in version 5.3.9 ([[ChangeLog>>http://php.net/ChangeLog-5.php#5.3.9||rel="__blank"]]).
Nicolas Gregoire 4.1 10
Nicolas Gregoire 14.1 11 The attached [[create-file-via-libxslt.php>>attach:create-file-via-libxslt.php]] PoC will drop a basic PHP script in /tmp/.
Nicolas Gregoire 11.1 12
Nicolas Gregoire 14.1 13 A better script was later posted on [[OSS-Security>>http://seclists.org/oss-sec/2012/q1/157]] at RedHat request. This PHP scipt will by default display a pre-filled HTML form including some XML data and XSLT code. When the form is submitted, the user-controlled
14 XML data is transformed using the user-controlled XSLT code. Then, the output of this transformation is displayed in the browser.
15
16 When executed, the pre-filled XSLT code will write to /var/www/xxx/backdoor.php this content :
17
18 ##
19 <html><body>
20 <h1><font color="red">I'm a (very) malicious PHP file !!!</font></h1>
21 <?php phpinfo()?>
22 </body></html>
23 ##
24
25 Note : the payload is encrypted with RC4. A static key ("simple_demo") embedded in the XSLT code is used to decrypt it.
26
Nicolas Gregoire 12.1 27 = Executing PHP code =
Nicolas Gregoire 7.1 28
Nicolas Gregoire 11.1 29 A call to [[registerPHPFunctions()>>http://php.net/manual/en/xsltprocessor.registerphpfunctions.php]] allows to execute standard PHP functions directly from the XSLT stylesheet. I never came across this pattern in real-life engagements but Google Code search references [[several>>http://www.google.com/codesearch#search/&q=registerPHPFunctions%20lang:%5Ephp$&type=cs||rel="__blank"]] instances of it (dork: "registerPHPFunctions lang:^php$"). This isn't a bug and will not be patched.
Nicolas Gregoire 7.1 30
31
Nicolas Gregoire 10.1 32 |=Namespace |=Extension function |=PoC |=Note
Nicolas Gregoire 11.1 33 | http:~/~/php.net/xsl| Any PHP function|[[execute-code-via-libxslt.php>>attach:execute-code-via-libxslt.php]]| A call to registerPHPFunctions() is needed
Nicolas Gregoire 10.1 34
Nicolas Gregoire 9.1 35 The attached [[execute-code-via-libxslt.php>>attach:execute-code-via-libxslt.php]] PoC will use the passthru() PHP function to execute "uname -a".