├── README.md
├── Screenshot_1.jpg
├── auto_curl.sh
├── index.html
├── mail.php
└── no_css_index.html
/README.md:
--------------------------------------------------------------------------------
1 | # Email spoofer
2 | PHP email spoofer. Send emails from any email adress.
3 |
4 |
5 |
6 |
7 |
8 | Note: Make sure that you upload it to a PHP and email compatible server. You can use 000webhost as it's free.
9 |
10 | ## Using the command line
11 |
12 | You can use curl to send the PHP form from the command line:
13 |
14 | ``curl --data "from=$FROM&to=TO&subject=SUBJECT&message=MESSAGE" $PHP_URL``
15 |
16 | If you want to do this automatically, you can use this little script.
17 |
18 | ## Disclaimer
19 | This project is for testing and educational purposes. I don't take any responsibility for what you do with this program.
20 |
--------------------------------------------------------------------------------
/Screenshot_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adamff-dev/Email_spoofer/ae8c35598166cd9480cd5deba5214dbc3ac94f6b/Screenshot_1.jpg
--------------------------------------------------------------------------------
/auto_curl.sh:
--------------------------------------------------------------------------------
1 | echo -n "Sender email > "
2 | read SENDER
3 | echo -n "Recipient email> "
4 | read RECIPIENT
5 | echo -n "Subject > "
6 | read SUBJECT
7 | echo -n "Message > "
8 | read MESSAGE
9 | echo -n "PHP url > "
10 | read URL
11 | curl --data "from=$SENDER&to=RECIPIENT&subject=SUBJECT&message=MESSAGE" $URL
12 | echo "Done."
13 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |