RSSAmplifier

Blog

lwt hiker

Random thoughts about software, hacking and other things.

lwthiker.comRSS feed ↗6 posts

Latest posts

HTTP/2 fingerprinting: A relatively-unknown method for web fingerprinting

HTTP/2 fingerprinting is a method by which web servers can identify which client is sending the request to them1. It can identify the browser type and version, for instance, or whether a script is used. The method relies on the internals of the HTTP/2 protocol which are less widely known that those of its simpler predecessor HTTP/1.1. In this post I will first give a short description of the…

TLS fingerprinting: How it works, where it is used and how to control your signature

In this two-part series of posts I would like to expand about server-side browser fingerprinting. Server-side fingerprinting is a collection of techniques used by web servers to identify which web client is making a request based on network parameters sent by the client. By web client I mean the type of client, as in which browser or CLI tool, and not a specific user like what a cookie identifies.

Firefox appears to be flagged as suspicious by Cloudflare

Update: Cloudflare’s response indicates that this is a customer-specific rule and not a global policy. They did not mention what kind of rule is triggering this behavior though.

Impersonating Chrome, too

This is a continuation of the previous post. If you didn’t read it, please go ahead and read at least until the TL;DR section. In summary, various web services perform TLS fingerprinting to identify whether you run a real browser like Chrome or Firefox or whether it is a tool like curl or a Python script. I created curl-impersonate, a modified version of curl that performs TLS handshakes which are…

Making curl impersonate Firefox

Update: The second part about impersonating Chrome is up.

Analyzing a stock exchange’s API

This was a fun afternoon reverse engineering project so I figured I’d write a bit about it.