From c012b2026d4908e8533e6d3c3d8b89d36b11f168 Mon Sep 17 00:00:00 2001 From: Dan Fedele Date: Mon, 12 Jun 2023 16:48:51 -0400 Subject: Now using ansible roles. also removed linpeass --- master-bash_functions | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 master-bash_functions (limited to 'master-bash_functions') diff --git a/master-bash_functions b/master-bash_functions deleted file mode 100644 index 0b5026c..0000000 --- a/master-bash_functions +++ /dev/null @@ -1,9 +0,0 @@ -# This is a file I will store all bash functions I use - -scan() { - echo "Scanning with masscan..." - echo "If this takes way too long, ping $1 in a separate terminal" - echo "because masscan has a weird bug that holds connections open or something" - P=$(sudo masscan -p 1-65535 -e tun0 --rate=1000 $1 | grep Discovered | awk '{print $4}' | cut -d/ -f1 | tr "\n" "," | sed 's/\,$/\n/') ; sudo nmap -sC -sV -p $P -oN scanresults-$1.txt $1 - echo "Stored results in scanresults-$1.txt" -} -- cgit v1.2.3