├── .gitignore ├── LICENSE ├── LdapNightmare.py ├── Readme.md ├── demo.mp4 ├── exploit_server.py ├── logger.py ├── requirements.txt └── rpc_call.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CVE-2024-49113/HEAD/LICENSE -------------------------------------------------------------------------------- /LdapNightmare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CVE-2024-49113/HEAD/LdapNightmare.py -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CVE-2024-49113/HEAD/Readme.md -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CVE-2024-49113/HEAD/demo.mp4 -------------------------------------------------------------------------------- /exploit_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CVE-2024-49113/HEAD/exploit_server.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CVE-2024-49113/HEAD/logger.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ldaptor 2 | impacket -------------------------------------------------------------------------------- /rpc_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeBreach-Labs/CVE-2024-49113/HEAD/rpc_call.py --------------------------------------------------------------------------------