Shodan Tool: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „*python3 -m venv venv *source venv/bin/activate *pip install -U shodan *pip install -U setuptools *shodan init“)
 
Zeile 1: Zeile 1:
 +
==Installation==
 
*python3 -m venv venv
 
*python3 -m venv venv
 
*source venv/bin/activate
 
*source venv/bin/activate
 
*pip install -U shodan
 
*pip install -U shodan
 
*pip install -U setuptools
 
*pip install -U setuptools
*shodan init
+
*shodan init <API-KEY>
 +
==== Shodan-Suche und Beispiele ====
 +
 
 +
=== Informationen zum Shodan-Account ===
 +
* shodan info
 +
 
 +
=== Offene HTTP-Server suchen ===
 +
* shodan search http
 +
* shodan search http country:DE
 +
 
 +
=== Bestimmte Technologien finden ===
 +
* shodan search "Apache"
 +
* shodan search "nginx"
 +
* shodan search "Microsoft-IIS"
 +
 
 +
=== Geräte mit offenen Ports finden ===
 +
* shodan search "port:22"
 +
* shodan search "port:3389"
 +
 
 +
=== Nach bestimmten IP-Adressen oder Domains suchen ===
 +
* shodan host 8.8.8.8
 +
* shodan search net:192.168.1.0/24
 +
 
 +
=== Bestimmte Länder oder Organisationen filtern ===
 +
* shodan search "http" country:DE
 +
* shodan search "ftp" org:"Vodafone" country:DE
 +
* shodan search org:"Google"
 +
 
 +
=== Bestimmte Dienste und Sicherheitslücken suchen ===
 +
* shodan search "vuln:CVE-2014-0160"
 +
* shodan search "MongoDB" "authentication disabled"
 +
* shodan search "port:445 vuln:ms17-010"

Version vom 10. Februar 2025, 20:21 Uhr

Installation

  • python3 -m venv venv
  • source venv/bin/activate
  • pip install -U shodan
  • pip install -U setuptools
  • shodan init <API-KEY>

Shodan-Suche und Beispiele

Informationen zum Shodan-Account

  • shodan info

Offene HTTP-Server suchen

  • shodan search http
  • shodan search http country:DE

Bestimmte Technologien finden

  • shodan search "Apache"
  • shodan search "nginx"
  • shodan search "Microsoft-IIS"

Geräte mit offenen Ports finden

  • shodan search "port:22"
  • shodan search "port:3389"

Nach bestimmten IP-Adressen oder Domains suchen

  • shodan host 8.8.8.8
  • shodan search net:192.168.1.0/24

Bestimmte Länder oder Organisationen filtern

  • shodan search "http" country:DE
  • shodan search "ftp" org:"Vodafone" country:DE
  • shodan search org:"Google"

Bestimmte Dienste und Sicherheitslücken suchen

  • shodan search "vuln:CVE-2014-0160"
  • shodan search "MongoDB" "authentication disabled"
  • shodan search "port:445 vuln:ms17-010"