Security events and WAF logs
Where the AS number, country and Reference ID of each blocked request come from.
Open the topicCDN.com.tr Help
Two account-wide blacklists on the same panel: block whole countries by country code, or block whole networks by autonomous system number. A blocked visitor gets the branded 403 page with a Reference ID.
Cache, security, WAF, and purge
Two account-wide blacklists on the same panel: block whole countries by country code, or block whole networks by autonomous system number. A blocked visitor gets the branded 403 page with a Reference ID.
They answer different questions: where the visitor is, versus whose network they are on.
Both lists are blunt by design. Sizing the block is the part worth thinking about.
Start from what actually hit the site, not from a reputation list.
Expected result: You have a short list of AS numbers or country codes with evidence behind each one.
cdnctl waf logs --account <account_uuid> --range 1d
cdnctl waf logs --account <account_uuid> --range 7d --format json
Country Blacklist Manager and ASN Blacklist Manager sit next to each other in Security defaults.
Expected result: The list is saved, a deploy is queued, and the edge starts denying requests from those networks.
GET /api/accounts/<account_uuid>/asn_blacklist
POST /api/accounts/<account_uuid>/asn_blacklist_update
{"listType":"blacklist","asns":[12735,47331]}
A blacklist you cannot verify is a blacklist you will be afraid to touch later.
Expected result: Requests from the listed networks get the branded 403; everything else is unaffected.
curl -sI https://www.example.com/ (from a host on the blocked AS)
curl -sI https://www.example.com/ (from anywhere else)
Scrapers, credential-stuffing bots, or a flood of junk requests arrive from datacenter and proxy networks rather than from consumer ISPs. Blocking the country would punish real customers; blocking the AS number takes out the network the abuse actually rides on.