JamieGBH435 wrote:
If you can see 2 lines of php code here then this hack didn't work, otherwise if you see the word "LOL" anywhere on the page then the hack worked via php injection
";echo "lol";
';echo "lol;
and the reply post routine needs looking at
Jamie,
Nearly all web-technologies protect against PHP injections, because well, that's easy. You would have to be using bad PHP development techniques to have PHP Injections work...like building the datastructs prior to running it through the PHP engine, or using a PHP page to generate a PHP page...You should only ever use PHP to generate an xHTML page, never a actual dynamic response. The important one is SQL injections, which phpBB sanitizes pretty well..there are a few very obfuscated SQL attacks that still can be done, but they require a LOT of time to figure out the intricacies of this server (what character sets PHP supports versus the HTTP daemon versus the DBMS).