Upload files to "/"

This commit is contained in:
2026-07-19 06:01:00 +00:00
parent aa9eb3e7f6
commit 587f14697e
6 changed files with 2537 additions and 2 deletions
+34
View File
@@ -0,0 +1,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