开发者

How to get Title, cookies, and post data for all tabs in IE

开发者 https://www.devze.com 2022-12-14 08:10 出处:网络
I need a way to get Following data for all Tabs of IE : Titles of all Tab instances. Post Data when a form is submitted.

I need a way to get Following data for all Tabs of IE :

  1. Titles of all Tab instances.
  2. Post Data when a form is submitted.
  3. All Cookies

Actually my client wants to keep tab on his employees surfing behaviors, he has this requirement. I am not sure how i can do this.I guess it will be done in VC++/Delphi,Any technology will do as long as its able to produce a single executable 开发者_如何学Gofor this.

Any help would be appreciated.

Regards

Gaurav Verma


I don't think this is a good method to observe the employee's (besides the privacy issues). I would suggest to get logging from either the proxy server or the firewall.


Going after a specific browser has some limitations. First, you will have to stay on top of every change that the vendor makes to the browser...since the web is so dynamic and is still evolving, expect to have your program break often with every release. Second, its easy to bypass security by installing a different browser, and there are even some that will run completely off of a USB stick without any "footprint" on the local machine.

That said, I'm not sure going after cookies and post data is worth the effort, but the best solution would be to use a proxy service of some type (could even be on the workstation itself). You could also use a traffic monitoring program (for instance Wireshark) to track specific requests based on filters, but this will not "crack open" any HTTPS/FTPS streams as they are encrypted.

A Browser Helper Object would work, but again is limited to a specific browser.

0

精彩评论

暂无评论...
验证码 换一张
取 消