This extension hijacks Burp's HTTP and TLS stack, allowing you to spoof any browser TLS fingerprint (JA3). It boosts the power of Burp Suite while reducing the likelihood of fingerprinting by various WAFs like CloudFlare, PerimeterX, Akamai, DataDome, etc.
It does this without resorting to hacks, reflection or forked Burp Suite Community code. All code in this repository only leverages Burp's official Extender API.
This is just one example. If you tested with another dedicated bot detection site, let me know your results!
Unfortunately Burp's Extender API is very limited for more advanced use cases like this, so I had to play around with it to make this work.
Once a request comes in, the extension intercepts it and forwards it to a local HTTPS server that started in the background (once the extension loaded). This server works like a proxy; it forwards the request to the destination, while persisting the original header order and applying a customizable TLS configuration. Then, the local server forwards the response back to Burp. The response header order is also preserved.
Configuration settings and other necessary information like the destination server address and protocol are sent to the local server per request by a magic header. This magic header is stripped from the request before it's forwarded to the destination server, of course.
ℹ️ Another option would've been to code an upstream proxy server and connect burp to it, but I personally needed an extension for customization and portability.
- Download the jar file for your operating system from releases. You can also download a fat jar, which works on all platforms supported by Awesome TLS. This means it's also portable and could be loaded from a USB for cross-platform access.
- Open burp (pro or community), go to Extender > Extensions and click on 'Add'. Then, select
Java
as the extension type and browse to the jar file you just downloaded. Click 'Next' at the bottom, and it should load the extension without any errors. - Check your new 'Awesome TLS' tab in Burp for configuration settings and start hacking!
This extension is 'plug and play' and should speak for itself. You can hover with your mouse over each field in the 'Awesome TLS' tab for more information about each field.
To load your custom Client Hello, you can capture it in Wireshark, copy client hello record as hex stream and paste it into the field "Hex Client Hello".
This extension was developed with JetBrains IntelliJ (and GoLand) IDE. The build instructions below assume you're using the same tools to build. See workflows for the target programming language versions.
- Compile the go package within
./src-go/
. Runcd ./src-go/server && go build -o ../../src/main/resources/{OS}-{ARCH}/server.{EXT} -buildmode=c-shared ./cmd/main.go
, replacing{OS}-{ARCH}
with your OS and CPU architecture and{EXT}
with your platform's preferred extension for dynamic C libraries. For example:linux-x86-64/server.so
. See the JNA docs for more info about supported platforms. - Compile the GUI form
SettingsTab.form
into Java code viaBuild > Build project
. - Build the jar with Gradle:
gradle buildJar
.
You should now have one jar file (usually located at ./build/libs
) that works with Burp on your operating system.
Special thanks to the maintainers of the following repositories:
And the creators of the following websites: