Skip to content

Commit

Permalink
ntlmutil: don't call out ecp
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnfoo authored Feb 28, 2022
1 parent 451835b commit 66ff853
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/ntlmrecon/ntlmutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,6 @@ def detect_ntlm_auth(url):
if 'WWW-Authenticate' in response_headers.keys():
if 'NTLM' in response_headers['WWW-Authenticate']:
print(colored("[+] {} has NTLM authentication enabled!".format(url), 'green'))
if '/ecp/' in url.lower():
print(colored(" [!] /ecp/ endpoint might be vulnerable to CVE-2020-0688."
" Try running https://github.com/Ridter/cve-2020-0688", "red"))
return True
else:
print(colored("[+] {} requires authentication but the method was found to be {}".format(
Expand Down

0 comments on commit 66ff853

Please sign in to comment.