gitextract_0cd_mqu1/ ├── .coveragerc ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin/ │ ├── __init__.py │ ├── tanner │ ├── tannerapi │ └── tannerweb ├── docker/ │ ├── docker-compose.yml │ ├── phpox/ │ │ └── Dockerfile │ ├── redis/ │ │ └── Dockerfile │ └── tanner/ │ ├── Dockerfile │ └── template_injection/ │ └── Dockerfile ├── docs/ │ ├── Makefile │ └── source/ │ ├── api.rst │ ├── conf.py │ ├── config.rst │ ├── db_setup.rst │ ├── dorks.rst │ ├── emulators.rst │ ├── index.rst │ ├── parameters.rst │ ├── quick-start.rst │ ├── sessions.rst │ ├── storage.rst │ └── web.rst ├── requirements.txt ├── setup.py └── tanner/ ├── __init__.py ├── api/ │ ├── __init__.py │ ├── api.py │ └── server.py ├── config.py ├── data/ │ ├── GeoLite2-City.mmdb │ ├── config.yaml │ ├── crawler_user_agents.txt │ ├── db_config.json │ └── dorks.pickle ├── dorks_manager.py ├── emulators/ │ ├── __init__.py │ ├── base.py │ ├── cmd_exec.py │ ├── crlf.py │ ├── lfi.py │ ├── mysqli.py │ ├── php_code_injection.py │ ├── php_object_injection.py │ ├── rfi.py │ ├── sqli.py │ ├── sqlite.py │ ├── template_injection.py │ ├── xss.py │ └── xxe_injection.py ├── files/ │ └── engines/ │ ├── mako.py │ └── tornado.py ├── redis_client.py ├── reporting/ │ ├── __init__.py │ ├── hpfeeds.py │ ├── log_hpfeeds.py │ ├── log_local.py │ └── log_mongodb.py ├── server.py ├── sessions/ │ ├── __init__.py │ ├── session.py │ ├── session_analyzer.py │ └── session_manager.py ├── tests/ │ ├── __init__.py │ ├── test_aiodocker_helper.py │ ├── test_api.py │ ├── test_api_server.py │ ├── test_base.py │ ├── test_cmd_exec_emulation.py │ ├── test_config.py │ ├── test_crlf.py │ ├── test_dorks_manager.py │ ├── test_lfi_emulator.py │ ├── test_mysql_db_helper.py │ ├── test_mysqli.py │ ├── test_php_code_injection.py │ ├── test_php_object_injection.py │ ├── test_rfi_emulation.py │ ├── test_server.py │ ├── test_session_analyzer.py │ ├── test_session_manager.py │ ├── test_sqli.py │ ├── test_sqlite.py │ ├── test_sqlite_db_helper.py │ ├── test_template_injection.py │ ├── test_web_server.py │ ├── test_xss_emulator.py │ └── test_xxe_injection.py ├── utils/ │ ├── __init__.py │ ├── aiodocker_helper.py │ ├── api_key_generator.py │ ├── asyncmock.py │ ├── base_db_helper.py │ ├── logger.py │ ├── mysql_db_helper.py │ ├── patterns.py │ ├── php_sandbox_helper.py │ └── sqlite_db_helper.py └── web/ ├── __init__.py ├── server.py ├── static/ │ ├── css/ │ │ └── styles.css │ └── js/ │ └── site.js └── templates/ ├── base.html ├── index.html ├── session.html ├── sessions.html ├── snare-stats.html ├── snare.html └── snares.html