add simple vulnerable php script
git-svn-id: file:///home/svn/framework3/trunk@5747 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
4c091edac1
commit
27f4322366
|
@ -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>
|
Loading…
Reference in New Issue