Revert all UA tagging changes — full rollback to pre-592 state
This commit is contained in:
Regular → Executable
+2
-3
@@ -11,8 +11,7 @@ if [ $# -eq 0 ]; then
|
||||
fi
|
||||
|
||||
TARGET="$1"
|
||||
BASE_DIR="${WORK_DIR:-${WORK_DIR:-/root/workspace}}"
|
||||
WORKSPACE="$BASE_DIR/scans/reachability/$TARGET"
|
||||
WORKSPACE="/root/dmealey/scans/reachability/$TARGET"
|
||||
DATE=$(date +%Y%m%d_%H%M%S)
|
||||
|
||||
# Colors for output
|
||||
@@ -79,7 +78,7 @@ done < live_subdomains.txt
|
||||
|
||||
# Vulnerability scanning with Nuclei
|
||||
echo -e "${GREEN}[+] Phase 7: Vulnerability Scanning${NC}"
|
||||
log_and_run "Running Nuclei" "nuclei -l live_subdomains.txt -H 'User-Agent: ${NUCLEI_UA:-homelab-security-scan/nuclei}' -t ~/nuclei-templates/ -o nuclei_results.txt"
|
||||
log_and_run "Running Nuclei" "nuclei -l live_subdomains.txt -t ~/nuclei-templates/ -o nuclei_results.txt"
|
||||
|
||||
# Summary
|
||||
echo -e "${GREEN}[+] Reconnaissance Complete!${NC}"
|
||||
|
||||
Regular → Executable
+2
-3
@@ -14,8 +14,7 @@ fi
|
||||
TARGET_URL="$1"
|
||||
# Extract domain/IP for workspace naming
|
||||
TARGET_CLEAN=$(echo "$TARGET_URL" | sed 's|https\?://||g' | sed 's|/.*||g' | tr ':' '_')
|
||||
BASE_DIR="${WORK_DIR:-${WORK_DIR:-/root/workspace}}"
|
||||
WORKSPACE="$BASE_DIR/scans/web/$TARGET_CLEAN"
|
||||
WORKSPACE="/root/dmealey/scans/web/$TARGET_CLEAN"
|
||||
DATE=$(date +%Y%m%d_%H%M%S)
|
||||
|
||||
# Colors for output
|
||||
@@ -91,7 +90,7 @@ log_and_run "Nikto scan" "nikto -h $TARGET_URL -o nikto_results.txt"
|
||||
|
||||
# Nuclei web templates
|
||||
if command -v nuclei &> /dev/null; then
|
||||
log_and_run "Nuclei web vulnerability scan" "nuclei -u $TARGET_URL -H 'User-Agent: ${NUCLEI_UA:-homelab-security-scan/nuclei}' -t ~/nuclei-templates/http/ -o nuclei_web_results.txt"
|
||||
log_and_run "Nuclei web vulnerability scan" "nuclei -u $TARGET_URL -t ~/nuclei-templates/http/ -o nuclei_web_results.txt"
|
||||
fi
|
||||
|
||||
# SSL/TLS testing (for HTTPS)
|
||||
|
||||
Reference in New Issue
Block a user