├── .gitignore ├── README.md ├── comm ├── __init__.py ├── execute │ ├── __init__.py │ └── smbexec.py ├── logger.py ├── ntlmrelayx │ ├── __init__.py │ ├── attacks │ │ ├── __init__.py │ │ ├── httpattack.py │ │ ├── ldapattack.py │ │ └── shadowCredential.py │ ├── servers │ │ ├── __init__.py │ │ └── smbrelayserver.py │ └── utils │ │ ├── __init__.py │ │ └── config.py ├── ticket │ ├── __init__.py │ ├── getST.py │ └── gettgtpkinit.py └── trigger │ ├── __init__.py │ ├── efs.py │ └── printer.py ├── config.py ├── relayx.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/README.md -------------------------------------------------------------------------------- /comm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comm/execute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comm/execute/smbexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/execute/smbexec.py -------------------------------------------------------------------------------- /comm/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/logger.py -------------------------------------------------------------------------------- /comm/ntlmrelayx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ntlmrelayx/__init__.py -------------------------------------------------------------------------------- /comm/ntlmrelayx/attacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ntlmrelayx/attacks/__init__.py -------------------------------------------------------------------------------- /comm/ntlmrelayx/attacks/httpattack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ntlmrelayx/attacks/httpattack.py -------------------------------------------------------------------------------- /comm/ntlmrelayx/attacks/ldapattack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ntlmrelayx/attacks/ldapattack.py -------------------------------------------------------------------------------- /comm/ntlmrelayx/attacks/shadowCredential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ntlmrelayx/attacks/shadowCredential.py -------------------------------------------------------------------------------- /comm/ntlmrelayx/servers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ntlmrelayx/servers/__init__.py -------------------------------------------------------------------------------- /comm/ntlmrelayx/servers/smbrelayserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ntlmrelayx/servers/smbrelayserver.py -------------------------------------------------------------------------------- /comm/ntlmrelayx/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ntlmrelayx/utils/__init__.py -------------------------------------------------------------------------------- /comm/ntlmrelayx/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ntlmrelayx/utils/config.py -------------------------------------------------------------------------------- /comm/ticket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comm/ticket/getST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ticket/getST.py -------------------------------------------------------------------------------- /comm/ticket/gettgtpkinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/ticket/gettgtpkinit.py -------------------------------------------------------------------------------- /comm/trigger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comm/trigger/efs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/trigger/efs.py -------------------------------------------------------------------------------- /comm/trigger/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/comm/trigger/printer.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/config.py -------------------------------------------------------------------------------- /relayx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/relayx.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/RelayX/HEAD/requirements.txt --------------------------------------------------------------------------------