37 lines
1.6 KiB
Bash
Executable File
37 lines
1.6 KiB
Bash
Executable File
# Attack Box Configuration
|
|
# ========================
|
|
|
|
# Attack Box Setup Information
|
|
ATTACK_BOX_VERSION="1.0.0"
|
|
WORKSPACE_DIR="/root/dmealey"
|
|
SCRIPTS_DIR="/root/dmealey/tools/scripts"
|
|
TOOLS_DIR="/root/dmealey/tools"
|
|
|
|
# Available Commands
|
|
echo "Attack Box Commands:"
|
|
echo "==================="
|
|
echo "recon <target> - Run reconnaissance automation"
|
|
echo "portscan <target> - Run port scan automation"
|
|
echo "webenum <target> - Run web enumeration automation"
|
|
echo "attack-menu - Launch manual testing menu"
|
|
echo "dmealey - Change to main directory"
|
|
echo "mkdmealey <name> - Create new engagement structure"
|
|
echo ""
|
|
echo "Workspace Structure:"
|
|
echo "==================="
|
|
echo "~/dmealey/tools/ - All security tools and scripts"
|
|
echo "~/dmealey/scans/ - All scan results organized by type"
|
|
echo "~/dmealey/loot/ - Extracted data and credentials"
|
|
echo "~/dmealey/targets/ - Target lists and reconnaissance"
|
|
echo "~/dmealey/notes/ - Manual notes and observations"
|
|
echo "~/dmealey/reports/ - Documentation and reporting"
|
|
echo "~/dmealey/exploits/ - Working exploits and POCs"
|
|
echo "~/dmealey/payloads/ - Custom payloads and shells"
|
|
echo "~/dmealey/wordlists/ - Custom and downloaded wordlists"
|
|
echo "~/dmealey/pcaps/ - Network captures and analysis"
|
|
echo ""
|
|
echo "Trashpanda-style Directory Structure:"
|
|
echo "====================================="
|
|
echo "The dmealey directory follows the exact structure as TrashPanda tool"
|
|
echo "with organized subdirectories for different scan types and data."
|