Plugin Directory

Changeset 1860176


Ignore:
Timestamp:
04/18/2018 05:46:55 AM (8 years ago)
Author:
osexcel
Message:

Centrora Joomla 7.3.4

Location:
ose-firewall/trunk
Files:
6 edited

Legend:

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

    r1844703 r1860176  
    110110        $menu .= '<ul class="dropdown-menu">';
    111111
     112        $menu .= '<li ';
     113        $menu .= ($view == 'mfscan') ? 'class="active"' : '';
     114        $menu .= '><a href="index.php?option=' . $extension . '&view=mfscan">' . oLang::_get('MF_SCAN') . '</a></li>';
     115
    112116        if (JOOMLA15 == false) {
    113117            $menu .= '<li ';
     
    115119            $menu .= '><a href="index.php?option=' . $extension . '&view=vlscan">' . oLang::_get('Vl_SCAN') . '</a></li>';
    116120        }
    117         $menu .= '<li ';
    118         $menu .= ($view == 'mfscan') ? 'class="active"' : '';
    119         $menu .= '><a href="index.php?option=' . $extension . '&view=mfscan">' . oLang::_get('MF_SCAN') . '</a></li>';
    120121
    121122        $menu .= '<li ';
  • ose-firewall/trunk/classes/Library/oseFirewallWordpress.php

    r1821941 r1860176  
    9898
    9999        $menu .= '<li ';
     100        $menu .= ($view == 'ose_fw_mfscan') ? 'class="active"' : '';
     101        $menu .= '><a href="admin.php?page=ose_mfscan">' . oLang::_get('MF_SCAN') . '</a></li>';
     102
     103        $menu .= '<li ';
    100104        $menu .= ($view == 'ose_fw_vlscan') ? 'class="active"' : '';
    101105        $menu .= '><a href="admin.php?page=ose_fw_vlscan">' . oLang::_get('Vl_SCAN') . '</a></li>';
    102 
    103         $menu .= '<li ';
    104         $menu .= ($view == 'ose_fw_mfscan') ? 'class="active"' : '';
    105         $menu .= '><a href="admin.php?page=ose_mfscan">' . oLang::_get('MF_SCAN') . '</a></li>';
    106106
    107107        $menu .= '<li ';
  • ose-firewall/trunk/classes/Library/vlscanner/vlscanner.php

    r1814810 r1860176  
    238238        foreach ($vulScanList['scanlist'] as $key => $value) {
    239239            if (OSE_CMS == 'wordpress') {
    240                 $url = 'https://wpvulndb.com/api/v1/' . $value['urltype'] . '/' . $value['slug'];
     240                //$url = 'https://wpvulndb.com/api/v1/' . $value['urltype'] . '/' . $value['slug'];
     241                $url = UPDATE_API."Exploitdb/checkVulnWP?type=" . $value['urltype'] . "&check=lkjunKKJB788GH&domain=".$_SERVER['HTTP_HOST'];
    241242            } elseif (OSE_CMS == 'joomla') {
    242                 $url = API_SERVER."Exploitdb/checkVulnJL?type=" . $value['type']
    243                     . "&slug=" . $value['slug'] . "&slug_type=" . $value['localtype'] . "&check=lkjunKKJB788GH";
     243                $url = UPDATE_API."Exploitdb/checkVulnJL?type=" . $value['type']
     244                    . "&slug=" . $value['slug'] . "&slug_type=" . $value['localtype'] . "&check=lkjunKKJB788GH&domain=".$_SERVER['HTTP_HOST'];
    244245            }
    245246            $jsonData = $this->getJsonData($url);
  • ose-firewall/trunk/ose_firewall_badge.php

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

    r1851560 r1860176  
    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.3.3
     7Version: 7.3.4
    88Author URI: http://www.centrora.com/
    99*/
  • ose-firewall/trunk/public/messages/en_US.php

    r1824315 r1860176  
    664664define('CORE_SCAN_TITLE', '<b>Core Directories </b> <span><b>Scanner</b>');
    665665define('CORE_SCAN_DESC', 'Core directories Scanner is a neat and quick detector, it scans the core directories of your website and detects suspicious files. Please notice that this scanner only applies to joomla and wordpress.');
    666 define('Vl_SCAN', 'Vulnerabilities Scanner');
     666define('Vl_SCAN', 'Vulnerabilities Scanner <span class="premium">Premium</span>');
    667667define('Vl_SCAN_TITLE', '<b>Vulnerabilities Scanner</b>');
    668668define('Vl_SCAN_DESC', 'Vulnerabilities Scanner is a powerful vulnerability detector. It scans through your website and detects any real vulnerabilities. Credits to WPScan Vulnerability.');
Note: See TracChangeset for help on using the changeset viewer.