English 中文(简体)
我的当地机器如何使用I Sniff/Listen HTTP? [闭门]
原标题:how do I Sniff/Listen HTTP on my local machine? [closed]

我要向Sniff/Listen介绍80项请求/答复。

可使用<代码>。 TIdHTTPServer? 如果是,那么如何?

Edit: I want my application to listen on browser activity (it can be IE, Chrome, FF etc...) and get all the media links (images, movies). something like MediaPluck

与媒体人物的“问题”是,你需要改变其网络浏览器组合中的代理服务器,我认为这是一个坏的想法。

最佳回答

不得使用<代码>。 TIdHTTPServer or TIdHTTPProxyServer to sniff HTTP transport without changinging browser/client context tolink. 这正是菲德勒所做的——临时改变WinInet的代理环境(IE使用WinInet,从而透明地进行改建)。 你们要求的是网络次系统低级传播,例如WinPCap/Ethereal做些什么。

问题回答

您可使用<代码>TIdHTTPServer书写代理服务器。 但是,只有当你在网络浏览器上配置这一代理服务器时,这种“传播”才会奏效。

<>>>>>

In case you want to write another Fiddler ;-) see this answer: Any resource/codes on how fiddler works?

<><>UPDATE 2

根据你的提问最新情况,你有两个选择。

Remy指出,WinInet代理环境有变化。 例如,见这一问题,你只需要将代码从C++翻译成Delphi:C++/ WinInet Change Proxy ConsWindows 7

或书写窗户司机,支持采集包装。 但这似乎更糟的是媒体应用。

I can be done with Fiddler or FiddlerCore





相关问题
determining the character set to use

my delphi 2009 app has a basic translation system that uses GNUGetText. i had used some win API calls to prepare the fonts. i thought it was working correctly until recently when someone from Malta ...

Help with strange Delphi 5 IDE problems

Ok, I m going nuts here. For the last (almost) four years, I ve been putting up with some extremely bad behavior from my Delphi 5 IDE. Problems include: Seemingly random errors in coride50.bpl ...

How to write a Remote DataModule to run on a linux server?

i would like to know if there are any solution to do this. Does anyone? The big picture: I want to access data over the web, using my delphi thin clients. But i´would like to keep my server/service ...

How convert string to integer in Oxygene

In Delphi, there is a function StrToInt() that converts a string to an integer value; there is also IntToStr(), which does the reverse. These functions doesn t appear to be part of Oxygene, and I can ...

Quick padding of a string in Delphi

I was trying to speed up a certain routine in an application, and my profiler, AQTime, identified one method in particular as a bottleneck. The method has been with us for years, and is part of a "...

热门标签