Adds overide completions for msfvenom payloads and pacman -Ql
This commit is contained in:
parent
f2d62ffae4
commit
35cffff6f9
1 changed files with 14 additions and 0 deletions
|
@ -1,6 +1,14 @@
|
||||||
# This file will try to provide completion before the default completion system
|
# This file will try to provide completion before the default completion system
|
||||||
# This allows me to overide parts of command completion. Normally, this is so I can use fzf.
|
# This allows me to overide parts of command completion. Normally, this is so I can use fzf.
|
||||||
|
|
||||||
|
get_msfvenom_payloads(){
|
||||||
|
local cacheFile="$HOME/.msf4/store/modules_metadata.json"
|
||||||
|
sed -n '/"type": "payload"/,/"ref_name"/p' "$cacheFile" | \
|
||||||
|
grep -E '(ref_name|description)' | \
|
||||||
|
cut -d '"' -f 4 | \
|
||||||
|
sed -n 'h;n;p;g;p' | \
|
||||||
|
sed 'N;s/\n/:/; s/\\n.*$//'
|
||||||
|
}
|
||||||
overidecomplete(){
|
overidecomplete(){
|
||||||
local tokens cmd toadd ret=1 lastWord
|
local tokens cmd toadd ret=1 lastWord
|
||||||
# http://zsh.sourceforge.net/FAQ/zshfaq03.html
|
# http://zsh.sourceforge.net/FAQ/zshfaq03.html
|
||||||
|
@ -37,7 +45,13 @@ overidecomplete(){
|
||||||
-S) toadd="$($cmd -Slq | fzf -m --preview "$cmd -Si {1}" | tr '\n' ' ')"; ret=0 ;;
|
-S) toadd="$($cmd -Slq | fzf -m --preview "$cmd -Si {1}" | tr '\n' ' ')"; ret=0 ;;
|
||||||
# If I want to uninstall something, give a list of things to uninstall
|
# If I want to uninstall something, give a list of things to uninstall
|
||||||
-R*) toadd="$($cmd -Qq | fzf -m --preview "$cmd -Qi {1}" | tr '\n' ' ')"; ret=0 ;;
|
-R*) toadd="$($cmd -Qq | fzf -m --preview "$cmd -Qi {1}" | tr '\n' ' ')"; ret=0 ;;
|
||||||
|
-Ql) toadd="$($cmd -Qq | fzf -m --preview "$cmd -Qi {1}" | tr '\n' ' ')"; ret=0 ;;
|
||||||
esac ;;
|
esac ;;
|
||||||
|
msfvenom)
|
||||||
|
case "$lastWord" in
|
||||||
|
-p|--payload) toadd="$(get_msfvenom_payloads | fzf -m -d \: --with-nth=1 --preview='echo {2}' --preview-window=up:1 | cut -d ':' -f 1| tr '\n' ' ')"; ret=0 ;;
|
||||||
|
esac ;;
|
||||||
|
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue