summaryrefslogtreecommitdiff
path: root/zsh_functions.zsh
diff options
context:
space:
mode:
authorDan Fedele <dan.fedele@gmail.com>2023-06-12 16:48:51 -0400
committerDan Fedele <dan.fedele@gmail.com>2023-06-12 16:48:51 -0400
commitc012b2026d4908e8533e6d3c3d8b89d36b11f168 (patch)
treeed7472598234db7fd30ab022a611f450e60c4599 /zsh_functions.zsh
parente8ca7beece3fd8b80d76857d7c6f687d83209918 (diff)
Now using ansible roles. also removed linpeass
Diffstat (limited to 'zsh_functions.zsh')
-rw-r--r--zsh_functions.zsh26
1 files changed, 0 insertions, 26 deletions
diff --git a/zsh_functions.zsh b/zsh_functions.zsh
deleted file mode 100644
index e6df6e0..0000000
--- a/zsh_functions.zsh
+++ /dev/null
@@ -1,26 +0,0 @@
-# This is a handy list of functions I use
-
-scan() {
- SCANDIR="${PWD}/nmap_scans"
- if [ -z $1 ];
- then
- read "TARGET?Enter a target: "
- else
- TARGET=$1
- fi
-
- echo "Scanning ${TARGET}..."
- mkdir -p $SCANDIR
- 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
-}
-
-# 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