CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 1 of 1

Threaded View

  1. #1
    Join Date
    Feb 2011
    Posts
    32

    Make application's data being sent through a proxy

    Hi, I've got an application that only sends http requests and I wanted to send them through a proxy. I don't have access to the source code though, so is there any way I could do this? And if I had access to the source code, how would I do that? I didn't find much on google...

    EDIT: Ok I think I figured it out. I'm gonna explain for anyone who may have the same question (I wish everyone did that). After sniffing firefox's packets when using a proxy, I saw that it sends the normal request to the proxy, but with the full path (example: GET http://www.google.com/index.php instead of just GET /index.php). Now I'm gonna make a DLL and substitute the app's WSASend calls with my DLL function.
    Last edited by Toshioo; February 23rd, 2011 at 12:16 PM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured