pimenta.fun lab
Tests / Origin Security / Authenticated Origin Pulls
AOP

Authenticated Origin Pulls (AOP)

Checks whether Cloudflare presented a valid client certificate to this origin — i.e. whether AOP is active for aop.pimenta.fun.

The origin runs Apache with SSLVerifyClient optional and exposes the verification result via response headers (X-AOP-Client-Verify). This page reads them and reports below. With SSLVerifyClient require, non-Cloudflare traffic is rejected outright (400).

Checking…

Reading origin TLS client-auth headers.

Details

X-AOP-Client-Verify
Client cert subject
Client cert issuer
CF-Ray

Test from the CLI

# Through Cloudflare (AOP on): Cloudflare presents its cert -> origin accepts
curl -sI https://aop.pimenta.fun/ | grep -i x-aop-client-verify
#   -> X-AOP-Client-Verify: SUCCESS

# Direct to the origin, bypassing Cloudflare: no CF client cert is sent
curl -sI --resolve aop.pimenta.fun:443:<ORIGIN_IP> https://aop.pimenta.fun/ | head
#   optional mode -> X-AOP-Client-Verify: NONE
#   require  mode -> 400 No required SSL certificate was sent

What the result means

AOP setup steps →