
Shodan-gestützter Schwachstellenscanner, der exponierte Geräte entdeckt und Ziele auf bekannte CVEs und Schwachstellen mittels Dork-Abfragen und IP-Listen scannt.
Valhalla findet anfällige Geräte auf shodan und kann auch eine Liste von Domains scannen, um Schwachstellen zu finden.
git clone https://github.com/gotr00t0day/valhalla.git
cd valhalla
pip3 install -r requirements.txt
chmod +x install.sh
./install.sh
,
, |\ ,__
|\ \/ `.
\ `-.:. `\
`-.__ `\=====|
/=`'/ ^_\
.' /\ .=)
.-' .'| '-(/_|
.' __( \ .'`
/_.'` `. |`
\ |
|/ "No system is safe"
____ ____ .__ .__ .__ .__
\ \ / /____ | | | |__ _____ | | | | _____
\ Y /\__ \ | | | | \\__ \ | | | | \__ \
\ / / __ \| |_| Y \/ __ \| |_| |__/ __ \_
\___/ (____ /____/___| (____ /____/____(____ /
\/ \/ \/ \/
Author: c0deninja
Version: v1.8
usage: valhalla.py [-h] [-p 8080] [-t TARGET] [-d DORK] [-f FILE] [-cve CVE_ID]
[-vuln VULNERABILITY]
options:
-h, --help show this help message and exit
-p 8080, --port 8080 port number to use
-t TARGET, --target TARGET
file to scan
-d DORK, --dork DORK Dork to scan
-f FILE, --file FILE file to scan
-cve CVE_ID, --cve_id CVE_ID
scan by cve id
-vuln, --vulnerability
scan for vulnerabilities
-ips, --ipaddresses getting ip addresses from shodan
Normaler Scan
python3 valhalla.py -t IP --port 443
IPs mit einem shodan-Dork extrahieren
python3 valhalla.py -d "SHODAN DORK HERE" -ips
Dork-Scan
python3 valhalla.py -d 'SHODAN DORK HERE' --port 80
Eine Datei mit einer CVE-ID scannen
python3 valhalla.py -f ips.txt --cve_id CVE-2022-30525
Ein Ziel mit einer CVE-ID scannen
python3 valhalla.py -t IP --port 443 --cve_id CVE-2022-30525
Dork-Scan mit einer CVE-ID
python3 valhalla.py -d 'DORK HERE' --cve_id CVE-2022-30525 --port 80
Schwachstellenscan
python3 valhalla.py -t IP --port 443 --vulnerability
Schwachstellenscan mit einem Dork
python3 valhalla.py -d 'DORK HERE' --port 443 --vulnerability