Simple python script to generate google dorks to gather employees' emails
email_domain = input("Email domain : ") print(f"""The domain of the email is {email_domain} Google dorks for gathering emails : """) def google_dorks(domain): dorks = f""" filetype:pdf "{domain}" filetype:xls "{domain}" filetype:docx "{domain}" intitle:"index of" "{domain}" """ return dorks result = google_dorks(email_domain) print(result)
Last updated 4 months ago
Was this helpful?