Fixed typo in bash aliases

This commit is contained in:
Phil 2021-12-17 23:08:01 +00:00
parent fd4a677c0c
commit 8ce217fe1b

View File

@ -64,6 +64,15 @@ function sniff() {
function httpdump() {
sudo tcpdump -i $(ip route | grep '^default' | awk '{print $5}') -n -s 0 -w - | grep -a -o -E \"Host\\: .*|GET \\/.*\"
}
# Start-msfconsole
function mfsconsole-start(){
if [ -d "/opt/sophos-av" ];then
sudo service sav-protect stop >> /dev/null
sudo msfconsole
else
sudo msfconsole
fi
}
# nmap-basic
function nmap-basic() {