Skip to content

Instantly share code, notes, and snippets.

View thebeanogamer's full-sized avatar
:octocat:
Doing Security And Writing Software

Daniel Milnes thebeanogamer

:octocat:
Doing Security And Writing Software
View GitHub Profile
@yehgdotnet
yehgdotnet / get-shodan-favicon-hash.py
Last active April 8, 2024 18:30
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')