Were you able to get away with just the free package? I see the packages have varying levels of bot protection.
Were you able to get away with just the free package? I see the packages have varying levels of bot protection.
It's set at thirty minutes here instead of the default 5 and a few thousand real unique visitors over 30 minutes is entirely possible.skybound wrote: Wed May 07, 2025 7:35 pm Yup, looks like phpbb is also suffering. Currently 3082 guests.![]()
The free package is quite good. Something you'll get with Pro plan or better that is useful for these issues is better rate limiting options and the automated malicious bot detection is more effective. The main tool at your disposal free or paid is the WAF where you can create rules. You only get five rules with free plan but each rule can have multiple conditions.skybound wrote: Thu May 08, 2025 6:22 am Were you able to get away with just the free package? I see the packages have varying levels of bot protection.
ASN >> Equals >> {ASN Number} OR
ASN >> Equals >> {ASN Number} OR
ASN >> Equals>> ? .......
Country >> Equals >> CN OR
Country >> Equals >> IN OR
Country >> Equals>> ? .......
End result is any IP from that networks range is blocked, India and China visitors need to click the box or whatever is issued, the US and UK get nothing and the rest of the world get the "checking your browser" pageCountry >> Does not equal >> US AND
Country >> Does not equal >> UK AND
Country >> Does not equal >> ? AND.......
Thanks. Have been using Cloudbric this last week, but have to use the DDoS captcha to kill the bots which forces that whole browser check adding about 5 second delay when first visiting the site.
Easy solution there, how much legitimate traffic do you have coming from HK? Probably none. So either block that country code in Cloudflare and/or in .htaccess as well. Apache's code for blocking country codes in the positive in .htaccess is...dontcoz wrote: Thu May 08, 2025 11:59 am Untitled.png
i've never seen anything like it. Most of the requests were coming to phpbb files like posting.php, viewtopic.php etc. i had to activate attack mode on CF. Most bots were from HK. i wonder if phpbb can do more to prevent things like this.
Code: Select all
<IfModule mod_geoip.c>
RewriteEngine on
RewriteCond %{ENV:GEOIP_COUNTRY_CODE} ^(HK)$
RewriteRule ^(.*)$ - [F]
</IfModule>
Looks like it will take a while for the Cloudflare changes to go thru Right now I am gettingSQLnovice wrote: Thu May 08, 2025 3:08 am I think you're in your DNS Records tab. Try the Name Servers tab instead. There you'll be able to change the name servers to Cloudflare's name servers.
Error code 524 is an HTTP status code indicating that a timeout occurred, meaning the server took too long to respond to a request. This error often happens with Cloudflare when the server is under heavy load or not properly configured.LePaul wrote: Thu May 08, 2025 3:42 pmLooks like it will take a while for the Cloudflare changes to go thru Right now I am gettingSQLnovice wrote: Thu May 08, 2025 3:08 am I think you're in your DNS Records tab. Try the Name Servers tab instead. There you'll be able to change the name servers to Cloudflare's name servers.
A timeout occurred Error code 524
So maybe that self resolves soon? My forum is http://www.3dprintingforum.us/
That's interesting, can you guide me a bit - how?thecoalman wrote: Thu May 08, 2025 5:38 pm It may take a while for the DNS to propagate, in the meantime the bots will still be hitting the server directly.
To fully take advantage of CF you can firewall off ports 80 and 443 except for CF IP's. This is critical step for full DDOS protection because they can go around CF with local DNS if they know the IP of origin server. Shouldn't be necessary for run of the mill out of control bots. It's only important when it's purposeful attack.