-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathrun_scanner.sh
More file actions
34 lines (29 loc) · 766 Bytes
/
Copy pathrun_scanner.sh
File metadata and controls
34 lines (29 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/bash
# Run scanner with proper Shodan queries
echo "CVE-2025 Scanner with Shodan Integration"
echo "========================================"
echo ""
# Generate queries
echo "Generating Shodan queries..."
python3 shodan_queries.py
echo ""
echo "Select option:"
echo "1. Run scanner with Shodan auto-query"
echo "2. Run scanner with manual IP"
echo "3. Run scanner with file"
read -p "Choice (1-3): " choice
case $choice in
1)
echo "Running scanner with Shodan..."
# Use the scanner with a specific query
python3 scanner.py -v
;;
2)
read -p "Enter IP: " ip
python3 scanner.py -t $ip --exploit
;;
3)
read -p "Enter file: " file
python3 scanner.py -f $file
;;
esac