I created a policy in Cloudflare Zero Trust to block domains that match the regex of
(rarbg|unblockninja|1337x|torrentbay|unblockit|extratorrent|yts)
But I can still access websites like rarbg.to
I tried the follow regex, but it still didn’t work
rarbg|unblockninja|1337x|torrentbay|unblockit|extratorrent|yts
How can I fix this?
albert
June 5, 2022, 8:33am
#2
Works fine on my end. Have you created a DNS policy as seen below?
Are the domains blocked if you use DoH?
$ curl -H 'accept: application/dns-json' 'https://<gateway_subdomain>.cloudflare-gateway.com/dns-query?name=rarbg.to'
{
"Status": 0,
"TC": false,
"RD": true,
"RA": true,
"AD": false,
"CD": false,
"Question": [
{
"name": "rarbg.to",
"type": 1
}
],
"Answer": [
{
"name": "rarbg.to",
"type": 1,
"TTL": 60,
"data": "0.0.0.0"
}
]
}
3 Likes
Thank you, Albert. It’s working now. I think it was a glitch or something.
albert
June 5, 2022, 9:02am
#4
Policies can take a few minutes to update when using WARP. I’ve found that saving the policy change, waiting 10 seconds and then running warp-cli disconnect && warp-cli rotate-keys && warp-cli connect
causes policies to be applied immediately.
2 Likes
system
closed
June 8, 2022, 9:02am
#5
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.