diff options
Diffstat (limited to 'zsh_functions.zsh')
-rw-r--r-- | zsh_functions.zsh | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/zsh_functions.zsh b/zsh_functions.zsh index 5dd56f6..e6df6e0 100644 --- a/zsh_functions.zsh +++ b/zsh_functions.zsh @@ -14,4 +14,13 @@ scan() { sudo nmap -sS -sV -sC -oN $SCANDIR/initial-scan -v $TARGET sudo nmap -sS -p- -oN $SCANDIR/allports -v0 $TARGET &disown sudo nmap -sU -oN $SCANDIR/udpports -v0 $TARGET &disown -}
\ No newline at end of file +} + +# Get latest version of linpeas and download to current directory +alias getlinpeas='curl -L https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh > linpeas.sh' + +# I use this a ton +alias webserver='python -m http.server' + +# hey why not, change this number to your preferred revshell port. +alias revshell='ncat -lvnp 9090'
\ No newline at end of file |