AIX弱口令解密
1、看下我们的AIX弱口令如果是图中的这种那么我们就可以通过以下脚本来完成转换
2、打开kali给脚本丢进去自动生成下图这种格式,转换完成后保存通过john --w来跑。
脚本文件:保存为.bash
/root/Desktop/New_AIX.sh /root/Desktop/sxsaz/ /root/
AIX脚本位置 需要转换位置 输出位置
#!/bin/bash filelist=`ls $1` for file in $filelist do cat $1/$file|egrep ":|password" | sed 's/password = //g' | tr -d "\t " |sed 's/: $/:/g' > $2/$file done
爱玩阿卡丽的小菜鸡,大佬勿喷。