Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nyxgeek/ntlmscan
scan for NTLM directories
https://github.com/nyxgeek/ntlmscan
hacking ntlm ntlm-authentication pentest scanner windows
Last synced: 21 days ago
JSON representation
scan for NTLM directories
- Host: GitHub
- URL: https://github.com/nyxgeek/ntlmscan
- Owner: nyxgeek
- Created: 2019-10-23T06:02:56.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-27T11:10:32.000Z (6 months ago)
- Last Synced: 2024-08-05T17:37:38.862Z (4 months ago)
- Topics: hacking, ntlm, ntlm-authentication, pentest, scanner, windows
- Language: Python
- Size: 30.3 KB
- Stars: 344
- Watchers: 12
- Forks: 57
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - nyxgeek/ntlmscan - scan for NTLM directories (Python)
README
# ntlmscan
scan for NTLM directoriesreliable targets are:
* OWA servers
* Skype for Business/Lync servers
* Autodiscover servers (autodiscover.domain.com and lyncdiscover.domain.com)
* ADFS serversonce identified, use nmap and the [http-ntlm-info](https://nmap.org/nsedoc/scripts/http-ntlm-info.html) script to extract internal domain/server information
```
usage: ntlmscan.py [-h] [--url URL] [--host HOST] [--hostfile HOSTFILE]
[--outfile OUTFILE] [--dictionary DICTIONARY]optional arguments:
-h, --help show this help message and exit
--url URL full url path to test
--host HOST a single host to search for ntlm dirs on
--hostfile HOSTFILE file containing ips or hostnames to test
--outfile OUTFILE file to write results to
--dictionary DICTIONARY list of paths to test, default: paths.dict
--nmap run nmap with http-ntlm-info after testing (requires nmap)
--debug show request headers
```
Examples:
```
python3 ntlmscan.py --url https://autodiscover.domain.com/autodiscover
python3 ntlmscan.py --host autodiscover.domain.com
python3 ntlmscan.py --hostfile hosts.txt --dictionary big.txt
```![Screenshot of usage](http://nyxgeek.com/ntlmscan.py_use3.png)