Using Python smtplib with Tor

I'm experimenting with spam email. One of these experiments requires sending mail through Tor. Since I use Python and smtplib for my experiments, I am looking for a way to use the Tor proxy (or another method) to do this mailing. Ideas how to do this?

+3
source share
2 answers

Because of the abuse of companion spam, many Tor exit nodes refuse to issue 25 port traffic (SMTP), so you may have problems.

+1
source

http://bent.latency.net/smtpprox/ I found this before but have not tried it

+1
source

Source: https://habr.com/ru/post/1699182/


All Articles