Testland
Browse all skills & agents

cache-key-discriminator-audit

Audits whether a cache key carries every discriminator the cached response actually depends on, so two requests that must not share a slot cannot collide. Ranks identity discriminators (tenant, user, authorization scope, plan tier) above presentation ones (locale, region, currency, feature flag), maps each missing discriminator to the data-exposure or wrong-content consequence it causes, classifies each key-and-value pair into a critical / high / medium severity band (including the Python lru_cache-on-an-instance-method trap), and writes the fix as a namespaced key builder plus the matching HTTP Vary header. Use when a cache key is being designed or changed, when a per-user or per-tenant response is about to be stored in a shared cache or CDN, or when investigating a report that one user or tenant saw another's data.

Install with skills.sh (any agent)

npx skills add testland/qa --skill cache-key-discriminator-audit

cache-key-discriminator-audit

The defect this finds

A cache key is a function of an operation plus a set of discriminators: the request dimensions the response body actually varies on. If the response varies on something the key does not carry, two different requests hash to the same slot and the second requester is served the first requester's response.

The worst version of this is not slow, and it is not stale. It is a data-exposure defect: one user's data served to another user. A missing tenant_id in a multi-tenant cache is a confidentiality bug with the same blast radius as a missing authorization check, because the cache is doing the serving and the authorization code never runs on the second request. Triage it as a security defect, not as a performance or freshness issue.

The exposure only reaches other people when the cache is shared. RFC 9111 §1 defines the split: "A 'shared cache' is a cache that stores responses for reuse by more than one user; shared caches are usually (but not always) deployed as a part of an intermediary", while "A 'private cache', in contrast, is dedicated to a single user" (RFC 9111 §1). A CDN, a reverse proxy, and a Redis or Memcached instance behind the application are all shared caches. A missing discriminator in any of them is a cross-user defect. The same omission in a browser cache is a correctness bug affecting one person.

Two named web-security classes sit on top of this. Web cache poisoning "manipulates cache keys to inject malicious content into a cached response, which is then served to other users", and web cache deception "exploits cache rules to trick the cache into storing sensitive or private content, which the attacker can then access" (PortSwigger, web cache deception). Poisoning is the attacker-controlled form of an under-specified key. Deception is the attacker-controlled form of a response that should never have been stored in a shared cache at all.

Keyed and unkeyed inputs

The vocabulary to audit with comes from the cache's own point of view. "Caches identify equivalent requests by comparing a predefined subset of the request's components, known collectively as the 'cache key'. Typically, this would contain the request line and Host header", and "Components of the request that are not included in the cache key are said to be 'unkeyed'" (PortSwigger, web cache poisoning).

So the audit reduces to one question per cached response:

Is every input the response body depends on keyed?

An unkeyed input that changes the body is the defect. An unkeyed input that cannot change the body is fine and should stay unkeyed, because every added discriminator fragments the cache and lowers the hit rate.

The discriminator table

Identity and authorization discriminators come first. They are the ones whose absence exposes data. Presentation discriminators come after; their absence produces wrong content, which is a correctness defect and not a disclosure.

ClassDiscriminatorWhere it lives in a requestWhat happens when it is missing from the key
Identitytenant_id / org / workspaceSubdomain, path segment, custom header, or claim inside the tokenTenant B is served tenant A's response. Cross-tenant data leak.
Identityuser_id / subjectClaim inside the session token or AuthorizationUser B is served user A's response. Per-user data leak.
AuthorizationCredential presence and valueAuthorization header, session cookieA response built for an authenticated principal is stored and replayed to an anonymous or differently-scoped requester. This is the canonical shared-cache leak.
AuthorizationRole / permission setDerived from the token server-sideA low-privilege caller is served a response rendered with admin-visible fields.
AuthorizationPlan or subscription tierDerived from the tenant recordA free-tier caller is served paid-tier content, or a paid caller is served the upsell page.
Identity-adjacentImpersonation / support-session contextCustom header set by an internal proxySupport-session output is cached and served to the real end user, or the reverse.
Content negotiationLocaleAccept-Language, cookie, path prefixWrong-language body. Also wrong pluralization and wrong legal copy.
Content negotiationCurrencyDerived from tenant, geo, or explicit selectorPrices rendered in the wrong currency, with the numeric amount unchanged.
Content negotiationRegion / geo routingCDN geo header, client IPGeo-restricted content served outside its region.
Content negotiationAccept-EncodingAccept-Encoding headerA gzip body served to a client that cannot decode it.
Content negotiationDevice class / breakpointUser-Agent, client hintsMobile markup served to desktop and back.
Content shapeFeature flag / experiment bucketCookie, header, or server-side assignmentVariant B cached and served to the whole control group, destroying the experiment and shipping unreleased UI.
Content shapeAPI or schema versionPath segment, Accept media type, custom headerv1 body decoded by a v2 client.
Content shapePagination cursor and page sizeQuery stringPage N served in place of page M.
Content shapeSort, filter, and search parametersQuery stringA filtered list served to an unfiltered request.
Content shapeTime bucket for time-relative bodiesServer clock"Expires in 3 minutes" frozen at the value it had when first cached.

Read the table as a checklist against one concrete response. For each row, answer keyed, unkeyed-and-irrelevant, or unkeyed-and-relevant. Only the third answer is a finding.

Deriving the required discriminator set

  1. Pin the response, not the endpoint. One route can produce several response shapes. Audit each shape separately.
  2. List every field in the response body. For each field, name what it was derived from: a path parameter, a query parameter, a header, a token claim, a database row scoped by tenant, or a server-side flag lookup.
  3. Promote every derivation source to a candidate discriminator. A field derived from a token claim makes that claim a candidate even though the claim never appears in the URL.
  4. Compare the candidate set to the key. Write both out literally. The key is whatever the code concatenates, or for HTTP the request line plus Host plus whatever the Vary field nominates.
  5. Classify each gap using the severity bands below.
  6. Check the tier. Confirm whether the cache holding this response is shared or private. A gap in a shared cache is a disclosure finding; the same gap in a private cache is a correctness finding one band lower.

Severity classification

The three bands below are a practitioner convention for triage order, not a standard. What is standardized is the underlying behavior each row cites.

PatternBandWhy
Key is path and arguments only; response body contains fields scoped to a tenantcriticalCross-tenant disclosure. Every tenant sharing that path shares one slot.
Key is path and arguments only; response body contains fields scoped to a usercriticalPer-user disclosure.
Response is stored in a shared cache and was built from a credential, with neither private nor a credential in the keycriticalThe next requester with no credential is served the authenticated body.
Key includes user_id but not tenant_id, and user identifiers are allocated per tenant rather than globallycriticalTwo tenants both have a user numbered 1. They share a slot. Downgrade to informational only after confirming identifiers are globally unique, such as UUIDs.
Key is complete, but the response is served through a shared cache with no Vary naming the headers the body varied onhighThe application key is right and the intermediary's key is wrong. The leak happens upstream of the code you audited.
Key includes tenant and user but omits role, permission set, or plan tier, and the body renders differently per rolehighPrivilege-scoped fields cross a privilege boundary within one tenant.
functools.lru_cache applied to an instance method on a class that defines value-based equalityhighSee the trap below. Two distinct instances that compare equal share one slot.
functools.lru_cache applied to an instance method on any classmediumThe class-level cache holds a strong reference to every self it has seen. Request-scoped objects outlive their request.
Key omits locale, currency, region, or device class where the body varies on themmediumWrong content, no disclosure.
Memoized function receives a mutable object as an argumentmediumThe entry is keyed on the object as it was at insertion; later mutation is not reflected. Depends on the object being hashable at all.
Key omits a dimension that is currently constant but is on the roadmap to varylowNot yet a defect. Record it so the key changes when the dimension does.

The lru_cache-on-an-instance-method trap

The common folk description of this bug is that self is not part of the cache key, so all instances share one entry. That is wrong, and the real mechanism matters because it changes the fix.

What the Python documentation actually says:

  • functools.cached_property "stores results at the instance level" and functools.lru_cache stores them "at the class level" (Python FAQ, how do I cache method calls?).
  • "If a method is cached, the self instance argument is included in the cache" (functools docs).
  • lru_cache "creates a reference to the instance unless special efforts are made to pass in weak references", and "instances are kept alive until they age out of the cache or until the cache is cleared" (Python FAQ).
  • The arguments "must be hashable", and "Distinct argument patterns may be considered to be distinct calls with separate cache entries" (functools docs).

