Skip to content

Instantly share code, notes, and snippets.

@173210
Created October 25, 2014 04:49
Show Gist options
  • Save 173210/2d294f0d7f9756db9bf2 to your computer and use it in GitHub Desktop.
Save 173210/2d294f0d7f9756db9bf2 to your computer and use it in GitHub Desktop.
Memory Dump Reciever
<?PHP
$fd = fopen("dump.bin", "ab");
fwrite($fd, file_get_contents("php://input"));
fclose ($fd);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment