Challenge (CAPTCHA) on WHMCS login page

Hello, i’m using Cloudflare firewall (JS challenge) to prevent DDos but seems that they cannot mitigated at all , i’m reciving a lot of SPAM From different IP each second on 2 link:
mydomain.com//billing/clientarea.php
mydomain.com/billing/dologin.php

So i would like to add Cloudflare captcha on clientarea path… i’ve create a new rule:

(http.request.full_uri eq “www.mydomain.info/billing/clientarea.php” and http.request.full_uri eq “mydomain.info/billing/clientarea.php”)`

but seems doesn’t work… i’ve also tried with URI PATH and HOSTNAME on expression editor… but seems doens’t work too… what i’m missing?

That full_uri requires a proper URI, which includes the scheme as well. You better take uri.path

(http.request.uri.path eq "/billing/clientarea.php")

This topic was automatically closed after 14 days. New replies are no longer allowed.