19 lines
438 B
Bash
Executable File
19 lines
438 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# DeadHydra Recon Scanner Wrapper
|
|
# Quick access script for penetration testing reconnaissance
|
|
#
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PYTHON="${SCRIPT_DIR}/venv/bin/python3"
|
|
SCANNER="${SCRIPT_DIR}/recon_scanner.py"
|
|
|
|
# Check if Python script exists
|
|
if [ ! -f "$SCANNER" ]; then
|
|
echo "Error: recon_scanner.py not found!"
|
|
exit 1
|
|
fi
|
|
|
|
# Run the scanner with all arguments
|
|
"$PYTHON" "$SCANNER" "$@"
|