├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── ChangeLog.md ├── Data └── DATA.json ├── LICENSE ├── README.md ├── Setup.py ├── Testing ├── ColorPrinter.py └── gg.py ├── Uninstall.py ├── WordLists ├── Names.txt └── darkc0de.lst ├── codex.py └── utils ├── Binaries └── cap2hccapx.bin ├── CeWL ├── Gemfile ├── Gemfile.lock ├── README ├── cewl.rb ├── cewl_lib.rb └── fab.rb ├── ExtraVariables.py ├── IMG ├── main.png ├── main1.png ├── net.png └── net1.png ├── __pycache__ ├── ExtraVariables.cpython-36.pyc └── colors.cpython-36.pyc └── colors.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/ChangeLog.md -------------------------------------------------------------------------------- /Data/DATA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/Data/DATA.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/README.md -------------------------------------------------------------------------------- /Setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/Setup.py -------------------------------------------------------------------------------- /Testing/ColorPrinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/Testing/ColorPrinter.py -------------------------------------------------------------------------------- /Testing/gg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/Testing/gg.py -------------------------------------------------------------------------------- /Uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/Uninstall.py -------------------------------------------------------------------------------- /WordLists/Names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/WordLists/Names.txt -------------------------------------------------------------------------------- /WordLists/darkc0de.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/WordLists/darkc0de.lst -------------------------------------------------------------------------------- /codex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/codex.py -------------------------------------------------------------------------------- /utils/Binaries/cap2hccapx.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/Binaries/cap2hccapx.bin -------------------------------------------------------------------------------- /utils/CeWL/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/CeWL/Gemfile -------------------------------------------------------------------------------- /utils/CeWL/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/CeWL/Gemfile.lock -------------------------------------------------------------------------------- /utils/CeWL/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/CeWL/README -------------------------------------------------------------------------------- /utils/CeWL/cewl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/CeWL/cewl.rb -------------------------------------------------------------------------------- /utils/CeWL/cewl_lib.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/CeWL/cewl_lib.rb -------------------------------------------------------------------------------- /utils/CeWL/fab.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/CeWL/fab.rb -------------------------------------------------------------------------------- /utils/ExtraVariables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/ExtraVariables.py -------------------------------------------------------------------------------- /utils/IMG/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/IMG/main.png -------------------------------------------------------------------------------- /utils/IMG/main1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/IMG/main1.png -------------------------------------------------------------------------------- /utils/IMG/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/IMG/net.png -------------------------------------------------------------------------------- /utils/IMG/net1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/IMG/net1.png -------------------------------------------------------------------------------- /utils/__pycache__/ExtraVariables.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/__pycache__/ExtraVariables.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/colors.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/__pycache__/colors.cpython-36.pyc -------------------------------------------------------------------------------- /utils/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DEADSEC-SECURITY/CODEX/HEAD/utils/colors.py --------------------------------------------------------------------------------