Freeware local proxy engine for Windows?

55,831

Solution 1

Guess I'm a bit late to the party, but you should check out cntlm. I believe it satisfies almost all your criteria.

Solution 2

Can't believe I forgot Squid: free, open source, runs on windows and supports NTLM authentication. There is a native windows port of squid available in binary.

Privoxy will also work and is free, but it doesn't support NTLM authentication.

Solution 3

In the past when I needed a proxy to allow a screenscraping script to talk to corporate servers that require NTLM authentication, I downloaded NTLM Authorization Proxy Server and it worked very well. You can get version 0.9.9.6 here.

I don't believe that it runs in the system tray, however you could try using SRVANY to change it into a service.

The only other way that I know which might work is curl but I'm not sure if this can just function as a general proxy. Go to the curl man page and scroll down to --proxy-ntlm

Share:
55,831

Related videos on Youtube

Tomalak
Author by

Tomalak

I know a bit about SQL, Regular Expressions, XSLT, ColdFusion, JavaScript, scripting in general.

Updated on September 17, 2022

Comments

  • Tomalak
    Tomalak over 1 year

    Is there a nice and small, freeware proxy application that runs in the system tray?

    It should support HTTP and HTTPS proxy connections, NTLM authentication and configurable rules (different proxy servers for different hosts).

    Bonus karma if it can NTLM-authenticate anonymous requests passing through it.

    • Admin
      Admin over 14 years
      Are you asking for software that runs as a web proxy or software that changes your browser proxy settings?
    • Admin
      Admin over 14 years
      Can a browser switcher tool support HTTP? In other words: A software that acts as a proxy, of course. ;-)
    • Admin
      Admin over 10 years
      WinGate is a full-blown proxy which provides a free license for 3 users.
    • Admin
      Admin over 9 years
      Another one: Proxomitron. Supports an upstream proxy and offers configurable ad filtering and HTTP header filtering.
    • Admin
      Admin almost 8 years
      note that as of 27 May 2016, WinGate is free for 10 concurrently-connected users. Disclaimer, I work for Qbik who are the authors of WinGate.
  • Tomalak
    Tomalak over 14 years
    Looks like we have a winner for the bonus karma. This is really interesting, I'll look into it today!
  • Tomalak
    Tomalak over 14 years
    Squid would be an option, but I fear it is too heavy-weight in terms of resource consumption and configuration/maintenance effort. Does it even run on a Windows box?
  • Azad Zain
    Azad Zain over 14 years
    Does this support authentication of the client with the proxy, or just pass through NTLM to the 3rd party website?
  • Azad Zain
    Azad Zain over 14 years
    I added a link to the windows binary above. There would be some configuration effort, but I think the feature set can be whittled down to the point where it doesn't take too much runtime overhead.
  • Rich Bradshaw
    Rich Bradshaw over 14 years
    I use Squid on a mac, takes about 20MB of memory and not much processor. I don't notice the overhead. It's just me using it though with no cache.
  • Tomalak
    Tomalak over 14 years
    Hm... Too bad. a) It is a Python application, and will be no Python on the machines I intend to use it on, and b) it supports NTLM only if I put username/password in clear-text into the config. I thought of something that simply uses the current user's credentials.
  • Tomalak
    Tomalak over 14 years
    Can Squid take anonymous requests and turn them into NTLM authenticated ones for the upstream proxy? I intend to use it to enable legacy applications through the corporate proxy server.
  • Tomalak
    Tomalak over 14 years
    Wow this one sure looks useful. I'll give it a try as soon as time permits. :-)
  • Tomalak
    Tomalak over 14 years
    So. This one is pretty close. It suffers from a few issues, though. 1) It does not transparently authenticate the logged-on user, instead it relies on a hardcoded username/password combination in config file. 2) It does upstream proxy authentication only, it cannot authenticate against an IIS webserver. 3) It does not pass-through authenticated requests from NTLM-capable clients (if such a thing is even possible)
  • Tomalak
    Tomalak over 14 years
    Apart from that it is pretty sweet. A light-weight proxy server that can run as a Windows service, is quite configurable and handles proxy authentication easily. Not quite what I was looking for, sadly. Especially I'm missing a rule engine that decides whether or not to use a proxy server for certain requests.
  • Pinpin
    Pinpin over 14 years
    Maybe you should try downloading the source and add the rules engine ;)
  • Tomalak
    Tomalak about 2 years
    I'm truly sorry for never accepting this answer in almost 13 years. I did not mean to - it has been an honest oversight. In fact, I'm still using cntlm to this day.