系统安全——弱口令检测Joth the Ripper软件工具+端口NMAP工具

通过对shadow文件的口令分析,检测密码
官网:http://www.openwall.com/john/

(1)解压该压缩包
tar -zxvf john-1.8.0.tar.xz

(2.)cd john-1.8.0/src

(3.)安装软件工具(前提是gcc gcc-c++ 已安装以及yum仓库已建好)
make clean linux-x86-64

(4.)复制密码文件
cp /etc/shadow ./shadow.txt

(5.)执行工具
./john shadow.txt

(6.)分析密码
./john --show shadow.txt

17.端口检测 NMAP 工具

格式:nmap 扫描类型 选项 扫描目标

扫描类型:-sT TCP链接扫描全开

-sU UDP扫描

-sP ICMP扫描

-sV 扫描服务版本信息(检查是否存活)

yum install nmap -y 安装NMAP软件包
系统安全——弱口令检测Joth the Ripper软件工具+端口NMAP工具_第1张图片
选项:-n 禁止DNS反向解析

-p 指定端口号

你可能感兴趣的:(系统安全——弱口令检测Joth the Ripper软件工具+端口NMAP工具)