• The default language of any content posted is English.
    Do not create multi-accounts, you will be blocked!
Project SECURITY – Website Security, Anti-Spam & Firewall

Project SECURITY – Website Security, Anti-Spam & Firewall 5.0.6

raz0r

owner
Staff member
Administrator
Moderator
Messages
21,579
Files
6106
Reactions
83,253
raz0r submitted a new resource:

Project SECURITY – Website Security, Anti-Spam & Firewall - Website Security, Anti-Spam & Firewall (Codecanyon ID: 15487703)

View attachment 6439

Project SECURITY is a powerful website security app that will protect your website from hackers, attacks and other threats. It will protect your website from SQLi Attacks (SQL Injections), XSS Vulnerabilities, Proxy Visitors, VPN Visitors, TOR Visitors, Spam and many other types of threats.

Project SECURITY uses an intelligent algorithms (similar to the ones used by major industry companies) to detect all known hacker attacks as well as new...

Read more about this resource...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: LSDeep
raz0r updated Project SECURITY – Website Security, Anti-Spam & Firewall with a new update entry:

Project SECURITY v4.9.9 – Website Security, Anti-Spam & Firewall

4 January 2023 – Version 4.9.9

  • Added compatibillity with PHP 8.1 and PHP 8.2
  • Improved SQL Injection protection module page
  • Improved Proxy protection module page
  • Improved PHP Configuration Check tool
  • Code quality improvements
  • Fixed bugs
  • Optimized source code (Performance Improvements)

Read the rest of this update entry...
 
raz0r 's signature
Reacted by:
  • Like
Reactions: Bossoff and Amaditech
thank you for share!
after install , login dashboard , goto system info display:
Warning: foreach() argument must be of type array|object, bool given in /www/mydomain.com/system-info.php on line 183
open your system-info.php find line 183
PHP:
foreach ($dir as $obj) {
replace to
PHP:
foreach ((array)$dir as $obj) {
save and refresh !

Warning: Uncaught DivisionByZeroError: Division by zero in /www/mydomain.com/system-info.php on line 341
find line 340-342
PHP:
    @$used = $total - $free;
    @$free_percent = round(100 / ($total / $free), 2);
    @$used_percent = round(100 / ($total / $used), 2);
replace to
PHP:
    if ($total != 0 || $free != 0) {
    @$used = $total - $free;
    @$free_percent = round(100 / ($total / $free), 2);
    @$used_percent = round(100 / ($total / $used), 2);
    }else{
    @$used = 'Unknown';
    @$free_percent = 'Unknown';
    @$used_percent = 'Unknown';
    }
my server is centos+php8.1+mysql5.7

under PHP7 without any error
 
Last edited:
Reacted by:
raz0r 's signature
Reacted by:
raz0r 's signature
Reacted by:
try it !
Does that mean you're just going to sit there with your hand out and your mouth open, waiting for people to do everything for you, when the script has already been provided?
No offense intended!
In my country, these people are called 'handout seekers'!
If you attempt to launch a verbal attack on me, in our country, these people are called 'keyboard warriors'!
Just kidding! Don't be angry.
 
raz0r 's signature
Reacted by:
raz0r 's signature
Reacted by:
Top