summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Fedele <dan.fedele@gmail.com>2023-03-11 13:36:15 -0500
committerGitHub <noreply@github.com>2023-03-11 13:36:15 -0500
commit8986e5bcabccb476a9088fe925a3ba05ed517053 (patch)
tree5ceddd5cab8e2cb923e00ab070be5ac07e6d6664
parent4149814addc0747dc4e40590085ec4a626f9ae5a (diff)
parent4baaa0c2589a30c0067043d2f3837cd40364473f (diff)
Merge pull request #3 from AgroDan/dev
Added a few handy aliases
-rw-r--r--zsh_functions.zsh11
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