http://5l5ozacnlowmqs6a2byimf64nbfj3uublhf2vmbma3mad6txppkw2pqd.onion/script_emailColetor.php
.-]+|\[at\]'
emails = re.findall(pattern, soup.get_text())
emails = [email.replace('[at]', '@') for email in emails if '@' in email or '[at]' in email]
emails = [email.replace('[dot]', '.') for email in emails if '.' in email or '[dot]' in email]
return emails
def cleanup_email(email):
valid_domains = ['.com', '.com.br', '.gov.br', '.br']
for domain in valid_domains:
if email.endswith(domain):
return email
# Remove qualquer coisa após os domínios válidos
...