├── .gitignore ├── LICENSE ├── README.md ├── addspn.py ├── dnstool.py ├── krbrelayx.py ├── lib ├── __init__.py ├── clients │ ├── __init__.py │ ├── httprelayclient.py │ ├── ldaprelayclient.py │ └── smbrelayclient.py ├── servers │ ├── __init__.py │ ├── dnsrelayserver.py │ ├── httprelayserver.py │ └── smbrelayserver.py └── utils │ ├── __init__.py │ ├── config.py │ ├── kerberos.py │ ├── krbcredccache.py │ └── spnego.py └── printerbug.py /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | venv/ 3 | *.egg-info 4 | dist/ 5 | *.pyc 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/README.md -------------------------------------------------------------------------------- /addspn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/addspn.py -------------------------------------------------------------------------------- /dnstool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/dnstool.py -------------------------------------------------------------------------------- /krbrelayx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/krbrelayx.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /lib/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/clients/__init__.py -------------------------------------------------------------------------------- /lib/clients/httprelayclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/clients/httprelayclient.py -------------------------------------------------------------------------------- /lib/clients/ldaprelayclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/clients/ldaprelayclient.py -------------------------------------------------------------------------------- /lib/clients/smbrelayclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/clients/smbrelayclient.py -------------------------------------------------------------------------------- /lib/servers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/servers/__init__.py -------------------------------------------------------------------------------- /lib/servers/dnsrelayserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/servers/dnsrelayserver.py -------------------------------------------------------------------------------- /lib/servers/httprelayserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/servers/httprelayserver.py -------------------------------------------------------------------------------- /lib/servers/smbrelayserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/servers/smbrelayserver.py -------------------------------------------------------------------------------- /lib/utils/__init__.py: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /lib/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/utils/config.py -------------------------------------------------------------------------------- /lib/utils/kerberos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/utils/kerberos.py -------------------------------------------------------------------------------- /lib/utils/krbcredccache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/utils/krbcredccache.py -------------------------------------------------------------------------------- /lib/utils/spnego.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/lib/utils/spnego.py -------------------------------------------------------------------------------- /printerbug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dirkjanm/krbrelayx/HEAD/printerbug.py --------------------------------------------------------------------------------