installation
cd /opt/
git clone https://github.com/garrettfoster13/sccmhunter.git
cd sccmhunter
virtualenv -p python3 env
source env/bin/activate
python3 -m pip install -r requirements.txt
usage note:
if you see “ValueError: unsupported hash type MD4”, enable the legacy providers in openssl.cnf.
Those are located in /etc/ssl/openssl.cnf on Ubuntu. Add the following under provider_sect
# List of providers to load
[provider_sect]
default = default_sect
legacy = legacy_sect
[default_sect]
activate = 1
[legacy_sect]
activate = 1