├── 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 | Buy Me A Coffee 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 | Email spoofer 4 | 5 | 6 | 7 | 8 |
9 |

Email spoofer

10 |
11 | 12 |
13 |

14 | 15 |

16 |

17 | 18 |

19 |

20 | 21 |

22 |

23 | 24 |

25 |

26 |

27 |
28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /mail.php: -------------------------------------------------------------------------------- 1 | "; 19 | echo "From: ".$from; 20 | } 21 | -------------------------------------------------------------------------------- /no_css_index.html: -------------------------------------------------------------------------------- 1 |
2 |

From:

3 |

To:

4 |

Subject:

5 |

Message:

6 | 7 |
8 | --------------------------------------------------------------------------------