端口和域名

一、端口範圍(1~65535)

常用端口

HTTP服務:80

HTTPS服務:443

FTP服務:21

SSH服務:22

MySQL服務:3306

端口掃瞄器

NMap

	Linux  CentOS中使用
	安裝
		yum -y install nmap	
常用命令
	nmap 191.2.168.1.1.1/24    													掃描一個網段端口
	nmap 191.2.168.1.1.2 191.2.168.1.1.5    								掃描多個目標
	nmap 191.2.168.1.1.1-100														掃描1~100的所有主機
	nmap -iL target.txt																	掃描文件中保存的主機
	nmap -sL 191.2.168.1.1.1/24													掃描所有主機的列表
	nmap  191.2.168.1.1.1/24  -exclude 191.2.168.1.1.1				掃描排除某一ip外的所有子網主機
	nmap 191.2.168.1.1.1/24  -exclude file target.txt					掃描排除某一文件中的IP外的所有子網主機

ZMap

安裝
	apt-get install libgmp3-dev libpcap-dev gengetopt
	wget https://github.com/zmap/zmap/archive/v1.1.0.1.3.tar.gz
	tar -zxvf v1.1.0.1.3.tar.gz
	cd zmap-1.1.0.3/src
	make && make install
	檢驗安裝幫助
	zmap --help
	掃描示例
	zmap -p 443

二、域名

域名搜索工具

	1.Layer
	2.wydomain
		github:https://github.com/ring04h/wydomain

域名註冊信息反查

	http://whois.chinaz.com/

ICP備案查詢

	http://www.miitbeian.gov.cn/

搜索域名地址關鍵字查詢

	site:www.php.cn inurl:python   搜索php.cn 包含python關鍵字的鏈接
	工具類 :“御劍掃描器”
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章