├── .gitignore ├── LICENSE ├── NTLMRawUnHide.py ├── README.md └── examples ├── PktMon.cap ├── README.md ├── capture.cap ├── capture.etl ├── capture.pcap └── capture.pcapng /.gitignore: -------------------------------------------------------------------------------- 1 | temp/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlgualtieri/NTLMRawUnHide/HEAD/LICENSE -------------------------------------------------------------------------------- /NTLMRawUnHide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlgualtieri/NTLMRawUnHide/HEAD/NTLMRawUnHide.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlgualtieri/NTLMRawUnHide/HEAD/README.md -------------------------------------------------------------------------------- /examples/PktMon.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlgualtieri/NTLMRawUnHide/HEAD/examples/PktMon.cap -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlgualtieri/NTLMRawUnHide/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/capture.cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlgualtieri/NTLMRawUnHide/HEAD/examples/capture.cap -------------------------------------------------------------------------------- /examples/capture.etl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlgualtieri/NTLMRawUnHide/HEAD/examples/capture.etl -------------------------------------------------------------------------------- /examples/capture.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlgualtieri/NTLMRawUnHide/HEAD/examples/capture.pcap -------------------------------------------------------------------------------- /examples/capture.pcapng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlgualtieri/NTLMRawUnHide/HEAD/examples/capture.pcapng --------------------------------------------------------------------------------