-
-
Save imsroot/f8d4f1dfab26e3b3acdc46eadf99cfac to your computer and use it in GitHub Desktop.
Get Shodan FAVICON Hash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://twitter.com/brsn76945860/status/1171233054951501824 | |
| pip install mmh3 | |
| import mmh3 | |
| import requests | |
| response = requests.get('https://yehg.net/favicon.ico') | |
| favicon = response.content.encode('base64') | |
| hash = mmh3.hash(favicon) | |
| print hash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment