Akamai Bot Manager internals Measured notes on the sensor, the payload and the edge

Akamai Bot Manager internals

Akamai Bot Manager runs at the CDN edge. There is no third-party origin: the sensor script, the telemetry sink, the pixel challenge and any interstitial come from the customer's own hostname, injected or proxied by the edge. Identifying it on a page is a matter of URL shape, cookie shape and script content, never a vendor domain.

These pages describe what the client does and how the edge answers, measured against live builds. Numbers come from decoded payloads, instrumented runs and requests sent to production endpoints. Where a claim is inference rather than measurement, it says so.

Hostnames, cookie values, API keys and script paths are redacted. Formats, field names, constants and algorithms are not: they are the useful part, and they rotate per build anyway.

What runs on the page

piecewhat it is
sensora large obfuscated script that instruments the page and produces sensor_data, either posting it itself or handing it to the page through bmak.get_telemetry()
pixel challengea small separate client seeded by an inline bazadebezolkohpepadr integer, posting an unencrypted form body
sec-cpta proof-of-work interstitial, configured through the sensor rather than as its own client

A protected document usually carries several tags at once:

<script src="/GcvTpQmXd/PWnq4Rt/8k/<config-segment>/Zr91ke2sqA/LxNU/Qj4PH2sB"></script>
<script>bazadebezolkohpepadr="1320943881"</script>
<script src="/akam/13/4ebc0144"></script>
<script src="/akam/13/pixel_4ebc0144?a=<base64>"></script>

The opaque multi-segment path is the live sensor on current configurations. The /akam/<generation>/<hash> pair is the older delivery style; on several properties it is the pixel client only, and on others it is inert.

The verdict is layered

The edge does not make one decision, it makes four, in order:

Reading order

Read edge surface to know what you are looking at, then sensor_data format for how a payload is framed and encrypted, then oracles for how to tell whether anything you built was actually read. If the question is "what does this report about my automation", go straight to automation markers.

Scope

This is client-side observation of a defence: what the script reads, how it packages it, and what the edge does with the result. It is written for people building detection, testing properties they own, or trying to understand what a bot-management verdict is made of.