So the entry is keyed on the whole argument tuple, self included, in one cache that lives on the class. Whether two instances collide therefore depends entirely on how self hashes:

  • Default classes do not collide. "Objects which are instances of user-defined classes are hashable by default. They all compare unequal (except with themselves), and their hash value is derived from their id()" (Python glossary, hashable). Identity-based hashing means each instance gets its own entries. The defect here is retention, not collision: a class-level cache pins every request-scoped object it has seen until the entry ages out of maxsize.
  • Value-equality classes do collide. "Hashable objects which compare equal must have the same hash value", and "Hashability makes an object usable as a dictionary key ... because these data structures use the hash value internally" (Python glossary). A frozen dataclass, an attrs class, or any class with a hand-written __eq__ and __hash__ opts into value-based hashing. If the fields that participate in equality omit the tenant, then a repository object for tenant A and one for tenant B compare equal, hash equal, and share every cached entry. That is a genuine cross-tenant collision, and it is invisible in the key expression because the collision happens inside __hash__.

Fixes, in order of preference:

  1. Do not cache on the instance. Make the method a module-level function and pass the discriminators explicitly as arguments, so the key is readable at the call site.
  2. Use functools.cached_property when the value is per-instance and takes no arguments. It stores at the instance level and does not create a reference to the instance, so the result is released with the instance (Python FAQ).
  3. If the method must stay cached and the class defines value equality, add the missing discriminator to the equality fields so the collision cannot form.

The fix recipe

Part 1: a key builder, not a format string

Inline f-strings drift. Route every key through one builder so the required discriminators cannot be forgotten, and so a grep for the builder enumerates every cache site.

def cache_key(*parts, tenant_id, user_id=None, locale=None, schema="v1"):
    """Namespaced cache key. tenant_id is mandatory and never defaulted."""
    if not tenant_id:
        raise ValueError("tenant_id is required for every cache key")
    segments = [f"s:{schema}", f"t:{tenant_id}"]
    if user_id is not None:
        segments.append(f"u:{user_id}")
    if locale is not None:
        segments.append(f"l:{locale}")
    segments.extend(str(p) for p in parts)
    return ":".join(segments)

Three properties earn their place:

  • tenant_id is keyword-only and raises rather than defaulting. A silently absent tenant is exactly the defect being prevented.
  • A schema segment lets a deploy that changes the response shape invalidate everything by bumping one constant, with no purge call.
  • Optional discriminators are appended only when supplied, so responses that genuinely do not vary on locale keep a single entry.

Part 2: the HTTP Vary header

For anything cached by a browser, proxy, or CDN, the key lives outside your process and the only lever you have on it is Vary.

Be precise about what Vary does. It "indicates which request header fields were used in content negotiation to determine what representation was selected", and "Caches use this field as a secondary key in cache lookups to ensure stored responses match the negotiation criteria of new requests" (RFC 9110 §12.5.5). The reuse rule is binding: a cache "MUST NOT use that stored response without revalidation unless all the presented request header fields nominated by that Vary field value match those fields in the original request" (RFC 9111 §4.1).

Cache-Control: private, max-age=300
Vary: Authorization, Accept-Language, X-Tenant-Id

Four consequences worth stating explicitly:

  • Vary nominates request header field names only. A discriminator carried in a path segment or query string is already part of the cache key through the request line. A discriminator carried nowhere in the request, such as a server-side experiment assignment, cannot be expressed in Vary at all. Move it into a request header or stop caching the response in a shared cache.
  • Vary: * is not a safe catch-all. "A stored response with a Vary header field value containing a member '*' always fails to match" (RFC 9111 §4.1), so it disables shared-cache reuse entirely rather than keying more finely.
  • private is the stronger control for credentialed responses. It "indicates that a shared cache MUST NOT store the response (i.e., the response is intended for a single user)" (RFC 9111 §5.2.2.7). Vary: Authorization still stores the body in the shared cache, one entry per credential value. Prefer private when the body carries user data and reserve Vary: Authorization for responses that are genuinely reusable within a credential.
  • private is not confidentiality. RFC 9111 §5.2.2.7 states that "This usage of the word 'private' only controls where the response can be stored; it cannot ensure the privacy of the message content." It is a cache-placement directive, not a protection.

Finally, keep the cache's own routing rules out of the extension. The OWASP Web Security Testing Guide's remediation for path-confusion driven cache deception is to "Refrain from classify/handling cached based on file extension or path (leverage content-type)", to "Ensure the caching mechanism(s) adhere to cache-control headers specified by your application", and to "Implement RFC compliant File Not Found handling and redirects" (OWASP WSTG, Test for Path Confusion). A CDN that caches by suffix will store /dashboard/x.css no matter what your Cache-Control said.

