Skip to content

Instantly share code, notes, and snippets.

View ZigMud's full-sized avatar
💭
I may be slow to respond.

ZigMud ZigMud

💭
I may be slow to respond.
View GitHub Profile
@ZigMud
ZigMud / get-shodan-favicon-hash.py
Created September 17, 2021 04:00 — forked from yehgdotnet/get-shodan-favicon-hash.py
Get Shodan FAVICON Hash
# https://twitter.com/brsn76945860/status/1171233054951501824
pip install mmh3
-----------------------------
# python 2
import mmh3
import requests
response = requests.get('https://cybersecurity.wtf/favicon.ico')
favicon = response.content.encode('base64')