当我使用nmap扫描IP时,会打印日志:
Starting Nmap 7.70 ( https://nmap.org ) at 2019-04-05 10:27 ?D1ú±ê×?ê±??
NSE: Loaded 148 scripts for scanning.
NSE: Script Pre-scanning.
Initiating NSE at 10:27
Completed NSE at 10:27, 0.00s elapsed
Initiating NSE at 10:27
Completed NSE at 10:27, 0.00s elapsed
Initiating Ping Scan at 10:27
Scanning 103.23.43.1 [4 ports]
Completed Ping Scan at 10:27, 1.12s elapsed (1 total hosts)
Initiating Parallel DNS resolution of 1 host. at 10:27
Completed Parallel DNS resolution of 1 host. at 10:27, 1.31s elapsed
Initiating SYN Stealth Scan at 10:27里面有很多NSE,它的意思是什么?
发布于 2019-07-28 06:31:12
如果您导航到
cd /usr/share/nmap/scripts 您将在Kali Linux中看到一堆预装脚本。这就是你如何在nmap中使用它们。
nmap --scripts=ssh.brute.nse TargetIpAdress在同一个目录中,如果键入
nano ssh-brute.nse您将访问脚本以更改某些选项。
您还可以从github下载nse脚本。这是其中的两个。
git clone https://github.com/scipag/vulscan
git clone https://github.com/vulnersCom/nmap-vulners这些脚本的实现略有不同。在这些脚本的目录中
nmap --script vulscan targetIpAddresshttps://unix.stackexchange.com/questions/510612
复制相似问题