开发者

A proxy that acts as a man-in-the-middle between my tool (which only supports http) and https sites?

I've got a tool which I need to use开发者_JS百科 with a https site, but it only supports http. I need some kind of proxy tool that can work as a man in the middle between my tool and the https site, making the requests seem like http to the tool. The connection would look like this: Tool -> HTTP -> Proxy -> HTTPS -> Site -> HTTPS -> Proxy -> HTTP -> Tool

Does anyone know of a tool or something I can set up that will work for this purpose? I've already asked in a few IRC channels and searched Google, but I was honestly not sure how to word it when searching Google, and not sure which channel to ask in via IRC.

Any help would be greatly appreciated!


Fiddler (www.fiddler2.com) has this capability; you can change the URL from HTTP to HTTPS on the fly.


Try cUrl. If your tool works with stdin/out, You can pipe your tool's stdin/out through curl. Also there is the library (libCurl) that you can use from within your code, if needed.


WebScarab might do it for you. It can act as a man-in-the-middle and you can alter requests on the fly.


Got any objection to an entire copy of Apache httpd with mod_proxy operating as a reverse proxy? Plausible instructions here.


"Stunnel can allow you to secure non-SSL aware daemons and protocols (like POP, IMAP, LDAP, etc) by having Stunnel provide the encryption, requiring no changes to the daemon's code."

There is also a guide on their site to wrap HTTP requests with Stunnel.


Looks like this SSL MITM proxy can do exactly what you're asking.

0

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