Changes: - Added 80+ scripts with organized structure - payloads/ for third-party pentesting tools - pentesting/ for custom security scripts - Daily drivers remain flat for fast access - Converted wes() function to proper script - Removed .sh extensions from pentesting scripts - Cleaned up aliases (removed 31 redundant lines) - Added kanata/, build artifacts to gitignore - Removed old fre.sh scripts and empty a.out - Updated configs: helix, tmux, zsh, ulauncher, redshift Security: All sensitive data excluded via gitignore
14 lines
419 B
Bash
Executable file
14 lines
419 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Wrapper for commix (command injection testing tool)
|
|
# Routes to the correct commix installation
|
|
|
|
COMMIX_PATH="/home/e/commix/commix.py"
|
|
|
|
if [[ ! -f "$COMMIX_PATH" ]]; then
|
|
echo "Error: commix not found at $COMMIX_PATH" >&2
|
|
echo "Install with: git clone https://github.com/commixproject/commix.git /home/e/commix" >&2
|
|
exit 1
|
|
fi
|
|
|
|
# Execute commix with python3
|
|
exec python3 "$COMMIX_PATH" "$@"
|