npm i eslint eslint-loader eslint-plugin-vue --save-dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Used: | |
# nmap -p- --open -T5 -v -n ip -oG allPorts | |
# Extract nmap information | |
# Run as: | |
# extractPorts allPorts | |
function extractPorts(){ | |
ports="$(cat $1 | grep -oP '\d{1,5}/open' | awk '{print $1}' FS='/' | xargs | tr ' ' ',')" | |
ip_address="$(cat $1 | grep -oP '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}' | sort -u | head -n 1)" | |
echo -e "\n[*] Extracting information...\n" > extractPorts.tmp |
OlderNewer