Skip to content

Instantly share code, notes, and snippets.

@cristianzsh
Created October 28, 2021 16:43
Show Gist options
  • Save cristianzsh/134cab62c328506688f07263b0202306 to your computer and use it in GitHub Desktop.
Save cristianzsh/134cab62c328506688f07263b0202306 to your computer and use it in GitHub Desktop.
OSINT: Script para enumerar usuários
#!/usr/bin/python3
import requests
username = input("Digite o nome de usuário: ")
websites = ["github.com", "twitter.com", "instagram.com"]
for website in websites:
url = "https://{}/{}".format(website, username)
print("[*] Testando {}".format(url))
response = requests.get(url)
if response.status_code == 200:
print("\t[!] Usuário encontrado em: {}".format(url))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment