Skip to content

Instantly share code, notes, and snippets.

@3rg1s
Created December 15, 2020 12:04
Show Gist options
  • Save 3rg1s/148ff2fbd872e918175a3af74d20fd07 to your computer and use it in GitHub Desktop.
Save 3rg1s/148ff2fbd872e918175a3af74d20fd07 to your computer and use it in GitHub Desktop.
Search inside leaked databases.
import requests
import urllib3
import sys
urllib3.disable_warnings()
payload = {'q': str(sys.argv[1]), 'size': '100', 'start': '0'}
r = requests.get('https://scylla.sh/search', params=payload, verify=False)
print(r.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment