gitextract__c4fxlzo/ ├── .gitignore ├── Banners.py ├── Extras/ │ ├── kali-anonsurf/ │ │ ├── .github/ │ │ │ └── workflows/ │ │ │ ├── build_package.yml │ │ │ └── test_install.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── installer.sh │ │ └── kali-anonsurf-deb-src/ │ │ ├── DEBIAN/ │ │ │ ├── control │ │ │ ├── postinst │ │ │ └── postrm │ │ ├── etc/ │ │ │ ├── init/ │ │ │ │ └── pandora.conf │ │ │ ├── init.d/ │ │ │ │ ├── anonsurf │ │ │ │ └── pandora │ │ │ ├── systemd/ │ │ │ │ └── system/ │ │ │ │ └── pandora.service │ │ │ └── tor/ │ │ │ ├── onion.pac │ │ │ └── torrc.anon │ │ └── usr/ │ │ └── bin/ │ │ ├── anonsurf │ │ └── pandora │ └── sherlock/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── docker-compose.yml │ ├── removed_sites.json │ ├── removed_sites.md │ ├── requirements.txt │ ├── sherlock/ │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── notify.py │ │ ├── resources/ │ │ │ └── data.json │ │ ├── result.py │ │ ├── sherlock.py │ │ ├── sites.py │ │ └── tests/ │ │ ├── __init__.py │ │ ├── all.py │ │ ├── base.py │ │ └── test_multiple_usernames.py │ ├── site_list.py │ └── sites.md ├── README.md ├── hive.py ├── install.sh ├── output/ │ ├── intelx/ │ │ └── test │ ├── sherlock/ │ │ └── test │ └── shodan/ │ └── test └── requirements.txt