Show HN: A local MitM proxy to control TLS fingerprints

(github.com)

25 points | by ytkoka 16 hours ago ago

6 comments

  • Retr0id 14 hours ago ago

    I like to use https://github.com/LyleMi/ja3proxy which does exactly the same thing and was first written in the pre-vibe era.

  • psanford 14 hours ago ago

    There are a bunch of these tools out there. I like curl-impersonate[0] as a quick way to make curl fingerprint as chrome or firefox. There's also CylceTLS[1] for a more programmatic approach.

    [0]: https://github.com/lwthiker/curl-impersonate

    [1]: https://github.com/Danny-Dasilva/CycleTLS

    • Retr0id 13 hours ago ago

      Proxying in particular is handy.

      Often I set up a bunch of automation for a particular service, and then they "upgrade" their security to enforce fingerprint checking, and adding in a proxy is just a config change to my existing tooling.

      • ytkoka 13 hours ago ago

        Thanks — that's exactly the use case this was built for. Good to hear it fits into that workflow naturally.

  • peter_d_sherman 2 hours ago ago

    Interesting indeed!

    Observation: This, or any tool like this (any proxy which can negotiate an SSL and/or TLS connection) could be used to give simple browsers, browsers that don't implement SSL or TLS natively, SSL and/or TLS capabilities...

    (In other words, if I were going to write the simplest of all possible Web Browsers, a Web Browser solely for teaching purposes, then I'd intentionally separate its source code from SSL/TLS/encryption code. Why? Well, it would greatly reduce the lines of code in the browser, which would aid greatly in making that source code easier to read/understand. SSL/TLS/Encryption could be implemented in a separate local proxy server, much like the one above, and the simple browser would gain the ability to make SSL/TLS/Encrypted connections through it, while keeping all of that additional code separate... also, on that note, JavaScript processing (all browser code necessary to run JavaScript) could also be separated into it own local server...)

    So yes, again, very interesting!

  • abadwy 9 hours ago ago

    Interesting