Plugin Directory

Changeset 1961022


Ignore:
Timestamp:
10/23/2018 03:52:24 AM (7 years ago)
Author:
osexcel
Message:

Centrora Joomla 7.4.8

Location:
ose-firewall/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ose-firewall/trunk/classes/Library/fwscannerv7/fwscannerv7.php

    r1892670 r1961022  
    16961696                $content = $temp_content;
    16971697            }
     1698            $content = $this->removeUselessContent($content);
    16981699            $contenttoput = "<?php\n" . '$attackrecord = ' . var_export($content, true) . ";";
    16991700            $result = file_put_contents($filepath, $contenttoput);
     
    41534154        return json_decode($resp);
    41544155    }
     4156    protected function removeUselessContent($content){
     4157        if(empty($content)){
     4158            return $content;
     4159        }
     4160        $temp_conent = array();
     4161        foreach ($content as $array){
     4162            foreach ($array as $key => $val){
     4163                if($key == 'useragent' || $key == 'attack'){
     4164                    unset($array[$key]);
     4165                }
     4166            }
     4167            $temp_conent[] = $array;
     4168        }
     4169        return $temp_conent;
     4170    }
    41554171}
    41564172
  • ose-firewall/trunk/ose_firewall_badge.php

    r1936614 r1961022  
    44   Description: Plugin For Showing Centrora Security Badge
    55   Author: Centrora Security
    6    Version: 7.4.7
     6   Version: 7.4.8
    77*/
    88include(dirname(__FILE__).'/includes/oseBadgeWidget.php');
  • ose-firewall/trunk/ose_wordpress_firewall.php

    r1936614 r1961022  
    55Description: Centrora Security (previously OSE Firewall) - A WordPress Security Firewall plugin created by Centrora. Protect your WordPress site by identify any malicious codes, spam, virus, SQL injection, and security vulnerabilities.
    66Author: Centrora (Previously ProWeb)
    7 Version: 7.4.7
     7Version: 7.4.8
    88Author URI: http://www.centrora.com/
    99*/
Note: See TracChangeset for help on using the changeset viewer.