├── README.md └── main.py /README.md: -------------------------------------------------------------------------------- 1 | 2 | # Email Spoof Spammer 3 | 4 | 5 | ## Installation 6 | 7 | Requirements For the project 8 | 9 | ```bash 10 | - Python 3.x or above 11 | - a SMTP Server (i prefer using sendinblue or smtp2go) 12 | ``` 13 | 14 | ## Run 15 | 16 | Clone the project 17 | 18 | ```bash 19 | git clone https://github.com/CodingWithUday/email-spoof-spammer 20 | ``` 21 | 22 | Go to the project directory 23 | 24 | ```bash 25 | cd email-spoof-spammer 26 | ``` 27 | 28 | Configure the code 29 | 30 | ```bash 31 | i cant show it here but you can open the main.py 32 | file with a text editor and easily do the configuration 33 | ``` 34 | 35 | run the file 36 | 37 | ```bash 38 | python3 main.py 39 | ``` 40 | 41 | 42 | ## Features 43 | 44 | - Mostly Inbox 45 | - Shows the number of emails sent 46 | - Easy To Use 47 | - Cross platform 48 | 49 | 50 | ## Support 51 | 52 | For support, DM me on discord - IsntTaken#0999 53 | 54 | 55 | ## 🔗 Links 56 | [![website](https://img.shields.io/badge/website-000?style=for-the-badge&logo=ko-fi&logoColor=white)](http://codeuday.cf/) 57 | [![youtube](https://img.shields.io/badge/youtube-0A66C2?style=for-the-badge&logo=youtube&logoColor=red)](https://www.youtube.com/c/codingwithuday/) 58 | [![discord](https://img.shields.io/badge/discord-1DA1F2?style=for-the-badge&logo=discord&logoColor=purple)](https://discord.com/users/943534121437777970/) 59 | 60 | 61 | ## Educational Use Only 62 | Only for educational purposes the author wont be hold liable for 63 | anything done by you 64 | ## Authors 65 | 66 | - [@codingwithuday](https://www.github.com/codingwithuday) 67 | 68 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | # Email Spammer which spoofs emails and spams email using smtp 2 | # Made By Coding With Uday 3 | # Website - http://codeuday.cf/ 4 | # YouTube - https://youtube.com/c/codingwithuday 5 | # Discord - IsntTaken#0999 6 | 7 | # Importing required dependencies 8 | import random 9 | import smtplib 10 | from email.mime.text import MIMEText 11 | 12 | # Specifying sender and receivers 13 | sender = 'example@example.com' 14 | receivers = ['receiver@example.com', "receiver2@example.com"] 15 | 16 | # Specifying smtp port 17 | port = 587 18 | 19 | # Specifying Smtp Address and Connecting to the server 20 | with smtplib.SMTP('smtp-relay.sendinblue.com', port) as server: 21 | for i in range(10): # You can change the value inside the range to the number of emails you wanna send 22 | randnum = random.randint(0, 999) # Generating random number 23 | msg = MIMEText(f'this is the body of the email') # Body of the email 24 | msg['Subject'] = 'Subject of the email' # Subject Of the email 25 | # From of email again but i'm adding random number between so that in the inbox it stacks causing to flood the inbox 26 | msg['From'] = f'from{randnum}@example.com' 27 | msg['To'] = 'to@example.com' # To email again 28 | server.login('smtp-username', 'smtp-password') # SMTP Credentials 29 | server.sendmail(sender, receivers, msg.as_string()) # Composing the email 30 | print("Successfully sent email", i+1) # Printing Success Msg 31 | --------------------------------------------------------------------------------