add simple vulnerable php script

git-svn-id: file:///home/svn/framework3/trunk@5747 4d416f70-5f16-0410-b530-b9f4589650da
unstable
James Lee 2008-10-13 05:55:46 +00:00
parent 4c091edac1
commit 27f4322366
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
<?php
if (isset($_REQUEST['path'])) {
include($_REQUEST['path']);
}
if (isset($_REQUEST['includeme'])) {
include($_REQUEST['includeme']);
}
if (isset($_REQUEST['evalme'])) {
eval($_REQUEST['evalme']);
}
?>
<html>
<head><title>Your mom</title></head>
<body>
<H1>Your mom</H1>
</body>
</html>