惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
Secure Thoughts
罗磊的独立博客
T
The Blog of Author Tim Ferriss
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
Last Week in AI
Last Week in AI
美团技术团队
Google Online Security Blog
Google Online Security Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
D
Docker
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
小众软件
小众软件
月光博客
月光博客
L
LINUX DO - 最新话题
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
W
WeLiveSecurity
H
Heimdal Security Blog
Vercel News
Vercel News
SecWiki News
SecWiki News
Forbes - Security
Forbes - Security
Blog — PlanetScale
Blog — PlanetScale
Google DeepMind News
Google DeepMind News
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
www.infosecurity-magazine.com
www.infosecurity-magazine.com
TaoSecurity Blog
TaoSecurity Blog
T
Troy Hunt's Blog
A
About on SuperTechFans
C
Check Point Blog
S
Security Affairs
Hacker News - Newest:
Hacker News - Newest: "LLM"
AI
AI
WordPress大学
WordPress大学
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Help Net Security
Help Net Security
博客园_首页
The Last Watchdog
The Last Watchdog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
Engineering at Meta
Engineering at Meta
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
I
Intezer
K
Kaspersky official blog
M
MIT News - Artificial intelligence
J
Java Code Geeks
G
GRAHAM CLULEY
P
Palo Alto Networks Blog

Kali's Blog

不会找漏洞 试试Nuclei这款神器 Kali Linux部署Codex 开发学习两不误 浅谈OpenVpn原理及一键部署 超低成本,搭建自己的户外气象基站! Windows Server 2025安装指南 新手必看! 【故障解决】Kali Linux桌面图标丢失和文字乱码 Hermes接BurpSuite 法力无边!(附视频教学) 除了Kali Linux 这些渗透系统你知道吗? Hermes 修改MSF特征 轻松逃逸安全软件 这些常见的反编译工具 你用过吗? 社工密码字典生成工具Cupp Kali 配置HexStrike AI 进行安全测试 Kali Linux 如何正确更新系统? 一款跨平台C2工具-Havoc Kali Linux 2026.1都更新了什么? ESP-Claw零代码玩转物联网
Windows中查看已连接WiFi密码 这些技能你知道吗?
博主: 逍遥子 · 2026-05-29 · via Kali's Blog
工作和生活中我们可能会常常忘记家里或者办公室的WiFi密码。或者想看看我们的设备都连接过那些WiFi,他们的密码又是什么?本文将为你解答!

🐼01通过转储的WiFi凭证

假设我们想要查看当前连接的wifi密码,并且没有任何第三方工具。那么我们会怎么做?我们只需依次查看网络连接->无线属性 ->安全->显示字符

但是这样做,只能查看方便的查看当前连接的WiFi密码。假设我要看所有连掅过的WiFi密码,有什么好办法呢?
我们只需要在cmd中执行下面命令即可。

netsh wlan show profile

如下,我们得到了本机连接过的所有WiFi名称。

那又如何查看指定WiFi的密码呢?很简单,接着执行命令:

netsh wlan show profile 在水一方足浴 key=clear

关键内容就是我们所要查询的WiFi密码。

🐾02 利用Powershell 的 Netsh

同样的道理,我们还可以利用Powershell来查询所有连接过的WiFi密码。

(netsh wlan show profiles) | Select-String “\:(.+)$” | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name=”$name” key=clear)} | Select-String “Key Content\W+\:(.+)$” | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ PROFILE_NAME=$name;PASSWORD=$pass }} | Format-Table -AutoSize | Out-File $env:USERPROFILE\Desktop\Log.txt

这样会把所有的WiFi名称和密码存放到log.txt文件中。

🐳03利用Wifi Password Revelar

如果你记不住上面繁杂的命令,同时又懒得动手搞。我们可以下载安装Wifi Password Revelar这款软件,轻松搞定!

效果

同样的,还有Sterjo Wireless Passwords这款软件,不仅用于恢复丢失的 wifi 密码,也能够检测到附近的WiFi网络并开始破解这些密码。

🐝04 Lazgane  kiwi

在渗透中,我们得到了msfconsole的反弹,我们可以利用mimikatz`kiwi`Lazgane等工具获取Windows中的所有明文密码,当然也包含了WiFi密码。

执行命令

lazagne wifi

利用kiwi

getsystem
load kiwi
wifi_list_shared

🕸️05 通过 Post Exploitation 模块

类似地,在metasploit 框架中有一个后期利用模块,通过它我们可以转储远程主机上所有可用的 wlan配置文件。收到远程主机的meterpreter会话后,执行以下命令。

use post/windows/wlan/wlan_profile
set session
exploit

更多精彩文章 公注我们


本文首发于微信公众号,原文链接:Windows中查看已连接WiFi密码 这些技能你知道吗?


版权属于:逍遥子大表哥

本文链接:https://blog.bbskali.cn/4885.html

按照知识共享署名-非商业性使用 4.0 国际协议进行许可,转载引用文章应遵循相同协议。

赞赏作者

可怜可怜吧!正在沿街乞讨~