Funciones • Claves • Instalar • Uso • Palabras clave • Unirse a Discord
Escaneo pasivo
Escaneo normal/agresivo
Asegúrate de tener GoLang instalado, sin él no podrás instalar núcleos.
git clone https://github.com/gotr00t0day/Gsec.git
cd Gsec
pip3 install -r requirements.txt
# Make sure that nuclei-templates is cloned in the / directory. Gsec fetches the templates from ~/nuclei-templates
python3 install.py
Gsec will fetch the shodan API key from the core directory, the passive recon script supports scanning with shodan,
please save your shodan key in core/.shodan for the scan to be able to work.
Some outputs that are too large will be saved in a file in the output folder / directory.
# normal (passive and aggresive scans)
python3 gsec.py -t https://domain.com
# Passive Recon
python3 gsec.py -t https://domain.com --passive_recon
# Ultimate Scan (Scan for High and Severe CVEs and Vulnerabilities with nuclei)
python3 gsec.py --ultimatescan https://target.com
Puedes usar Proxychains con tor para mantener el anonimato.
proxychains -q python3 gsec.py -t https://target.com
Si Gsec encuentra una vulnerabilidad y tiene el ¡POSIBLE! palabra clave en el resultado que significa que podría ser un falso positivo y es necesario probar manualmente la vulnerabilidad para asegurarse de que realmente sea vulnerable.
Estoy trabajando para agregar soporte de proxy para Gsec; se agregará en versiones futuras.
En python3.10+, es posible que obtenga un error de SSL al ejecutar Gsec. Para solucionar este problema, simplemente pip3 install ceritifi
y luego haga /Applications/Python 3.10/Install Certificates.command
y el problema se solucionará.