We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm getting the following error when I install and run on Kali linux.
`
/root/sccmhunter/lib/attacks/http.py:87: SyntaxWarning: invalid escape sequence '[' result = re.search("PolicyCategory="NAAConfig".?<![CDATA[https://([^]]+)", deflatedData, re.DOTALL + re.MULTILINE) /root/sccmhunter/lib/scripts/sccmwtf.py:191: SyntaxWarning: invalid escape sequence '[' result = re.search("PolicyCategory="NAAConfig".?<![CDATA[https://([^]]+)", decompressed, re.DOTALL + re.MULTILINE) /root/sccmhunter/lib/scripts/sccmwtf.py:294: SyntaxWarning: invalid escape sequence '[' result = re.search("PolicyCategory="NAAConfig".?<![CDATA[https://([^]]+)", deflatedData, re.DOTALL + re.MULTILINE) SCCMHunter v1.0.5 by @garrfoster
Usage: sccmhunter [OPTIONS] COMMAND [ARGS]...
╭─ Options ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ --help -h Show this message and exit. │ ╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ ╭─ Commands ─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │ admin Run administrative commands through the AdminService API. │ │ dpapi Extract SCCM secrets from DPAPI encrypted blobs, requires Local Administrator privileges. │ │ find Enumerate LDAP for SCCM assets. │ │ http Abuse client enrollment. │ │ mssql MSSQL relay abuse. │ │ show Show and/or recon table results. │ │ smb Profile and Enumerate SMB shares of discovered SCCM servers. │ ╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
The text was updated successfully, but these errors were encountered:
Looks like deprecation warnings, thanks for letting me know.
Sorry, something went wrong.
garrettfoster13
No branches or pull requests
I'm getting the following error when I install and run on Kali linux.
`
python3 sccmhunter.py -h
/root/sccmhunter/lib/attacks/http.py:87: SyntaxWarning: invalid escape sequence '['
result = re.search("PolicyCategory="NAAConfig".?<![CDATA[https://([^]]+)", deflatedData, re.DOTALL + re.MULTILINE)
/root/sccmhunter/lib/scripts/sccmwtf.py:191: SyntaxWarning: invalid escape sequence '['
result = re.search("PolicyCategory="NAAConfig".?<![CDATA[https://([^]]+)", decompressed, re.DOTALL + re.MULTILINE)
/root/sccmhunter/lib/scripts/sccmwtf.py:294: SyntaxWarning: invalid escape sequence '['
result = re.search("PolicyCategory="NAAConfig".?<![CDATA[https://([^]]+)", deflatedData, re.DOTALL + re.MULTILINE)
SCCMHunter v1.0.5 by @garrfoster
Usage: sccmhunter [OPTIONS] COMMAND [ARGS]...
╭─ Options ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ --help -h Show this message and exit. │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
╭─ Commands ─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│ admin Run administrative commands through the AdminService API. │
│ dpapi Extract SCCM secrets from DPAPI encrypted blobs, requires Local Administrator privileges. │
│ find Enumerate LDAP for SCCM assets. │
│ http Abuse client enrollment. │
│ mssql MSSQL relay abuse. │
│ show Show and/or recon table results. │
│ smb Profile and Enumerate SMB shares of discovered SCCM servers. │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
`
The text was updated successfully, but these errors were encountered: