Skip to content

Commit 176aa24

Browse files
authored
Updated Few Lines
1 parent 31c8ecc commit 176aa24

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

email_bomber_python_coderatul.py

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
print(' (__)\ )\/\ ')
77
print(' ||----w | ')
88
print(' || || ')
9-
#we could used multiline strip but it was not preserving cowsay
9+
# we could used multiline strip but it was not preserving cowsay
1010
print()
1111
print(''' source code available at : linktr.ee/programmeratul ''')
1212
print( ''' email bomber v1.0 ''')
@@ -18,37 +18,37 @@
1818
''')
1919
print('Author : coderatul')
2020
print('Author is not responsible for any kind of unethical act performed using this script')
21-
print('visit smtplib documentation to know more about this project : https://docs.python.org/3/library/smtplib.html')
22-
print('initialising program ..........')
21+
print('Visit smtplib documentation to know more about this project : https://docs.python.org/3/library/smtplib.html')
22+
print('Initialising program ..........')
2323
num_count = 0
2424
#importing simple Mail Transfer Protocol(smtp) module
2525
import smtplib
2626
#getting number of mail's to be sent
2727
try:
28-
nos = int(input("Enter the number of Mails to be sent :"))
28+
nos = int(input("Enter the number of Mails to be sent : "))
2929
except:
30-
print("Pls enter a valid character(only number!)")
30+
print("Please enter a valid character(only number!)")
3131
#printing number of mails to be sent
3232
print("Number of mail's to be sent is",nos)
3333
#getting sender's gmail ID from end user
34-
sender_email = input("Enter you gmail/sender's ID :")
34+
sender_email = input("Enter you gmail/sender's ID : ")
3535
#printing sender's gmail ID
36-
print("sender's gmail ID is : ",sender_email)
36+
print("Sender's gmail ID is : ",sender_email)
3737
#inputing password for login into smtp server
3838
password = input("Please enter your password : ")
3939
#printing password entered by the end user
40-
print("sender's gmail ID password is :",password)
40+
print("Sender's gmail ID password is : ",password)
4141
#inputing receivers gamil ID
4242
rec_email = input("Enter receiver's gmail id :")
4343
#printing receiver's gmail ID
44-
print("receiver's gmail Id is :",rec_email)
44+
print("Receiver's gmail Id is : ",rec_email)
4545
#inputing message from the end user
4646
message = input("Enter your message:")
4747
#printing message to be sent
48-
print('message to be sent is :',message)
48+
print('Message to be sent is :',message)
4949
#using for loop for sending desired nos of mails
5050
#using try to check whether info given is correct or not and if not the printing solution
51-
print('login successfuly !!!')
51+
print('Login successfuly !!!')
5252
print('encrytping traffic.....')
5353
try:
5454
for i in range(nos):
@@ -68,9 +68,9 @@
6868
print('This script is powerful use wisely!!!')
6969
except:
7070
print(''' {{{script Ended}}}
71-
1. the info you entered is incorrect
71+
1. The info you entered is incorrect
7272
solution : re - run script and enter info carefully
73-
2. if issue not resolved switch on this :
73+
2. If issue not resolved switch on this :
7474
myaccount.google.com/lesssecureapps
7575
disable 2FA if enabled''')
7676

0 commit comments

Comments
 (0)