├── LICENSE.md ├── README.md ├── compilesploit ├── copysploit ├── findsploit ├── findsploit.desktop ├── findsploit.png ├── install.sh ├── msf_search └── all_modules.txt └── nmap └── nmap /LICENSE.md: -------------------------------------------------------------------------------- 1 | # Findsploit by @xer0dayz 2 | https://sn1persecurity.com 3 | 4 | ## LICENSE: 5 | This software is free to distribute and use with the condition that credit is provided to the creator (@xer0dayz @Sn1perSecurity), is not renamed and is not for commercial use or resold and rebranded. Permission to distribute any part of the code for sale is strictly prohibited. 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Findsploit by @xer0dayz 2 | https://sn1persecurity.com 3 | 4 | ![alt tag](https://github.com/1N3/Findsploit/blob/master/findsploit.png) 5 | 6 | ### ABOUT 7 | Finsploit is a simple bash script to quickly and easily search both local and online exploit databases. This repository also includes "copysploit" to copy any exploit-db exploit to the current directory and "compilesploit" to automatically compile and run any C exploit (ie. ./copysploit 1337.c && ./compilesploit 1337.c). 8 | 9 | For updates to this script, type `findsploit update` 10 | 11 | ### INSTALLATION 12 | ``` 13 | ./install.sh 14 | ``` 15 | 16 | ### USAGE 17 | ``` 18 | Search for all exploits and modules using a single search term: 19 | * findsploit (ie. findsploit apache) 20 | 21 | Search multiple search terms: 22 | * findsploit ... 23 | 24 | Show all NMap scripts: 25 | * findsploit nmap 26 | 27 | Search for all FTP NMap scripts: 28 | * findsploit nmap | grep ftp 29 | 30 | Show all Metasploit auxiliary modules: 31 | * findsploit auxiliary 32 | 33 | Show all Metasploit exploits: 34 | * findsploit exploits 35 | 36 | Show all Metasploit encoder modules: 37 | * findsploit encoder 38 | 39 | Show all Metasploit payloads modules: 40 | * findsploit payloads 41 | 42 | Search all Metasploit payloads for windows only payloads: 43 | * findsploit payloads | grep windows 44 | ``` 45 | 46 | ## LICENSE: 47 | This software is free to distribute and use with the condition that credit is provided to the creator (@xer0dayz @Sn1perSecurity), is not renamed and is not for commercial use or resold and rebranded. Permission to distribute any part of the code for sale is strictly prohibited. 48 | -------------------------------------------------------------------------------- /compilesploit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # compilesploit by @xer0dayz 3 | # A small script to automatically find and copy an exploit file to the current directory... 4 | # 5 | 6 | COLOR1='\033[1m\033[91m' 7 | COLOR2='\033[1m\033[92m' 8 | COLOR3='\033[1m' 9 | 10 | function logo { 11 | echo -e "$COLOR3 ___ _ _ _ _ _ " 12 | echo -e "$COLOR3 / __(_)_ __ __| |___ _ __ | | ___ (_) |_ " 13 | echo -e "$COLOR3 / _\ | | '_ \ / _\` / __| '_ \| |/ _ \| | __|" 14 | echo -e "$COLOR3/ / | | | | | (_| \__ \ |_) | | (_) | | |_ " 15 | echo -e "$COLOR3\/ |_|_| |_|\__,_|___/ .__/|_|\___/|_|\__|" 16 | echo -e "$COLOR3 |_| " 17 | echo "" 18 | } 19 | 20 | if [ -z "$1" ]; 21 | then 22 | logo 23 | echo -e "$COLOR1+ -- --=[ compilesploit by @xer0dayz" 24 | echo -e "$COLOR1+ -- --=[ https://sn1persecurity.com$RESET" 25 | echo -e "$COLOR1+ -- --=[ Usage: compilesploit " 26 | echo "" 27 | echo "" 28 | exit; 29 | else 30 | DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) 31 | logo 32 | echo "" 33 | echo -e "$COLOR1+ -- --=[compilesploit by @xer0dayz" 34 | echo -e "$COLOR1+ -- --=[https://sn1persecurity.com$RESET" 35 | echo "" 36 | echo -e "$COLOR1+ -- --=[COMPILING:$COLOR2 $1 $RESET" 37 | echo "" 38 | gcc $1 -o $1.out 39 | echo -e "$COLOR1" 40 | ./$1.out 41 | fi 42 | exit 43 | 44 | -------------------------------------------------------------------------------- /copysploit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # copysploit by @xer0dayz 3 | # A small script to automatically find and copy an exploit file to the current directory... 4 | # 5 | 6 | EDITOR='gedit' # PREFERED TEXT EDITOR 7 | COLOR1='\033[1m\033[91m' 8 | COLOR2='\033[1m\033[92m' 9 | COLOR3='\033[1m' 10 | 11 | function logo { 12 | echo -e "$COLOR3 ___ _ _ _ _ _ " 13 | echo -e "$COLOR3 / __(_)_ __ __| |___ _ __ | | ___ (_) |_ " 14 | echo -e "$COLOR3 / _\ | | '_ \ / _\` / __| '_ \| |/ _ \| | __|" 15 | echo -e "$COLOR3/ / | | | | | (_| \__ \ |_) | | (_) | | |_ " 16 | echo -e "$COLOR3\/ |_|_| |_|\__,_|___/ .__/|_|\___/|_|\__|" 17 | echo -e "$COLOR3 |_| " 18 | echo "" 19 | echo -e "$COLOR1+ -- --=[ findsploit by @xer0dayz" 20 | echo -e "$COLOR1+ -- --=[ https://sn1persecurity.com$RESET" 21 | echo "" 22 | } 23 | 24 | if [ -z "$1" ]; 25 | then 26 | logo 27 | echo "" 28 | exit; 29 | else 30 | DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) 31 | logo 32 | echo -e "$COLOR1+ -- --=[ COPYING:$COLOR2 $1 $COLOR1 TO $COLOR2 `pwd` $RESET" 33 | echo "" 34 | find /pentest/exploits/ -name $1 -exec cp -f {} . \; 35 | echo -e "$COLOR1" 36 | ls -lahtr $1 37 | fi 38 | exit 39 | 40 | -------------------------------------------------------------------------------- /findsploit: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Findsploit by @xer0dayz 3 | # https://sn1persecurity.com 4 | # 5 | # Finsploit is a simple bash script to quickly and easily search both local and online exploit databases. 6 | # 7 | 8 | clear 9 | 10 | VER='2.0' 11 | SEARCHSPLOIT_SCRIPT='/usr/bin/searchsploit' 12 | NMAP_SCRIPTS='/usr/share/findsploit/nmap/nmap' 13 | MSF_SEARCH_DIR='/usr/share/findsploit/msf_search' 14 | BROWSER_CMD='firefox' 15 | VAR1=$1; 16 | VAR2=$2; 17 | VAR3=$3; 18 | VARS="$*" 19 | 20 | OKRED='\033[91m' 21 | COLOR2='\033[1m\033[92m' 22 | OKRED='\033[1m' 23 | 24 | OKBLUE='\033[94m' 25 | OKRED='\033[91m' 26 | OKGREEN='\033[92m' 27 | OKORANGE='\033[93m' 28 | RESET='\e[0m' 29 | REGEX='^[0-9]+$' 30 | 31 | function logo { 32 | echo -e "$OKRED ___ _ _ _ _ _ " 33 | echo -e "$OKRED / __(_)_ __ __| |___ _ __ | | ___ (_) |_ " 34 | echo -e "$OKRED / _\ | | '_ \ / _\` / __| '_ \| |/ _ \| | __|" 35 | echo -e "$OKRED/ / | | | | | (_| \__ \ |_) | | (_) | | |_ " 36 | echo -e "$OKRED\/ |_|_| |_|\__,_|___/ .__/|_|\___/|_|\__|" 37 | echo -e "$OKRED |_| " 38 | echo "" 39 | echo -e "$OKRED + -- --=[ findsploit v$VER by @xer0dayz" 40 | echo -e "$OKRED + -- --=[ https://sn1persecurity.com$RESET" 41 | echo "" 42 | } 43 | 44 | function update { 45 | logo 46 | echo -e "$OKRED + -- --=[ Checking for updates... $RESET" 47 | if [[ $(curl -s https://api.github.com/repos/1N3/Findsploit/tags) == "" ]]; 48 | then 49 | echo -e "$OKRED + -- --=[ Error: no active internet connection $RESET" 50 | echo "" 51 | exit 1 52 | fi 53 | LATEST_VERSION=$(curl -s https://api.github.com/repos/1N3/Findsploit/tags | grep -Po '"name":.*?[^\\]",'| head -1 | cut -c11-13) 54 | if [[ "$LATEST_VERSION" != "$VER" && "$LATEST_VERSION" != "" ]]; 55 | then 56 | echo -e "$OKRED + -- --=[ Findsploit v$LATEST_VERSION is available to download. $RESET" 57 | echo -e "$OKRED + -- --=[ Do you want to update Findsploit [Y/n]: $RESET" 58 | read answer 59 | if [[ "$answer" == "Y" || "$answer" == "y" ]] ; 60 | then 61 | cd ~ || { echo -e "$OKRED + -- --=[ Update Failed $RESET" ; exit 1 ; } 62 | rm -r Findsploit 2> /dev/null 63 | git clone https://github.com/1N3/Findsploit || { echo -e "$OKRED + -- --=[ Couldn't download latest version $RESET" ; exit 1; } 64 | cd Findsploit || { echo -e "$OKRED + -- --=[ Update Failed $RESET" ; exit 1 ;} 65 | git checkout $LATEST_VERSION 2> /dev/null 66 | ./install.sh 67 | cd .. 68 | rm -r Findsploit 69 | else 70 | exit 1 71 | fi 72 | else 73 | echo -e "$OKRED + -- --=[ Findsploit is already the latest version $RESET" 74 | echo "" 75 | fi 76 | } 77 | 78 | if [ -z "$1" ]; 79 | then 80 | logo 81 | echo -e "$OKRED + -- --=[ Usage: findsploit windows xp remote, etc. $RESET" 82 | echo "" 83 | echo "" 84 | exit; 85 | fi 86 | 87 | if [[ "$1" == "--update" || "$1" == "-u" ]]; 88 | then 89 | update 90 | exit 91 | else 92 | DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) 93 | logo 94 | echo -e "$OKRED + -- --=[ SEARCHING: $COLOR2 $VARS $RESET" 95 | echo "" 96 | echo -e "$OKRED + -- --=[ NMAP SCRIPTS $RESET" 97 | echo "" 98 | egrep -i "$VAR1" $NMAP_SCRIPTS | egrep -i "$VAR2" --color=auto | egrep -i "$VAR3" --color=auto 99 | echo "" 100 | echo -e "$OKRED + -- --=[ METASPLOIT EXPLOIT S$RESET" 101 | echo "" 102 | egrep -i "$VAR1" $MSF_SEARCH_DIR/* | egrep -i "$VAR2" --color=auto | egrep -i "$VAR3" --color=auto 103 | echo "" 104 | echo -e "$OKRED + -- --=[ EXPLOITDB EXPLOITS $RESET" 105 | echo "" 106 | $SEARCHSPLOIT_SCRIPT $VARS 107 | echo "" 108 | echo 'https://www.exploit-db.com/search?q='$VAR1'+'$VAR2'+'$VAR3 109 | echo 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+exploit' 110 | echo 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+exploit+site:www.securityfocus.com' 111 | echo 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+site:0day.today' 112 | echo 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+site:www.security-database.com' 113 | echo 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+site:packetstormsecurity.com' 114 | echo 'https://exploits.shodan.io/?q='$VAR1'+'$VAR2'+'$VAR3 115 | echo 'https://vulners.com/search?query='$VAR1'+'$VAR2'+'$VAR3 116 | echo "" 117 | echo -e "$OKORANGE + -- --=[ Press any key to search online or Ctrl+C to exit...$RESET" 118 | read test 119 | $BROWSER_CMD 'https://sn1persecurity.com' 2> /dev/null & 120 | sleep 5 121 | $BROWSER_CMD 'https://www.exploit-db.com/search?q='$VAR1'+'$VAR2'+'$VAR3 2>/dev/null &> /dev/null 122 | $BROWSER_CMD 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+exploit' 2>/dev/null &> /dev/null 123 | $BROWSER_CMD 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+exploit+site:www.securityfocus.com' 2> /dev/null &> /dev/null 124 | $BROWSER_CMD 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+site:0day.today' 2> /dev/null &> /dev/null 125 | $BROWSER_CMD 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+site:www.security-database.com' 2> /dev/null 126 | $BROWSER_CMD 'https://www.google.ca/search?q='$VAR1'%20'$VAR2'%20'$VAR3'+site:packetstormsecurity.com' 2> /dev/null &> /dev/null 127 | $BROWSER_CMD 'https://exploits.shodan.io/?q='$VAR1'+'$VAR2'+'$VAR3 2> /dev/null &> /dev/null 128 | $BROWSER_CMD 'https://vulners.com/search?query='$VAR1'+'$VAR2'+'$VAR3 2> /dev/null &> /dev/null 129 | fi 130 | exit 131 | -------------------------------------------------------------------------------- /findsploit.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=findsploit 3 | Encoding=UTF-8 4 | Exec=/usr/share/kali-menu/exec-in-shell "sudo findsploit" 5 | Icon=avatar-root 6 | StartupNotify=false 7 | Terminal=true 8 | Type=Application 9 | Categories=08-exploitation-tools; 10 | X-Kali-Package=findsploit 11 | Comment= 12 | Path= 13 | -------------------------------------------------------------------------------- /findsploit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1N3/Findsploit/3e61d8d338446b36eaf06de2b61859960d840181/findsploit.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Install script for Findsploit by @xer0dayz 3 | # https://sn1persecurity.com 4 | # 5 | 6 | FINDSPLOIT_INSTALL_DIR=/usr/share/findsploit 7 | 8 | OKBLUE='\033[94m' 9 | OKRED='\033[91m' 10 | OKGREEN='\033[92m' 11 | OKORANGE='\033[93m' 12 | RESET='\e[0m' 13 | REGEX='^[0-9]+$' 14 | 15 | echo -e "$OKRED ___ _ _ _ _ _ " 16 | echo -e "$OKRED / __(_)_ __ __| |___ _ __ | | ___ (_) |_ " 17 | echo -e "$OKRED / _\ | | '_ \ / _\` / __| '_ \| |/ _ \| | __|" 18 | echo -e "$OKRED/ / | | | | | (_| \__ \ |_) | | (_) | | |_ " 19 | echo -e "$OKRED\/ |_|_| |_|\__,_|___/ .__/|_|\___/|_|\__|" 20 | echo -e "$OKRED |_| " 21 | echo -e "$RESET" 22 | echo -e "$OKRED+ -- --=[ findsploit by @xer0dayz" 23 | echo -e "$OKRED+ -- --=[ https://sn1persecurity.com$RESET" 24 | echo -e "$OKRED+ -- --=[ Usage: findsploit windows xp remote, etc." 25 | echo -e "$RESET" 26 | 27 | echo -e "$OKBLUE[*]$RESET Installing findsploit under $FINDSPLOIT_INSTALL_DIR. $RESET" 28 | rm -Rf $FINDSPLOIT_INSTALL_DIR 2> /dev/null 29 | mkdir -p $FINDSPLOIT_INSTALL_DIR 2> /dev/null 30 | cp -Rf $PWD/* $FINDSPLOIT_INSTALL_DIR 31 | cd $FINDSPLOIT_INSTALL_DIR 32 | apt-get install -y exploitdb 33 | mkdir loot 2> /dev/null 34 | chmod +x $FINDSPLOIT_INSTALL_DIR/findsploit 35 | chmod +x $FINDSPLOIT_INSTALL_DIR/copysploit 36 | chmod +x $FINDSPLOIT_INSTALL_DIR/compilesploit 37 | rm -f /usr/bin/findsploit 2> /dev/null 38 | rm -f /usr/bin/copysploit 2> /dev/null 39 | rm -f /usr/bin/compilesploit 2> /dev/null 40 | ln -s /usr/share/findsploit/findsploit /usr/bin/findsploit 41 | ln -s /usr/share/findsploit/copysploit /usr/bin/copysploit 42 | ln -s /usr/share/findsploit/compilesploit /usr/bin/compilesploit 43 | cp -f $INSTALL_DIR/findsploit.desktop /usr/share/applications/ 2> /dev/null 44 | cp -f $INSTALL_DIR/findsploit.desktop /usr/share/applications/findsploit.desktop 2> /dev/null 45 | cp -f $INSTALL_DIR/findsploit.desktop /usr/share/kali-menu/applications/findsploit.desktop2> /dev/null 46 | echo -e "$OKBLUE[*]$RESET Done! $RESET" 47 | echo -e "$OKRED[>]$RESET To run, type 'findsploit'! $RESET" 48 | -------------------------------------------------------------------------------- /nmap/nmap: -------------------------------------------------------------------------------- 1 | /usr/share/nmap/scripts/acarsd-info.nse 2 | /usr/share/nmap/scripts/address-info.nse 3 | /usr/share/nmap/scripts/afp-brute.nse 4 | /usr/share/nmap/scripts/afp-ls.nse 5 | /usr/share/nmap/scripts/afp-path-vuln.nse 6 | /usr/share/nmap/scripts/afp-serverinfo.nse 7 | /usr/share/nmap/scripts/afp-showmount.nse 8 | /usr/share/nmap/scripts/ajp-auth.nse 9 | /usr/share/nmap/scripts/ajp-brute.nse 10 | /usr/share/nmap/scripts/ajp-headers.nse 11 | /usr/share/nmap/scripts/ajp-methods.nse 12 | /usr/share/nmap/scripts/ajp-request.nse 13 | /usr/share/nmap/scripts/allseeingeye-info.nse 14 | /usr/share/nmap/scripts/amqp-info.nse 15 | /usr/share/nmap/scripts/asn-query.nse 16 | /usr/share/nmap/scripts/auth-owners.nse 17 | /usr/share/nmap/scripts/auth-spoof.nse 18 | /usr/share/nmap/scripts/backorifice-brute.nse 19 | /usr/share/nmap/scripts/backorifice-info.nse 20 | /usr/share/nmap/scripts/bacnet-info.nse 21 | /usr/share/nmap/scripts/banner.nse 22 | /usr/share/nmap/scripts/bitcoin-getaddr.nse 23 | /usr/share/nmap/scripts/bitcoin-info.nse 24 | /usr/share/nmap/scripts/bitcoinrpc-info.nse 25 | /usr/share/nmap/scripts/bittorrent-discovery.nse 26 | /usr/share/nmap/scripts/bjnp-discover.nse 27 | /usr/share/nmap/scripts/broadcast-ataoe-discover.nse 28 | /usr/share/nmap/scripts/broadcast-avahi-dos.nse 29 | /usr/share/nmap/scripts/broadcast-bjnp-discover.nse 30 | /usr/share/nmap/scripts/broadcast-db2-discover.nse 31 | /usr/share/nmap/scripts/broadcast-dhcp6-discover.nse 32 | /usr/share/nmap/scripts/broadcast-dhcp-discover.nse 33 | /usr/share/nmap/scripts/broadcast-dns-service-discovery.nse 34 | /usr/share/nmap/scripts/broadcast-dropbox-listener.nse 35 | /usr/share/nmap/scripts/broadcast-eigrp-discovery.nse 36 | /usr/share/nmap/scripts/broadcast-hid-discoveryd.nse 37 | /usr/share/nmap/scripts/broadcast-igmp-discovery.nse 38 | /usr/share/nmap/scripts/broadcast-jenkins-discover.nse 39 | /usr/share/nmap/scripts/broadcast-listener.nse 40 | /usr/share/nmap/scripts/broadcast-ms-sql-discover.nse 41 | /usr/share/nmap/scripts/broadcast-netbios-master-browser.nse 42 | /usr/share/nmap/scripts/broadcast-networker-discover.nse 43 | /usr/share/nmap/scripts/broadcast-novell-locate.nse 44 | /usr/share/nmap/scripts/broadcast-ospf2-discover.nse 45 | /usr/share/nmap/scripts/broadcast-pc-anywhere.nse 46 | /usr/share/nmap/scripts/broadcast-pc-duo.nse 47 | /usr/share/nmap/scripts/broadcast-pim-discovery.nse 48 | /usr/share/nmap/scripts/broadcast-ping.nse 49 | /usr/share/nmap/scripts/broadcast-pppoe-discover.nse 50 | /usr/share/nmap/scripts/broadcast-rip-discover.nse 51 | /usr/share/nmap/scripts/broadcast-ripng-discover.nse 52 | /usr/share/nmap/scripts/broadcast-sonicwall-discover.nse 53 | /usr/share/nmap/scripts/broadcast-sybase-asa-discover.nse 54 | /usr/share/nmap/scripts/broadcast-tellstick-discover.nse 55 | /usr/share/nmap/scripts/broadcast-upnp-info.nse 56 | /usr/share/nmap/scripts/broadcast-versant-locate.nse 57 | /usr/share/nmap/scripts/broadcast-wake-on-lan.nse 58 | /usr/share/nmap/scripts/broadcast-wpad-discover.nse 59 | /usr/share/nmap/scripts/broadcast-wsdd-discover.nse 60 | /usr/share/nmap/scripts/broadcast-xdmcp-discover.nse 61 | /usr/share/nmap/scripts/cassandra-brute.nse 62 | /usr/share/nmap/scripts/cassandra-info.nse 63 | /usr/share/nmap/scripts/cccam-version.nse 64 | /usr/share/nmap/scripts/cics-enum.nse 65 | /usr/share/nmap/scripts/cics-info.nse 66 | /usr/share/nmap/scripts/cics-user-brute.nse 67 | /usr/share/nmap/scripts/cics-user-enum.nse 68 | /usr/share/nmap/scripts/citrix-brute-xml.nse 69 | /usr/share/nmap/scripts/citrix-enum-apps.nse 70 | /usr/share/nmap/scripts/citrix-enum-apps-xml.nse 71 | /usr/share/nmap/scripts/citrix-enum-servers.nse 72 | /usr/share/nmap/scripts/citrix-enum-servers-xml.nse 73 | /usr/share/nmap/scripts/clamav-exec.nse 74 | /usr/share/nmap/scripts/clock-skew.nse 75 | /usr/share/nmap/scripts/coap-resources.nse 76 | /usr/share/nmap/scripts/couchdb-databases.nse 77 | /usr/share/nmap/scripts/couchdb-stats.nse 78 | /usr/share/nmap/scripts/creds-summary.nse 79 | /usr/share/nmap/scripts/cups-info.nse 80 | /usr/share/nmap/scripts/cups-queue-info.nse 81 | /usr/share/nmap/scripts/cvs-brute.nse 82 | /usr/share/nmap/scripts/cvs-brute-repository.nse 83 | /usr/share/nmap/scripts/daap-get-library.nse 84 | /usr/share/nmap/scripts/daytime.nse 85 | /usr/share/nmap/scripts/db2-das-info.nse 86 | /usr/share/nmap/scripts/deluge-rpc-brute.nse 87 | /usr/share/nmap/scripts/dhcp-discover.nse 88 | /usr/share/nmap/scripts/dict-info.nse 89 | /usr/share/nmap/scripts/distcc-cve2004-2687.nse 90 | /usr/share/nmap/scripts/dns-blacklist.nse 91 | /usr/share/nmap/scripts/dns-brute.nse 92 | /usr/share/nmap/scripts/dns-cache-snoop.nse 93 | /usr/share/nmap/scripts/dns-check-zone.nse 94 | /usr/share/nmap/scripts/dns-client-subnet-scan.nse 95 | /usr/share/nmap/scripts/dns-fuzz.nse 96 | /usr/share/nmap/scripts/dns-ip6-arpa-scan.nse 97 | /usr/share/nmap/scripts/dns-nsec3-enum.nse 98 | /usr/share/nmap/scripts/dns-nsec-enum.nse 99 | /usr/share/nmap/scripts/dns-nsid.nse 100 | /usr/share/nmap/scripts/dns-random-srcport.nse 101 | /usr/share/nmap/scripts/dns-random-txid.nse 102 | /usr/share/nmap/scripts/dns-recursion.nse 103 | /usr/share/nmap/scripts/dns-service-discovery.nse 104 | /usr/share/nmap/scripts/dns-srv-enum.nse 105 | /usr/share/nmap/scripts/dns-update.nse 106 | /usr/share/nmap/scripts/dns-zeustracker.nse 107 | /usr/share/nmap/scripts/dns-zone-transfer.nse 108 | /usr/share/nmap/scripts/docker-version.nse 109 | /usr/share/nmap/scripts/domcon-brute.nse 110 | /usr/share/nmap/scripts/domcon-cmd.nse 111 | /usr/share/nmap/scripts/domino-enum-users.nse 112 | /usr/share/nmap/scripts/dpap-brute.nse 113 | /usr/share/nmap/scripts/drda-brute.nse 114 | /usr/share/nmap/scripts/drda-info.nse 115 | /usr/share/nmap/scripts/duplicates.nse 116 | /usr/share/nmap/scripts/eap-info.nse 117 | /usr/share/nmap/scripts/enip-info.nse 118 | /usr/share/nmap/scripts/epmd-info.nse 119 | /usr/share/nmap/scripts/eppc-enum-processes.nse 120 | /usr/share/nmap/scripts/fcrdns.nse 121 | /usr/share/nmap/scripts/finger.nse 122 | /usr/share/nmap/scripts/fingerprint-strings.nse 123 | /usr/share/nmap/scripts/firewalk.nse 124 | /usr/share/nmap/scripts/firewall-bypass.nse 125 | /usr/share/nmap/scripts/flume-master-info.nse 126 | /usr/share/nmap/scripts/fox-info.nse 127 | /usr/share/nmap/scripts/freelancer-info.nse 128 | /usr/share/nmap/scripts/ftp-anon.nse 129 | /usr/share/nmap/scripts/ftp-bounce.nse 130 | /usr/share/nmap/scripts/ftp-brute.nse 131 | /usr/share/nmap/scripts/ftp-libopie.nse 132 | /usr/share/nmap/scripts/ftp-proftpd-backdoor.nse 133 | /usr/share/nmap/scripts/ftp-syst.nse 134 | /usr/share/nmap/scripts/ftp-vsftpd-backdoor.nse 135 | /usr/share/nmap/scripts/ftp-vuln-cve2010-4221.nse 136 | /usr/share/nmap/scripts/ganglia-info.nse 137 | /usr/share/nmap/scripts/giop-info.nse 138 | /usr/share/nmap/scripts/gkrellm-info.nse 139 | /usr/share/nmap/scripts/gopher-ls.nse 140 | /usr/share/nmap/scripts/gpsd-info.nse 141 | /usr/share/nmap/scripts/hadoop-datanode-info.nse 142 | /usr/share/nmap/scripts/hadoop-jobtracker-info.nse 143 | /usr/share/nmap/scripts/hadoop-namenode-info.nse 144 | /usr/share/nmap/scripts/hadoop-secondary-namenode-info.nse 145 | /usr/share/nmap/scripts/hadoop-tasktracker-info.nse 146 | /usr/share/nmap/scripts/hbase-master-info.nse 147 | /usr/share/nmap/scripts/hbase-region-info.nse 148 | /usr/share/nmap/scripts/hddtemp-info.nse 149 | /usr/share/nmap/scripts/hnap-info.nse 150 | /usr/share/nmap/scripts/hostmap-bfk.nse 151 | /usr/share/nmap/scripts/hostmap-crtsh.nse 152 | /usr/share/nmap/scripts/hostmap-robtex.nse 153 | /usr/share/nmap/scripts/http-adobe-coldfusion-apsa1301.nse 154 | /usr/share/nmap/scripts/http-affiliate-id.nse 155 | /usr/share/nmap/scripts/http-apache-negotiation.nse 156 | /usr/share/nmap/scripts/http-apache-server-status.nse 157 | /usr/share/nmap/scripts/http-aspnet-debug.nse 158 | /usr/share/nmap/scripts/http-auth-finder.nse 159 | /usr/share/nmap/scripts/http-auth.nse 160 | /usr/share/nmap/scripts/http-avaya-ipoffice-users.nse 161 | /usr/share/nmap/scripts/http-awstatstotals-exec.nse 162 | /usr/share/nmap/scripts/http-axis2-dir-traversal.nse 163 | /usr/share/nmap/scripts/http-backup-finder.nse 164 | /usr/share/nmap/scripts/http-barracuda-dir-traversal.nse 165 | /usr/share/nmap/scripts/http-bigip-cookie.nse 166 | /usr/share/nmap/scripts/http-brute.nse 167 | /usr/share/nmap/scripts/http-cakephp-version.nse 168 | /usr/share/nmap/scripts/http-chrono.nse 169 | /usr/share/nmap/scripts/http-cisco-anyconnect.nse 170 | /usr/share/nmap/scripts/http-coldfusion-subzero.nse 171 | /usr/share/nmap/scripts/http-comments-displayer.nse 172 | /usr/share/nmap/scripts/http-config-backup.nse 173 | /usr/share/nmap/scripts/http-cookie-flags.nse 174 | /usr/share/nmap/scripts/http-cors.nse 175 | /usr/share/nmap/scripts/http-cross-domain-policy.nse 176 | /usr/share/nmap/scripts/http-csrf.nse 177 | /usr/share/nmap/scripts/http-date.nse 178 | /usr/share/nmap/scripts/http-default-accounts.nse 179 | /usr/share/nmap/scripts/http-devframework.nse 180 | /usr/share/nmap/scripts/http-dlink-backdoor.nse 181 | /usr/share/nmap/scripts/http-dombased-xss.nse 182 | /usr/share/nmap/scripts/http-domino-enum-passwords.nse 183 | /usr/share/nmap/scripts/http-drupal-enum.nse 184 | /usr/share/nmap/scripts/http-drupal-enum-users.nse 185 | /usr/share/nmap/scripts/http-enum.nse 186 | /usr/share/nmap/scripts/http-errors.nse 187 | /usr/share/nmap/scripts/http-exif-spider.nse 188 | /usr/share/nmap/scripts/http-favicon.nse 189 | /usr/share/nmap/scripts/http-feed.nse 190 | /usr/share/nmap/scripts/http-fetch.nse 191 | /usr/share/nmap/scripts/http-fileupload-exploiter.nse 192 | /usr/share/nmap/scripts/http-form-brute.nse 193 | /usr/share/nmap/scripts/http-form-fuzzer.nse 194 | /usr/share/nmap/scripts/http-frontpage-login.nse 195 | /usr/share/nmap/scripts/http-generator.nse 196 | /usr/share/nmap/scripts/http-git.nse 197 | /usr/share/nmap/scripts/http-gitweb-projects-enum.nse 198 | /usr/share/nmap/scripts/http-google-malware.nse 199 | /usr/share/nmap/scripts/http-grep.nse 200 | /usr/share/nmap/scripts/http-headers.nse 201 | /usr/share/nmap/scripts/http-hp-ilo-info.nse 202 | /usr/share/nmap/scripts/http-huawei-hg5xx-vuln.nse 203 | /usr/share/nmap/scripts/http-icloud-findmyiphone.nse 204 | /usr/share/nmap/scripts/http-icloud-sendmsg.nse 205 | /usr/share/nmap/scripts/http-iis-short-name-brute.nse 206 | /usr/share/nmap/scripts/http-iis-webdav-vuln.nse 207 | /usr/share/nmap/scripts/http-internal-ip-disclosure.nse 208 | /usr/share/nmap/scripts/http-joomla-brute.nse 209 | /usr/share/nmap/scripts/http-jsonp-detection.nse 210 | /usr/share/nmap/scripts/http-litespeed-sourcecode-download.nse 211 | /usr/share/nmap/scripts/http-ls.nse 212 | /usr/share/nmap/scripts/http-majordomo2-dir-traversal.nse 213 | /usr/share/nmap/scripts/http-malware-host.nse 214 | /usr/share/nmap/scripts/http-mcmp.nse 215 | /usr/share/nmap/scripts/http-methods.nse 216 | /usr/share/nmap/scripts/http-method-tamper.nse 217 | /usr/share/nmap/scripts/http-mobileversion-checker.nse 218 | /usr/share/nmap/scripts/http-ntlm-info.nse 219 | /usr/share/nmap/scripts/http-open-proxy.nse 220 | /usr/share/nmap/scripts/http-open-redirect.nse 221 | /usr/share/nmap/scripts/http-passwd.nse 222 | /usr/share/nmap/scripts/http-phpmyadmin-dir-traversal.nse 223 | /usr/share/nmap/scripts/http-phpself-xss.nse 224 | /usr/share/nmap/scripts/http-php-version.nse 225 | /usr/share/nmap/scripts/http-proxy-brute.nse 226 | /usr/share/nmap/scripts/http-put.nse 227 | /usr/share/nmap/scripts/http-qnap-nas-info.nse 228 | /usr/share/nmap/scripts/http-referer-checker.nse 229 | /usr/share/nmap/scripts/http-rfi-spider.nse 230 | /usr/share/nmap/scripts/http-robots.txt.nse 231 | /usr/share/nmap/scripts/http-robtex-reverse-ip.nse 232 | /usr/share/nmap/scripts/http-robtex-shared-ns.nse 233 | /usr/share/nmap/scripts/http-sap-netweaver-leak.nse 234 | /usr/share/nmap/scripts/http-security-headers.nse 235 | /usr/share/nmap/scripts/http-server-header.nse 236 | /usr/share/nmap/scripts/http-shellshock.nse 237 | /usr/share/nmap/scripts/http-sitemap-generator.nse 238 | /usr/share/nmap/scripts/http-slowloris-check.nse 239 | /usr/share/nmap/scripts/http-slowloris.nse 240 | /usr/share/nmap/scripts/http-sql-injection.nse 241 | /usr/share/nmap/scripts/https-redirect.nse 242 | /usr/share/nmap/scripts/http-stored-xss.nse 243 | /usr/share/nmap/scripts/http-svn-enum.nse 244 | /usr/share/nmap/scripts/http-svn-info.nse 245 | /usr/share/nmap/scripts/http-title.nse 246 | /usr/share/nmap/scripts/http-tplink-dir-traversal.nse 247 | /usr/share/nmap/scripts/http-trace.nse 248 | /usr/share/nmap/scripts/http-traceroute.nse 249 | /usr/share/nmap/scripts/http-trane-info.nse 250 | /usr/share/nmap/scripts/http-unsafe-output-escaping.nse 251 | /usr/share/nmap/scripts/http-useragent-tester.nse 252 | /usr/share/nmap/scripts/http-userdir-enum.nse 253 | /usr/share/nmap/scripts/http-vhosts.nse 254 | /usr/share/nmap/scripts/http-virustotal.nse 255 | /usr/share/nmap/scripts/http-vlcstreamer-ls.nse 256 | /usr/share/nmap/scripts/http-vmware-path-vuln.nse 257 | /usr/share/nmap/scripts/http-vuln-cve2006-3392.nse 258 | /usr/share/nmap/scripts/http-vuln-cve2009-3960.nse 259 | /usr/share/nmap/scripts/http-vuln-cve2010-0738.nse 260 | /usr/share/nmap/scripts/http-vuln-cve2010-2861.nse 261 | /usr/share/nmap/scripts/http-vuln-cve2011-3192.nse 262 | /usr/share/nmap/scripts/http-vuln-cve2011-3368.nse 263 | /usr/share/nmap/scripts/http-vuln-cve2012-1823.nse 264 | /usr/share/nmap/scripts/http-vuln-cve2013-0156.nse 265 | /usr/share/nmap/scripts/http-vuln-cve2013-6786.nse 266 | /usr/share/nmap/scripts/http-vuln-cve2013-7091.nse 267 | /usr/share/nmap/scripts/http-vuln-cve2014-2126.nse 268 | /usr/share/nmap/scripts/http-vuln-cve2014-2127.nse 269 | /usr/share/nmap/scripts/http-vuln-cve2014-2128.nse 270 | /usr/share/nmap/scripts/http-vuln-cve2014-2129.nse 271 | /usr/share/nmap/scripts/http-vuln-cve2014-3704.nse 272 | /usr/share/nmap/scripts/http-vuln-cve2014-8877.nse 273 | /usr/share/nmap/scripts/http-vuln-cve2015-1427.nse 274 | /usr/share/nmap/scripts/http-vuln-cve2015-1635.nse 275 | /usr/share/nmap/scripts/http-vuln-cve2017-1001000.nse 276 | /usr/share/nmap/scripts/http-vuln-cve2017-5638.nse 277 | /usr/share/nmap/scripts/http-vuln-cve2017-5689.nse 278 | /usr/share/nmap/scripts/http-vuln-cve2017-8917.nse 279 | /usr/share/nmap/scripts/http-vuln-misfortune-cookie.nse 280 | /usr/share/nmap/scripts/http-vuln-wnr1000-creds.nse 281 | /usr/share/nmap/scripts/http-waf-detect.nse 282 | /usr/share/nmap/scripts/http-waf-fingerprint.nse 283 | /usr/share/nmap/scripts/http-webdav-scan.nse 284 | /usr/share/nmap/scripts/http-wordpress-brute.nse 285 | /usr/share/nmap/scripts/http-wordpress-enum.nse 286 | /usr/share/nmap/scripts/http-wordpress-users.nse 287 | /usr/share/nmap/scripts/http-xssed.nse 288 | /usr/share/nmap/scripts/iax2-brute.nse 289 | /usr/share/nmap/scripts/iax2-version.nse 290 | /usr/share/nmap/scripts/icap-info.nse 291 | /usr/share/nmap/scripts/iec-identify.nse 292 | /usr/share/nmap/scripts/ike-version.nse 293 | /usr/share/nmap/scripts/imap-brute.nse 294 | /usr/share/nmap/scripts/imap-capabilities.nse 295 | /usr/share/nmap/scripts/imap-ntlm-info.nse 296 | /usr/share/nmap/scripts/impress-remote-discover.nse 297 | /usr/share/nmap/scripts/informix-brute.nse 298 | /usr/share/nmap/scripts/informix-query.nse 299 | /usr/share/nmap/scripts/informix-tables.nse 300 | /usr/share/nmap/scripts/ip-forwarding.nse 301 | /usr/share/nmap/scripts/ip-geolocation-geoplugin.nse 302 | /usr/share/nmap/scripts/ip-geolocation-ipinfodb.nse 303 | /usr/share/nmap/scripts/ip-geolocation-map-bing.nse 304 | /usr/share/nmap/scripts/ip-geolocation-map-google.nse 305 | /usr/share/nmap/scripts/ip-geolocation-map-kml.nse 306 | /usr/share/nmap/scripts/ip-geolocation-maxmind.nse 307 | /usr/share/nmap/scripts/ip-https-discover.nse 308 | /usr/share/nmap/scripts/ipidseq.nse 309 | /usr/share/nmap/scripts/ipmi-brute.nse 310 | /usr/share/nmap/scripts/ipmi-cipher-zero.nse 311 | /usr/share/nmap/scripts/ipmi-version.nse 312 | /usr/share/nmap/scripts/ipv6-multicast-mld-list.nse 313 | /usr/share/nmap/scripts/ipv6-node-info.nse 314 | /usr/share/nmap/scripts/ipv6-ra-flood.nse 315 | /usr/share/nmap/scripts/irc-botnet-channels.nse 316 | /usr/share/nmap/scripts/irc-brute.nse 317 | /usr/share/nmap/scripts/irc-info.nse 318 | /usr/share/nmap/scripts/irc-sasl-brute.nse 319 | /usr/share/nmap/scripts/irc-unrealircd-backdoor.nse 320 | /usr/share/nmap/scripts/iscsi-brute.nse 321 | /usr/share/nmap/scripts/iscsi-info.nse 322 | /usr/share/nmap/scripts/isns-info.nse 323 | /usr/share/nmap/scripts/jdwp-exec.nse 324 | /usr/share/nmap/scripts/jdwp-info.nse 325 | /usr/share/nmap/scripts/jdwp-inject.nse 326 | /usr/share/nmap/scripts/jdwp-version.nse 327 | /usr/share/nmap/scripts/knx-gateway-discover.nse 328 | /usr/share/nmap/scripts/knx-gateway-info.nse 329 | /usr/share/nmap/scripts/krb5-enum-users.nse 330 | /usr/share/nmap/scripts/ldap-brute.nse 331 | /usr/share/nmap/scripts/ldap-novell-getpass.nse 332 | /usr/share/nmap/scripts/ldap-rootdse.nse 333 | /usr/share/nmap/scripts/ldap-search.nse 334 | /usr/share/nmap/scripts/lexmark-config.nse 335 | /usr/share/nmap/scripts/llmnr-resolve.nse 336 | /usr/share/nmap/scripts/lltd-discovery.nse 337 | /usr/share/nmap/scripts/lu-enum.nse 338 | /usr/share/nmap/scripts/maxdb-info.nse 339 | /usr/share/nmap/scripts/mcafee-epo-agent.nse 340 | /usr/share/nmap/scripts/membase-brute.nse 341 | /usr/share/nmap/scripts/membase-http-info.nse 342 | /usr/share/nmap/scripts/memcached-info.nse 343 | /usr/share/nmap/scripts/metasploit-info.nse 344 | /usr/share/nmap/scripts/metasploit-msgrpc-brute.nse 345 | /usr/share/nmap/scripts/metasploit-xmlrpc-brute.nse 346 | /usr/share/nmap/scripts/mikrotik-routeros-brute.nse 347 | /usr/share/nmap/scripts/mmouse-brute.nse 348 | /usr/share/nmap/scripts/mmouse-exec.nse 349 | /usr/share/nmap/scripts/modbus-discover.nse 350 | /usr/share/nmap/scripts/mongodb-brute.nse 351 | /usr/share/nmap/scripts/mongodb-databases.nse 352 | /usr/share/nmap/scripts/mongodb-info.nse 353 | /usr/share/nmap/scripts/mqtt-subscribe.nse 354 | /usr/share/nmap/scripts/mrinfo.nse 355 | /usr/share/nmap/scripts/msrpc-enum.nse 356 | /usr/share/nmap/scripts/ms-sql-brute.nse 357 | /usr/share/nmap/scripts/ms-sql-config.nse 358 | /usr/share/nmap/scripts/ms-sql-dac.nse 359 | /usr/share/nmap/scripts/ms-sql-dump-hashes.nse 360 | /usr/share/nmap/scripts/ms-sql-empty-password.nse 361 | /usr/share/nmap/scripts/ms-sql-hasdbaccess.nse 362 | /usr/share/nmap/scripts/ms-sql-info.nse 363 | /usr/share/nmap/scripts/ms-sql-ntlm-info.nse 364 | /usr/share/nmap/scripts/ms-sql-query.nse 365 | /usr/share/nmap/scripts/ms-sql-tables.nse 366 | /usr/share/nmap/scripts/ms-sql-xp-cmdshell.nse 367 | /usr/share/nmap/scripts/mtrace.nse 368 | /usr/share/nmap/scripts/murmur-version.nse 369 | /usr/share/nmap/scripts/mysql-audit.nse 370 | /usr/share/nmap/scripts/mysql-brute.nse 371 | /usr/share/nmap/scripts/mysql-databases.nse 372 | /usr/share/nmap/scripts/mysql-dump-hashes.nse 373 | /usr/share/nmap/scripts/mysql-empty-password.nse 374 | /usr/share/nmap/scripts/mysql-enum.nse 375 | /usr/share/nmap/scripts/mysql-info.nse 376 | /usr/share/nmap/scripts/mysql-query.nse 377 | /usr/share/nmap/scripts/mysql-users.nse 378 | /usr/share/nmap/scripts/mysql-variables.nse 379 | /usr/share/nmap/scripts/mysql-vuln-cve2012-2122.nse 380 | /usr/share/nmap/scripts/nat-pmp-info.nse 381 | /usr/share/nmap/scripts/nat-pmp-mapport.nse 382 | /usr/share/nmap/scripts/nbd-info.nse 383 | /usr/share/nmap/scripts/nbstat.nse 384 | /usr/share/nmap/scripts/ncp-enum-users.nse 385 | /usr/share/nmap/scripts/ncp-serverinfo.nse 386 | /usr/share/nmap/scripts/ndmp-fs-info.nse 387 | /usr/share/nmap/scripts/ndmp-version.nse 388 | /usr/share/nmap/scripts/nessus-brute.nse 389 | /usr/share/nmap/scripts/nessus-xmlrpc-brute.nse 390 | /usr/share/nmap/scripts/netbus-auth-bypass.nse 391 | /usr/share/nmap/scripts/netbus-brute.nse 392 | /usr/share/nmap/scripts/netbus-info.nse 393 | /usr/share/nmap/scripts/netbus-version.nse 394 | /usr/share/nmap/scripts/nexpose-brute.nse 395 | /usr/share/nmap/scripts/nfs-ls.nse 396 | /usr/share/nmap/scripts/nfs-showmount.nse 397 | /usr/share/nmap/scripts/nfs-statfs.nse 398 | /usr/share/nmap/scripts/nje-node-brute.nse 399 | /usr/share/nmap/scripts/nje-pass-brute.nse 400 | /usr/share/nmap/scripts/nntp-ntlm-info.nse 401 | /usr/share/nmap/scripts/nping-brute.nse 402 | /usr/share/nmap/scripts/nrpe-enum.nse 403 | /usr/share/nmap/scripts/ntp-info.nse 404 | /usr/share/nmap/scripts/ntp-monlist.nse 405 | /usr/share/nmap/scripts/omp2-brute.nse 406 | /usr/share/nmap/scripts/omp2-enum-targets.nse 407 | /usr/share/nmap/scripts/omron-info.nse 408 | /usr/share/nmap/scripts/openlookup-info.nse 409 | /usr/share/nmap/scripts/openvas-otp-brute.nse 410 | /usr/share/nmap/scripts/openwebnet-discovery.nse 411 | /usr/share/nmap/scripts/oracle-brute.nse 412 | /usr/share/nmap/scripts/oracle-brute-stealth.nse 413 | /usr/share/nmap/scripts/oracle-enum-users.nse 414 | /usr/share/nmap/scripts/oracle-sid-brute.nse 415 | /usr/share/nmap/scripts/oracle-tns-version.nse 416 | /usr/share/nmap/scripts/ovs-agent-version.nse 417 | /usr/share/nmap/scripts/p2p-conficker.nse 418 | /usr/share/nmap/scripts/path-mtu.nse 419 | /usr/share/nmap/scripts/pcanywhere-brute.nse 420 | /usr/share/nmap/scripts/pcworx-info.nse 421 | /usr/share/nmap/scripts/pgsql-brute.nse 422 | /usr/share/nmap/scripts/pjl-ready-message.nse 423 | /usr/share/nmap/scripts/pop3-brute.nse 424 | /usr/share/nmap/scripts/pop3-capabilities.nse 425 | /usr/share/nmap/scripts/pop3-ntlm-info.nse 426 | /usr/share/nmap/scripts/pptp-version.nse 427 | /usr/share/nmap/scripts/puppet-naivesigning.nse 428 | /usr/share/nmap/scripts/qconn-exec.nse 429 | /usr/share/nmap/scripts/qscan.nse 430 | /usr/share/nmap/scripts/quake1-info.nse 431 | /usr/share/nmap/scripts/quake3-info.nse 432 | /usr/share/nmap/scripts/quake3-master-getservers.nse 433 | /usr/share/nmap/scripts/rdp-enum-encryption.nse 434 | /usr/share/nmap/scripts/rdp-ntlm-info.nse 435 | /usr/share/nmap/scripts/rdp-vuln-ms12-020.nse 436 | /usr/share/nmap/scripts/realvnc-auth-bypass.nse 437 | /usr/share/nmap/scripts/redis-brute.nse 438 | /usr/share/nmap/scripts/redis-info.nse 439 | /usr/share/nmap/scripts/resolveall.nse 440 | /usr/share/nmap/scripts/reverse-index.nse 441 | /usr/share/nmap/scripts/rexec-brute.nse 442 | /usr/share/nmap/scripts/rfc868-time.nse 443 | /usr/share/nmap/scripts/riak-http-info.nse 444 | /usr/share/nmap/scripts/rlogin-brute.nse 445 | /usr/share/nmap/scripts/rmi-dumpregistry.nse 446 | /usr/share/nmap/scripts/rmi-vuln-classloader.nse 447 | /usr/share/nmap/scripts/rpcap-brute.nse 448 | /usr/share/nmap/scripts/rpcap-info.nse 449 | /usr/share/nmap/scripts/rpc-grind.nse 450 | /usr/share/nmap/scripts/rpcinfo.nse 451 | /usr/share/nmap/scripts/rsa-vuln-roca.nse 452 | /usr/share/nmap/scripts/rsync-brute.nse 453 | /usr/share/nmap/scripts/rsync-list-modules.nse 454 | /usr/share/nmap/scripts/rtsp-methods.nse 455 | /usr/share/nmap/scripts/rtsp-url-brute.nse 456 | /usr/share/nmap/scripts/rusers.nse 457 | /usr/share/nmap/scripts/s7-info.nse 458 | /usr/share/nmap/scripts/samba-vuln-cve-2012-1182.nse 459 | /usr/share/nmap/scripts/script.db 460 | /usr/share/nmap/scripts/servicetags.nse 461 | /usr/share/nmap/scripts/shodan-api.nse 462 | /usr/share/nmap/scripts/sip-brute.nse 463 | /usr/share/nmap/scripts/sip-call-spoof.nse 464 | /usr/share/nmap/scripts/sip-enum-users.nse 465 | /usr/share/nmap/scripts/sip-methods.nse 466 | /usr/share/nmap/scripts/skypev2-version.nse 467 | /usr/share/nmap/scripts/smb2-capabilities.nse 468 | /usr/share/nmap/scripts/smb2-security-mode.nse 469 | /usr/share/nmap/scripts/smb2-time.nse 470 | /usr/share/nmap/scripts/smb2-vuln-uptime.nse 471 | /usr/share/nmap/scripts/smb-brute.nse 472 | /usr/share/nmap/scripts/smb-double-pulsar-backdoor.nse 473 | /usr/share/nmap/scripts/smb-enum-domains.nse 474 | /usr/share/nmap/scripts/smb-enum-groups.nse 475 | /usr/share/nmap/scripts/smb-enum-processes.nse 476 | /usr/share/nmap/scripts/smb-enum-services.nse 477 | /usr/share/nmap/scripts/smb-enum-sessions.nse 478 | /usr/share/nmap/scripts/smb-enum-shares.nse 479 | /usr/share/nmap/scripts/smb-enum-users.nse 480 | /usr/share/nmap/scripts/smb-flood.nse 481 | /usr/share/nmap/scripts/smb-ls.nse 482 | /usr/share/nmap/scripts/smb-mbenum.nse 483 | /usr/share/nmap/scripts/smb-os-discovery.nse 484 | /usr/share/nmap/scripts/smb-print-text.nse 485 | /usr/share/nmap/scripts/smb-protocols.nse 486 | /usr/share/nmap/scripts/smb-psexec.nse 487 | /usr/share/nmap/scripts/smb-security-mode.nse 488 | /usr/share/nmap/scripts/smb-server-stats.nse 489 | /usr/share/nmap/scripts/smb-system-info.nse 490 | /usr/share/nmap/scripts/smb-vuln-conficker.nse 491 | /usr/share/nmap/scripts/smb-vuln-cve2009-3103.nse 492 | /usr/share/nmap/scripts/smb-vuln-cve-2017-7494.nse 493 | /usr/share/nmap/scripts/smb-vuln-ms06-025.nse 494 | /usr/share/nmap/scripts/smb-vuln-ms07-029.nse 495 | /usr/share/nmap/scripts/smb-vuln-ms08-067.nse 496 | /usr/share/nmap/scripts/smb-vuln-ms10-054.nse 497 | /usr/share/nmap/scripts/smb-vuln-ms10-061.nse 498 | /usr/share/nmap/scripts/smb-vuln-ms17-010.nse 499 | /usr/share/nmap/scripts/smb-vuln-regsvc-dos.nse 500 | /usr/share/nmap/scripts/smb-vuln-webexec.nse 501 | /usr/share/nmap/scripts/smb-webexec-exploit.nse 502 | /usr/share/nmap/scripts/smtp-brute.nse 503 | /usr/share/nmap/scripts/smtp-commands.nse 504 | /usr/share/nmap/scripts/smtp-enum-users.nse 505 | /usr/share/nmap/scripts/smtp-ntlm-info.nse 506 | /usr/share/nmap/scripts/smtp-open-relay.nse 507 | /usr/share/nmap/scripts/smtp-strangeport.nse 508 | /usr/share/nmap/scripts/smtp-vuln-cve2010-4344.nse 509 | /usr/share/nmap/scripts/smtp-vuln-cve2011-1720.nse 510 | /usr/share/nmap/scripts/smtp-vuln-cve2011-1764.nse 511 | /usr/share/nmap/scripts/sniffer-detect.nse 512 | /usr/share/nmap/scripts/snmp-brute.nse 513 | /usr/share/nmap/scripts/snmp-hh3c-logins.nse 514 | /usr/share/nmap/scripts/snmp-info.nse 515 | /usr/share/nmap/scripts/snmp-interfaces.nse 516 | /usr/share/nmap/scripts/snmp-ios-config.nse 517 | /usr/share/nmap/scripts/snmp-netstat.nse 518 | /usr/share/nmap/scripts/snmp-processes.nse 519 | /usr/share/nmap/scripts/snmp-sysdescr.nse 520 | /usr/share/nmap/scripts/snmp-win32-services.nse 521 | /usr/share/nmap/scripts/snmp-win32-shares.nse 522 | /usr/share/nmap/scripts/snmp-win32-software.nse 523 | /usr/share/nmap/scripts/snmp-win32-users.nse 524 | /usr/share/nmap/scripts/socks-auth-info.nse 525 | /usr/share/nmap/scripts/socks-brute.nse 526 | /usr/share/nmap/scripts/socks-open-proxy.nse 527 | /usr/share/nmap/scripts/ssh2-enum-algos.nse 528 | /usr/share/nmap/scripts/ssh-auth-methods.nse 529 | /usr/share/nmap/scripts/ssh-brute.nse 530 | /usr/share/nmap/scripts/ssh-hostkey.nse 531 | /usr/share/nmap/scripts/ssh-publickey-acceptance.nse 532 | /usr/share/nmap/scripts/ssh-run.nse 533 | /usr/share/nmap/scripts/sshv1.nse 534 | /usr/share/nmap/scripts/ssl-ccs-injection.nse 535 | /usr/share/nmap/scripts/ssl-cert-intaddr.nse 536 | /usr/share/nmap/scripts/ssl-cert.nse 537 | /usr/share/nmap/scripts/ssl-date.nse 538 | /usr/share/nmap/scripts/ssl-dh-params.nse 539 | /usr/share/nmap/scripts/ssl-enum-ciphers.nse 540 | /usr/share/nmap/scripts/ssl-heartbleed.nse 541 | /usr/share/nmap/scripts/ssl-known-key.nse 542 | /usr/share/nmap/scripts/ssl-poodle.nse 543 | /usr/share/nmap/scripts/sslv2-drown.nse 544 | /usr/share/nmap/scripts/sslv2.nse 545 | /usr/share/nmap/scripts/sstp-discover.nse 546 | /usr/share/nmap/scripts/stun-info.nse 547 | /usr/share/nmap/scripts/stun-version.nse 548 | /usr/share/nmap/scripts/stuxnet-detect.nse 549 | /usr/share/nmap/scripts/supermicro-ipmi-conf.nse 550 | /usr/share/nmap/scripts/svn-brute.nse 551 | /usr/share/nmap/scripts/targets-asn.nse 552 | /usr/share/nmap/scripts/targets-ipv6-map4to6.nse 553 | /usr/share/nmap/scripts/targets-ipv6-multicast-echo.nse 554 | /usr/share/nmap/scripts/targets-ipv6-multicast-invalid-dst.nse 555 | /usr/share/nmap/scripts/targets-ipv6-multicast-mld.nse 556 | /usr/share/nmap/scripts/targets-ipv6-multicast-slaac.nse 557 | /usr/share/nmap/scripts/targets-ipv6-wordlist.nse 558 | /usr/share/nmap/scripts/targets-sniffer.nse 559 | /usr/share/nmap/scripts/targets-traceroute.nse 560 | /usr/share/nmap/scripts/targets-xml.nse 561 | /usr/share/nmap/scripts/teamspeak2-version.nse 562 | /usr/share/nmap/scripts/telnet-brute.nse 563 | /usr/share/nmap/scripts/telnet-encryption.nse 564 | /usr/share/nmap/scripts/telnet-ntlm-info.nse 565 | /usr/share/nmap/scripts/tftp-enum.nse 566 | /usr/share/nmap/scripts/tls-alpn.nse 567 | /usr/share/nmap/scripts/tls-nextprotoneg.nse 568 | /usr/share/nmap/scripts/tls-ticketbleed.nse 569 | /usr/share/nmap/scripts/tn3270-screen.nse 570 | /usr/share/nmap/scripts/tor-consensus-checker.nse 571 | /usr/share/nmap/scripts/traceroute-geolocation.nse 572 | /usr/share/nmap/scripts/tso-brute.nse 573 | /usr/share/nmap/scripts/tso-enum.nse 574 | /usr/share/nmap/scripts/ubiquiti-discovery.nse 575 | /usr/share/nmap/scripts/unittest.nse 576 | /usr/share/nmap/scripts/unusual-port.nse 577 | /usr/share/nmap/scripts/upnp-info.nse 578 | /usr/share/nmap/scripts/url-snarf.nse 579 | /usr/share/nmap/scripts/ventrilo-info.nse 580 | /usr/share/nmap/scripts/versant-info.nse 581 | /usr/share/nmap/scripts/vmauthd-brute.nse 582 | /usr/share/nmap/scripts/vmware-version.nse 583 | /usr/share/nmap/scripts/vnc-brute.nse 584 | /usr/share/nmap/scripts/vnc-info.nse 585 | /usr/share/nmap/scripts/vnc-title.nse 586 | /usr/share/nmap/scripts/voldemort-info.nse 587 | /usr/share/nmap/scripts/vtam-enum.nse 588 | /usr/share/nmap/scripts/vulners.nse 589 | /usr/share/nmap/scripts/vulscan 590 | /usr/share/nmap/scripts/vuze-dht-info.nse 591 | /usr/share/nmap/scripts/wdb-version.nse 592 | /usr/share/nmap/scripts/weblogic-t3-info.nse 593 | /usr/share/nmap/scripts/whois-domain.nse 594 | /usr/share/nmap/scripts/whois-ip.nse 595 | /usr/share/nmap/scripts/wsdd-discover.nse 596 | /usr/share/nmap/scripts/x11-access.nse 597 | /usr/share/nmap/scripts/xdmcp-discover.nse 598 | /usr/share/nmap/scripts/xmlrpc-methods.nse 599 | /usr/share/nmap/scripts/xmpp-brute.nse 600 | /usr/share/nmap/scripts/xmpp-info.nse --------------------------------------------------------------------------------