I am trying to make all visitors JS Challenged except from North America and Known Bots. Are either of the below rules correct:
(ip.geoip.continent ne “NA” and not cf.client.bot) then JS Challenge
(ip.geoip.continent ne “NA” or not cf.client.bot) then JS Challenge
Any help will be appreciated!
It’s been over a week and no reply…Any help will be appreciated!
You would need the AND operator.
If you ARE in NA, the rule won’t challenge. If you ARE a Known Bot, the rule won’t challenge. If you are NOT in NA, you will be challenged because you’re NOT a known bot (if you’re a known bot anywhere, you’re already allowed).
So below should work:
When incoming requests match…
Continent does not equal North America
And
Known Bots equals Off
Then…
JS Challenge
Thanks for the reply!
1 Like
system
Closed
August 8, 2021, 6:29pm
5
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.