Worked example

A dashboard endpoint in a multi-tenant product, where user identifiers are allocated per tenant.

Before:

def get_dashboard(user_id):
    key = f"dashboard:{user_id}"
    if cached := redis.get(key):
        return json.loads(cached)
    data = fetch_dashboard(current_tenant_id(), user_id)
    redis.set(key, json.dumps(data), ex=300)
    return data

Step 2 of the derivation: the body contains org_name, billing_plan, and a widgets list, all read from rows scoped by current_tenant_id(). Step 3 promotes tenant_id to a candidate. Step 4 finds it unkeyed. Step 6 finds Redis is a shared cache.

Row 1 of the severity table applies: critical.

After:

def get_dashboard(tenant_id, user_id, locale):
    key = cache_key("dashboard", tenant_id=tenant_id,
                    user_id=user_id, locale=locale)
    if cached := redis.get(key):
        return json.loads(cached)
    data = fetch_dashboard(tenant_id, user_id)
    redis.set(key, json.dumps(data), ex=300)
    return data

Key before: dashboard:1. Key after: s:v1:t:acme:u:1:l:en-GB:dashboard. Tenant globex user 1 now resolves to s:v1:t:globex:u:1:l:en-GB:dashboard and cannot land in acme's slot.

If the same payload is also served over HTTP through a CDN, the response needs Cache-Control: private, max-age=300 because the body is per-user, and Vary: Accept-Language if the CDN is permitted to store any variant of it at all.

Output shape

Report one row per audited response, then expand every finding.

## Cache-key discriminator audit: <scope>

| Response | Cache tier | Keyed | Unkeyed and relevant | Band |
|---|---|---|---|---|
| `GET /dashboard` | Redis (shared) | user_id | tenant_id, locale | critical |
| `GET /feed` | CDN (shared) | path | Authorization | critical |
| `Repo.load()` | in-process lru_cache | self, id | tenant (via __eq__) | high |

### Finding 1: `GET /dashboard` omits tenant_id

**Band:** critical (cross-tenant disclosure)
**Location:** `services/dashboard.py:31`
**Cache tier:** Redis, shared across all tenants
**Response fields that forced the discriminator:** org_name,
billing_plan, widgets[] (all tenant-scoped rows)
**Current key:** `dashboard:{user_id}`
**Required key:** `s:{schema}:t:{tenant_id}:u:{user_id}:dashboard`
**Fix:** route through the key builder; tenant_id keyword-only.
**Regression test:** request the endpoint as tenant A, then as tenant
B with the same numeric user id, and assert the two bodies differ on
org_name.

Close with the actions in band order, critical first, and pair every critical finding with a regression test that would have caught it. A key fix with no test that exercises two distinct principals against the same slot is not finished.

What this audit does not cover

This audit answers one question: does the key carry every discriminator the response depends on? It deliberately excludes three neighboring concerns that get confused with it.

  • Not invalidation. Deciding when a correct entry becomes wrong, and how to remove it (purge APIs, surrogate-key tags, event-driven deletes, write-then-invalidate ordering) is a separate problem. A perfectly discriminated key can still serve stale data.
  • Not TTL policy. How long an entry may live, how tiers layer their expiry, and whether stale-while-revalidate is acceptable are freshness decisions. This audit does not read a single max-age value except where the response should not have been stored in a shared cache at all.
  • Not a coherence protocol. Keeping several tiers agreeing with each other and with the source of truth, and choosing between write-through, write-back, write-around, and cache-aside, is design work upstream of this. This audit takes the tiers as given and inspects the key each one computes.

If the symptom is "the data is old", it is invalidation or TTL. If the symptom is "the data belongs to someone else", it is this.

Limitations

  • Reading a key expression cannot prove hashing behavior. The lru_cache value-equality collision lives in __hash__ and __eq__, not in the key expression. Read the class definition, not just the decorator.
  • Vary is a request to the intermediary, not a guarantee. Whether a given CDN honors every nominated header, and whether it normalizes or strips headers before computing its own key, is vendor behavior. Verify with a live two-principal request against the edge.
  • Server-side discriminators cannot be expressed in Vary. Experiment buckets and role lookups assigned inside the application have no request header to nominate. Those responses need private, or a header the application sets on the way in.
  • The audit reports risk, not collision rate. Measuring how often two principals actually land on one slot requires production tracing of key values, which is out of scope here.