refactor: remove splash screen and simplify setup scripts

This commit is contained in:
GH05TCREW
2025-12-11 20:25:01 -07:00
parent 8fb4ab6983
commit a404ca66fe
4 changed files with 54 additions and 150 deletions

View File

@@ -16,7 +16,6 @@ fi
# Parse arguments
MODE="cli"
TARGET=""
VPN_CONFIG=""
while [[ $# -gt 0 ]]; do
case $1 in
@@ -28,10 +27,6 @@ while [[ $# -gt 0 ]]; do
TARGET="$2"
shift 2
;;
--vpn)
VPN_CONFIG="$2"
shift 2
;;
--help)
echo "GhostCrew - AI Penetration Testing"
echo ""
@@ -40,7 +35,6 @@ while [[ $# -gt 0 ]]; do
echo "Options:"
echo " --tui Run in TUI mode"
echo " --target <url> Set initial target"
echo " --vpn <config> Connect to VPN before starting"
echo " --help Show this help message"
exit 0
;;
@@ -51,13 +45,6 @@ while [[ $# -gt 0 ]]; do
esac
done
# Connect to VPN if specified
if [ -n "$VPN_CONFIG" ]; then
echo "Connecting to VPN..."
sudo openvpn --config "$VPN_CONFIG" --daemon
sleep 5
fi
# Build command
CMD="python -m ghostcrew"