Changeset 1860176
- Timestamp:
- 04/18/2018 05:46:55 AM (8 years ago)
- Location:
- ose-firewall/trunk
- Files:
-
- 6 edited
-
classes/Library/oseFirewallJoomla.php (modified) (2 diffs)
-
classes/Library/oseFirewallWordpress.php (modified) (1 diff)
-
classes/Library/vlscanner/vlscanner.php (modified) (1 diff)
-
ose_firewall_badge.php (modified) (1 diff)
-
ose_wordpress_firewall.php (modified) (1 diff)
-
public/messages/en_US.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ose-firewall/trunk/classes/Library/oseFirewallJoomla.php
r1844703 r1860176 110 110 $menu .= '<ul class="dropdown-menu">'; 111 111 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 112 116 if (JOOMLA15 == false) { 113 117 $menu .= '<li '; … … 115 119 $menu .= '><a href="index.php?option=' . $extension . '&view=vlscan">' . oLang::_get('Vl_SCAN') . '</a></li>'; 116 120 } 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>';120 121 121 122 $menu .= '<li '; -
ose-firewall/trunk/classes/Library/oseFirewallWordpress.php
r1821941 r1860176 98 98 99 99 $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 '; 100 104 $menu .= ($view == 'ose_fw_vlscan') ? 'class="active"' : ''; 101 105 $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>';106 106 107 107 $menu .= '<li '; -
ose-firewall/trunk/classes/Library/vlscanner/vlscanner.php
r1814810 r1860176 238 238 foreach ($vulScanList['scanlist'] as $key => $value) { 239 239 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']; 241 242 } 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']; 244 245 } 245 246 $jsonData = $this->getJsonData($url); -
ose-firewall/trunk/ose_firewall_badge.php
r1851560 r1860176 4 4 Description: Plugin For Showing Centrora Security Badge 5 5 Author: Centrora Security 6 Version: 7.3. 36 Version: 7.3.4 7 7 */ 8 8 include(dirname(__FILE__).'/includes/oseBadgeWidget.php'); -
ose-firewall/trunk/ose_wordpress_firewall.php
r1851560 r1860176 5 5 Description: 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. 6 6 Author: Centrora (Previously ProWeb) 7 Version: 7.3. 37 Version: 7.3.4 8 8 Author URI: http://www.centrora.com/ 9 9 */ -
ose-firewall/trunk/public/messages/en_US.php
r1824315 r1860176 664 664 define('CORE_SCAN_TITLE', '<b>Core Directories </b> <span><b>Scanner</b>'); 665 665 define('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 ');666 define('Vl_SCAN', 'Vulnerabilities Scanner <span class="premium">Premium</span>'); 667 667 define('Vl_SCAN_TITLE', '<b>Vulnerabilities Scanner</b>'); 668 668 define('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.