8
Only 1% of malicious emails that reach inboxes deliver malware - Help Net Security
(www.helpnetsecurity.com)
c/cybersecurity is a community centered on the cybersecurity and information security profession. You can come here to discuss news, post something interesting, or just chat with others.
THE RULES
Instance Rules
Community Rules
If you ask someone to hack your "friends" socials you're just going to get banned so don't do that.
Learn about hacking
Other security-related communities !databreaches@lemmy.zip !netsec@lemmy.world !securitynews@infosec.pub !cybersecurity@infosec.pub !pulse_of_truth@infosec.pub
Notable mention to !cybersecuritymemes@lemmy.world
@taladar
consider validate.email and py3-validate-email
+````import re
import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
server = smtplib.SMTP_SSL('smtp.example.com', 465)
try:
server.login('sender@example.com', 'password')
except Exception as e:
print(f'Error: {e}')
finally:
server.quit()````
now the DNS erno is there, totally normal as I display here and just used examples.
w3schools.com/python/trypython…