mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
9 lines
311 B
Bash
Executable file
9 lines
311 B
Bash
Executable file
#/usr/bin/env bash
|
|
|
|
# source ./extra/shutils/autocompletion.sh
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
WORDLIST=`python "$DIR/../../sqlmap.py" -hh | grep -Eo '\s\--?\w[^ =,]*' | grep -vF '..' | paste -sd "" -`
|
|
|
|
complete -W "$WORDLIST" sqlmap
|
|
complete -W "$WORDLIST" ./sqlmap.py
|