Chrome远程调试

最近接触到Chrome远程调试相关内容,记录一下。

场景:使用Chrome远程调试Chromium。当能够控制目标主机执行命令之后,可以在该主机上建立全局代理,然后在自己这一边开启浏览器监听,接着在目标机器上执行 chrome.exe --remote-debugging-port=xxxx 这样的命令,在对方浏览网页的同时,自己这边也能获取到浏览网页所对应的 Cookie、Local Storage 等信息。

文章目录

    • 最近接触到Chrome远程调试相关内容,记录一下。
      • 1.打开Chrome调试设置页面,chrome://inspect/#devices
      • 2.点击Configure,设置监听的端口,测试用例11010,点击Done保存
      • 3.程序控制打开Chromium
      • 4.Chromium查看知乎redis页面,调试端Chrome也可以看的到:
      • 5.Chrome点击 inspect,进入到 F12 页面,查看 Cookies、Local Storage 等信息:
      • 6.netstat -ano 看看监听的指定端口和Chromium是否对应

1.打开Chrome调试设置页面,chrome://inspect/#devices

Chrome远程调试_第1张图片

2.点击Configure,设置监听的端口,测试用例11010,点击Done保存

Chrome远程调试_第2张图片

3.程序控制打开Chromium

Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = config.PathChromeExe;
StringBuilder sbArgument = new StringBuilder();
sbArgument.Append("--remote-debugging-port=11010");
process.StartInfo.Arguments = sbArgument.ToString();

process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardInput = false;
process.StartInfo.RedirectStandardOutput = false;
process.StartInfo.RedirectStandardError = false;
process.StartInfo.CreateNoWindow = true;

//开启进程
process.Start();

4.Chromium查看知乎redis页面,调试端Chrome也可以看的到:

Chrome远程调试_第3张图片
Chrome远程调试_第4张图片

5.Chrome点击 inspect,进入到 F12 页面,查看 Cookies、Local Storage 等信息:

6.netstat -ano 看看监听的指定端口和Chromium是否对应

Chrome远程调试_第5张图片
Chrome远程调试_第6张图片

你可能感兴趣的:(chrome,前端,Chrome远程调试)