Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
Tools/GitHubGitHub/gotr00t0day/valhalla
AufklärungSchwachstellenscannerExploitationInformationsbeschaffung
GitHubgotr00t0day/valhalla

valhalla

Shodan-gestützter Schwachstellenscanner, der exponierte Geräte entdeckt und Ziele auf bekannte CVEs und Schwachstellen mittels Dork-Abfragen und IP-Listen scannt.

Repository anzeigen
10118vor 2 JahrenVon Kitploit geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen
valhalla — Shodan-gestützter Schwachstellenscanner, der exponierte Geräte entdeckt und Ziele auf bekannte CVEs und Schwachstellen mittels Dork-Abfragen und IP-Listen scannt. | Kitploit

valhalla

Valhalla findet anfällige Geräte auf shodan und kann auch eine Liste von Domains scannen, um Schwachstellen zu finden.

INSTALLATION

git clone https://github.com/gotr00t0day/valhalla.git

cd valhalla

pip3 install -r requirements.txt

chmod +x install.sh
./install.sh

VERWENDUNG

root@kitploit:~
            ,
       ,   |\ ,__
       |\   \/   `.
       \ `-.:.     `\
        `-.__ `\=====|
           /=`'/   ^_\
         .'   /\   .=)
      .-'  .'|  '-(/_|
    .'  __(  \  .'`
   /_.'`  `.  |`
            \ |
             |/  "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

BEISPIEL

Normaler Scan

root@kitploit:~
python3 valhalla.py -t IP --port 443

IPs mit einem shodan-Dork extrahieren

root@kitploit:~
python3 valhalla.py -d "SHODAN DORK HERE" -ips

Dork-Scan

root@kitploit:~
python3 valhalla.py -d 'SHODAN DORK HERE' --port 80

Eine Datei mit einer CVE-ID scannen

root@kitploit:~
python3 valhalla.py -f ips.txt --cve_id CVE-2022-30525

Ein Ziel mit einer CVE-ID scannen

root@kitploit:~
python3 valhalla.py -t IP --port 443 --cve_id CVE-2022-30525

Dork-Scan mit einer CVE-ID

root@kitploit:~
python3 valhalla.py -d 'DORK HERE' --cve_id CVE-2022-30525 --port 80

Schwachstellenscan

root@kitploit:~
python3 valhalla.py -t IP --port 443 --vulnerability

Schwachstellenscan mit einem Dork

root@kitploit:~
python3 valhalla.py -d 'DORK HERE' --port 443 --vulnerability
Tool herunterladen