├── .gitignore ├── .travis.yml ├── .whitesource ├── CHANGELOG.md ├── Dockerfile ├── LICENSE.md ├── MANIFEST.in ├── README.md ├── core ├── __init__.py ├── colors.py ├── config.py ├── flash.py ├── mirror.py ├── prompt.py ├── regex.py ├── requester.py ├── updater.py ├── user-agents.txt ├── utils.py └── zap.py ├── photon.py ├── plugins ├── __init__.py ├── dnsdumpster.py ├── exporter.py ├── find_subdomains.py └── wayback.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/.travis.yml -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/.whitesource -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/README.md -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | """The Photon core.""" 2 | -------------------------------------------------------------------------------- /core/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/colors.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/config.py -------------------------------------------------------------------------------- /core/flash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/flash.py -------------------------------------------------------------------------------- /core/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/mirror.py -------------------------------------------------------------------------------- /core/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/prompt.py -------------------------------------------------------------------------------- /core/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/regex.py -------------------------------------------------------------------------------- /core/requester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/requester.py -------------------------------------------------------------------------------- /core/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/updater.py -------------------------------------------------------------------------------- /core/user-agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/user-agents.txt -------------------------------------------------------------------------------- /core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/utils.py -------------------------------------------------------------------------------- /core/zap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/core/zap.py -------------------------------------------------------------------------------- /photon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/photon.py -------------------------------------------------------------------------------- /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | """Plugins for Photon.""" 2 | -------------------------------------------------------------------------------- /plugins/dnsdumpster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/plugins/dnsdumpster.py -------------------------------------------------------------------------------- /plugins/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/plugins/exporter.py -------------------------------------------------------------------------------- /plugins/find_subdomains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/plugins/find_subdomains.py -------------------------------------------------------------------------------- /plugins/wayback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/plugins/wayback.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s0md3v/Photon/HEAD/requirements.txt --------------------------------------------------------------------------------