Adds fzf completion to hashcat hash modes in completion script
This commit is contained in:
parent
c4c6611ef1
commit
0b0df7c966
1 changed files with 7 additions and 1 deletions
|
@ -23,7 +23,13 @@ _args(){
|
|||
}
|
||||
|
||||
_hashes(){
|
||||
if $(type fzf > /dev/null); then
|
||||
# If fzf if available, use it for hash completion
|
||||
|
||||
hashcat --example-hashes | awk -v RS="\n\n" -F "\t" '{gsub("\n","\t",$0); print $1 "\t" $2 "\t" $3}' | sed 's/MODE: //; s/TYPE: //' | fzf -d "\t" --header="Mode Type" --with-nth='1,2' --preview='echo {3}' --preview-window=up:1 | cut -d' ' -f1
|
||||
else
|
||||
hashcat --example-hashes | awk -v RS="\n\n" -F "\t" '{gsub("\n","\t",$0); print $1 ":" $2 }' | sed 's/MODE: //; s/TYPE: //'
|
||||
fi
|
||||
}
|
||||
|
||||
_basic_section(){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue