Python programlı e-postalar nasıl gönderilir ve gönderen adresi nasıl gizlenir?

Glock

80+
Katılım
23 Mart 2020
Mesajlar
74
Reaksiyon skoru
27
Beyler programi yazdim ama gizli email nasil gönderebilirim?

import smtplib
from email.mime.text import MIMEText
from email.utils import *

email_sender = 'noreply%%@gmail.com'
email_receiver = 'example%%%@gmail.com'

subject = 'Python!'

msg = MIMEText('This is the body of the message.')
msg['To'] = formataddr(('Recipient', 'example%%%@gmail.com'))
msg['From'] = formataddr(('Author', '[email protected]'))
msg['Subject'] = 'Simple test message'

connection = smtplib.SMTP('smtp.gmail.com', 587)
connection.starttls()
connection.login(email_sender, 'password')
connection.sendmail(msg['From'], email_receiver, msg.as_string())
connection.quit()
 
Arkadaş çok amatörce bir keylogger'ı birilerine bulaştırmak istiyor. Kodunuzdan daha amatörsünüz, bu işlere girişmeyin ters teperler :D
 
Yeni mesajlar Yeni Konu Aç  

   

SON KONULAR

Forum istatistikleri

Konular
1,178,332
Mesajlar
10,621,668
Üyeler
187,029
Son üye
fffffffg
Geri
Top