> For the complete documentation index, see [llms.txt](https://davidtancredi.gitbook.io/pentesting-notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://davidtancredi.gitbook.io/pentesting-notes/r3dcl1ff/osint/favicon-osint.md).

# Favicon OSINT

Favicon recon for Bug Bounties and Pentests

```
#Tools FavFreak , extract facicons from a list of target URLs

git clone https://github.com/devanshbatham/FavFreak.git 
cat http.txt | python3 favfreak.py

---
Murmurhash , similar tool with single url functionality

git clone https://github.com/Viralmaniar/MurMurHash.git
cd MurMurHash
pip install -r requirements.txt
python MurMurHash.py

---

Manual

curl -s -L -k https://test.favicon.ico | python3 -c 'import mmh3,sys,codecs;print(mmh3.hash(codecs.encode(sys.stdin.buffer.read(),"base64")))'

---

Use Fofa for quick check then feed to Shodan --> http.html_hash:12345678
```
