├── .dockerignore ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── CHANGELOG ├── DEVELOPER_REFERENCE.md ├── DOCKER.md ├── Dockerfile ├── INSTALLATION.md ├── LICENSE ├── Python ├── EyeWitness.py ├── MiktoList.py ├── Recategorize.py ├── Search.py ├── ValidateDefinitions.py ├── bin │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── dataTables.bootstrap4.min.css │ ├── dataTables.bootstrap4.min.js │ ├── dismissauth.xpi │ ├── jquery-3.7.1.min.js │ ├── jquery.dataTables.min.js │ └── style.css ├── categories.txt ├── modules │ ├── __init__.py │ ├── config.py │ ├── db_manager.py │ ├── helpers.py │ ├── objects.py │ ├── platform_utils.py │ ├── reporting.py │ ├── resource_monitor.py │ ├── security_headers.py │ ├── selenium_module.py │ ├── troubleshooting.py │ └── validation.py └── signatures.txt ├── README.md ├── Security.md ├── docker-compose.yml └── setup ├── check-dependencies.sh ├── requirements.txt ├── setup.ps1 └── setup.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/CHANGELOG -------------------------------------------------------------------------------- /DEVELOPER_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/DEVELOPER_REFERENCE.md -------------------------------------------------------------------------------- /DOCKER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/DOCKER.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/INSTALLATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/EyeWitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/EyeWitness.py -------------------------------------------------------------------------------- /Python/MiktoList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/MiktoList.py -------------------------------------------------------------------------------- /Python/Recategorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/Recategorize.py -------------------------------------------------------------------------------- /Python/Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/Search.py -------------------------------------------------------------------------------- /Python/ValidateDefinitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/ValidateDefinitions.py -------------------------------------------------------------------------------- /Python/bin/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/bin/bootstrap.css -------------------------------------------------------------------------------- /Python/bin/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/bin/bootstrap.min.css -------------------------------------------------------------------------------- /Python/bin/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/bin/bootstrap.min.js -------------------------------------------------------------------------------- /Python/bin/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/bin/dataTables.bootstrap4.min.css -------------------------------------------------------------------------------- /Python/bin/dataTables.bootstrap4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/bin/dataTables.bootstrap4.min.js -------------------------------------------------------------------------------- /Python/bin/dismissauth.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/bin/dismissauth.xpi -------------------------------------------------------------------------------- /Python/bin/jquery-3.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/bin/jquery-3.7.1.min.js -------------------------------------------------------------------------------- /Python/bin/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/bin/jquery.dataTables.min.js -------------------------------------------------------------------------------- /Python/bin/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/bin/style.css -------------------------------------------------------------------------------- /Python/categories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/categories.txt -------------------------------------------------------------------------------- /Python/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/modules/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/config.py -------------------------------------------------------------------------------- /Python/modules/db_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/db_manager.py -------------------------------------------------------------------------------- /Python/modules/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/helpers.py -------------------------------------------------------------------------------- /Python/modules/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/objects.py -------------------------------------------------------------------------------- /Python/modules/platform_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/platform_utils.py -------------------------------------------------------------------------------- /Python/modules/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/reporting.py -------------------------------------------------------------------------------- /Python/modules/resource_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/resource_monitor.py -------------------------------------------------------------------------------- /Python/modules/security_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/security_headers.py -------------------------------------------------------------------------------- /Python/modules/selenium_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/selenium_module.py -------------------------------------------------------------------------------- /Python/modules/troubleshooting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/troubleshooting.py -------------------------------------------------------------------------------- /Python/modules/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/modules/validation.py -------------------------------------------------------------------------------- /Python/signatures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Python/signatures.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/README.md -------------------------------------------------------------------------------- /Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/Security.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /setup/check-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/setup/check-dependencies.sh -------------------------------------------------------------------------------- /setup/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/setup/requirements.txt -------------------------------------------------------------------------------- /setup/setup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/setup/setup.ps1 -------------------------------------------------------------------------------- /setup/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/EyeWitness/HEAD/setup/setup.sh --------------------------------------------------------------------------------