Advertisement
Stipulating

Keybase.io email 0day

Jul 14th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #!/usr/bin/env python
  2. import requests, base64, re, sys
  3. r = requests.get("https://keybase.io/" + sys.argv[1] + "/key.asc")
  4. body = r.text.split("\n\n")
  5. key = body[1].split("-----")
  6. for email in re.findall(r' <(.*?)>', str(base64.b64decode(key[0]))):
  7. print(email)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement