当前位置:网站首页>一个网络安全小白鼠的学习之路—nmap高级用法之脚本使用
一个网络安全小白鼠的学习之路—nmap高级用法之脚本使用
2022-08-02 03:25:00 【学安全的汤姆猫】
文章目录
前言
nmap高级用法之脚本使用按照脚本分类进行扫描
nmap脚本分类:
- auth: 负责处理鉴权证书(绕开鉴权)的脚本
- broadcast: 在局域网内探查更多服务开启状况,如dhcp/dns/sqlserver等服务
- brute: 提供暴力破解方式,针对常见的应用如http/snmp等
- default: 使用-sC或-A选项扫描时候默认的脚本,提供基本脚本扫描能力
- discovery: 对网络进行更多的信息,如SMB枚举、SNMP查询等
- dos: 用于进行拒绝服务攻击
- exploit: 利用已知的漏洞入侵系统
- external: 利用第三方的数据库或资源,例如进行whois解析
- fuzzer: 模糊测试的脚本,发送异常的包到目标机,探测出潜在漏洞
- intrusive: 入侵性的脚本,此类脚本可能引发对方的IDS/IPS的记录或屏蔽
- malware: 探测目标机是否感染了病毒、开启了后门等信息
- safe: 此类与intrusive相反,属于安全性脚本
- version: 负责增强服务与版本扫描(Version Detection)功能的脚本
- vuln: 负责检查目标机是否有常见的漏洞(Vulnerability),如是否有MS08_067
一、pandas是什么?
示例:pandas 是基于NumPy 的一种工具,该工具是为了解决数据分析任务而创建的。
二、使用步骤
使用具体脚本进行扫描
nmap --script 具体脚本 192.168.36.131
常用脚本进行扫描
扫描靶机的常见漏洞
nmap --script vuln 192.168.36.131
内容太多这里就不全部放
检查FTP是否开启匿名登录
nmap --script ftp-anon 192.168.36.131
对mysql进行暴力破解
nmap --script mysql-brute 192.168.36.131
检测是否存在ms17-010漏洞
nmap --script smb-vuln-ms17-010 192.168.36.132
检测是否存在ms08-067漏洞
nmap --script smb-vuln-ms08-067
总结
nmap的script脚本很多,全部存放在/usr/share/nmap/script目录下面
这里我只是列举了一些我经常使用的,可能写的不是很清楚,说错的请大家来指出
边栏推荐
- [league/flysystem]一个优雅且支持度非常高的文件操作接口
- 批量替换文件字体,简体->繁体
- IP门禁:手把手教你用PHP实现一个IP防火墙
- TypeScript 错误 error TS2469、error TS2731 解决办法
- IO streams, byte stream and byte stream buffer
- DVWA drone installation tutorial
- PHP realizes the automatic reverse search prompt of the search box
- hackmyvm: again walkthrough
- 3.PHP数据类型、常量、字符串和运算符
- Add a full image watermark to an image in PHP
猜你喜欢
DVWA drone installation tutorial
(4) 函数、Bug、类与对象、封装、继承、多态、拷贝
TypeScript error error TS2469, error TS2731 solution
SQL:DDL、DML、DQL、DCL相应介绍以及演示
VIKINGS: 1 vulnhub walkthrough
Praying: 1 vulnhub walkthrough
13.JS输出内容和语法
(2) Thinkphp6 template engine ** tag
(1) print()函数、转义字符、二进制与字符编码 、变量、数据类型、input()函数、运算符
(5) 模块与包、编码格式、文件操作、目录操作
随机推荐
IO流、字节流、字节缓冲流
百度定位js API
Add a full image watermark to an image in PHP
1. Beginning with PHP
4.PHP数组与数组排序
When PHP initiates Alipay payment, the order information is garbled and solved
php函数漏洞总结
(1) introduction to Thinkphp6, installation view, template rendering, variable assignment
About the apache .htaccess file of tp
4.表单与输入
[mikehaertl/php-shellcommand]一个用于调用外部命令操作的库
Solve the problem of Zlibrary stuck/can't find the domain name/reached the limit, the latest address of Zlibrary
Orasi: 1 vulnhub walkthrough
14.JS语句和注释,变量和数据类型
hackmyvm-random walkthrough
MySql Advanced -- Constraints
The focus of the Dom implementation input triggers
[phpunit/php-timer]一个用于代码执行时间的计时器
解决uni-app 打包H5网站 下载图片问题
DVWA靶机安装教程