├── .coveragerc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── ossar-analysis.yml │ └── python-app.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── SECURITY.md ├── activeDirectoryEnum.py ├── ade ├── __init__.py ├── __main__.py ├── connectors │ ├── __init__.py │ └── connectors.py ├── cve_2020_1472 │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ └── zerologon_tester.py ├── exploits │ ├── __init__.py │ └── exploits.py └── modEnumerator │ ├── __init__.py │ └── modEnumerator.py ├── external ├── LICENSE └── bloodhound │ ├── __init__.py │ ├── __main__.py │ ├── ad │ ├── __init__.py │ ├── authentication.py │ ├── computer.py │ ├── domain.py │ ├── structures.py │ ├── trusts.py │ └── utils.py │ ├── enumeration │ ├── __init__.py │ ├── acls.py │ ├── computers.py │ ├── domains.py │ ├── memberships.py │ ├── objectresolver.py │ └── outputworker.py │ └── lib │ ├── __init__.py │ └── cstruct.py ├── lgtm.yml ├── requirements.txt ├── setup.py └── test ├── broken_test_ade_args.py ├── test_ade.py └── test_imports.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/ossar-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/.github/workflows/ossar-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/SECURITY.md -------------------------------------------------------------------------------- /activeDirectoryEnum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/activeDirectoryEnum.py -------------------------------------------------------------------------------- /ade/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/ade/__init__.py -------------------------------------------------------------------------------- /ade/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/ade/__main__.py -------------------------------------------------------------------------------- /ade/connectors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ade/connectors/connectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/ade/connectors/connectors.py -------------------------------------------------------------------------------- /ade/cve_2020_1472/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/ade/cve_2020_1472/LICENSE -------------------------------------------------------------------------------- /ade/cve_2020_1472/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/ade/cve_2020_1472/README.md -------------------------------------------------------------------------------- /ade/cve_2020_1472/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/ade/cve_2020_1472/__init__.py -------------------------------------------------------------------------------- /ade/cve_2020_1472/zerologon_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/ade/cve_2020_1472/zerologon_tester.py -------------------------------------------------------------------------------- /ade/exploits/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ade/exploits/exploits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/ade/exploits/exploits.py -------------------------------------------------------------------------------- /ade/modEnumerator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ade/modEnumerator/modEnumerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/ade/modEnumerator/modEnumerator.py -------------------------------------------------------------------------------- /external/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/LICENSE -------------------------------------------------------------------------------- /external/bloodhound/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/__init__.py -------------------------------------------------------------------------------- /external/bloodhound/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/__main__.py -------------------------------------------------------------------------------- /external/bloodhound/ad/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/ad/__init__.py -------------------------------------------------------------------------------- /external/bloodhound/ad/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/ad/authentication.py -------------------------------------------------------------------------------- /external/bloodhound/ad/computer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/ad/computer.py -------------------------------------------------------------------------------- /external/bloodhound/ad/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/ad/domain.py -------------------------------------------------------------------------------- /external/bloodhound/ad/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/ad/structures.py -------------------------------------------------------------------------------- /external/bloodhound/ad/trusts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/ad/trusts.py -------------------------------------------------------------------------------- /external/bloodhound/ad/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/ad/utils.py -------------------------------------------------------------------------------- /external/bloodhound/enumeration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/bloodhound/enumeration/acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/enumeration/acls.py -------------------------------------------------------------------------------- /external/bloodhound/enumeration/computers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/enumeration/computers.py -------------------------------------------------------------------------------- /external/bloodhound/enumeration/domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/enumeration/domains.py -------------------------------------------------------------------------------- /external/bloodhound/enumeration/memberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/enumeration/memberships.py -------------------------------------------------------------------------------- /external/bloodhound/enumeration/objectresolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/enumeration/objectresolver.py -------------------------------------------------------------------------------- /external/bloodhound/enumeration/outputworker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/enumeration/outputworker.py -------------------------------------------------------------------------------- /external/bloodhound/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/lib/__init__.py -------------------------------------------------------------------------------- /external/bloodhound/lib/cstruct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/external/bloodhound/lib/cstruct.py -------------------------------------------------------------------------------- /lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/lgtm.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/setup.py -------------------------------------------------------------------------------- /test/broken_test_ade_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/test/broken_test_ade_args.py -------------------------------------------------------------------------------- /test/test_ade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/test/test_ade.py -------------------------------------------------------------------------------- /test/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CasperGN/ActiveDirectoryEnumeration/HEAD/test/test_imports.py --------------------------------------------------------------------------------