Changeset 1556052
- Timestamp:
- 12/16/2016 10:19:40 AM (9 years ago)
- Location:
- ose-firewall/trunk
- Files:
-
- 4 edited
-
classes/Library/vsscanstat/vsscanstat.php (modified) (1 diff)
-
ose_firewall_badge.php (modified) (1 diff)
-
ose_wordpress_firewall.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ose-firewall/trunk/classes/Library/vsscanstat/vsscanstat.php
r1460069 r1556052 563 563 $this->db->setQuery($query); 564 564 $result = $this->db->loadArrayList(); 565 $this->updateMarkAsCleanList($result); 566 } 567 568 private function updateMarkAsCleanList($result) 569 { 565 570 $filePath = CENTRORABACKUP_FOLDER . ODS . "markasclean.php"; 566 file_put_contents($filePath, '<?php $whitelist = ' . var_export($result, true) . ';'); 571 if(file_exists($filePath)) 572 { 573 $whitelist = $this->getWhiteListFiles(); 574 $temp = array_merge($whitelist,$result); 575 file_put_contents($filePath, '<?php $whitelist = ' . var_export($temp, true) . ';'); 576 }else { 577 file_put_contents($filePath, '<?php $whitelist = ' . var_export($result, true) . ';'); 578 } 579 } 580 581 private function getWhiteListFiles() 582 { 583 $whitelist = null; 584 $filePath = CENTRORABACKUP_FOLDER . ODS . "markasclean.php"; 585 if(file_exists($filePath)){ 586 require($filePath); 587 } 588 return $whitelist; 567 589 } 568 590 -
ose-firewall/trunk/ose_firewall_badge.php
r1543739 r1556052 4 4 Description: Plugin For Showing Centrora Security Badge 5 5 Author: Centrora Security 6 Version: 6.5.1 46 Version: 6.5.15 7 7 */ 8 8 //include(dirname(__FILE__).'/includes/oseBadgeWidget.php'); -
ose-firewall/trunk/ose_wordpress_firewall.php
r1543739 r1556052 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: 6.5.1 47 Version: 6.5.15 8 8 Author URI: http://www.centrora.com/ 9 9 */ -
ose-firewall/trunk/readme.txt
r1543739 r1556052 6 6 Requires at least: 3.7 7 7 Tested up to: 4.5.2 8 Stable tag: 6.5.1 48 Stable tag: 6.5.15 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 164 164 165 165 == Changelog == 166 167 = 6.5.15 = 168 * Fixed mark as clean doesn't work correctly on schedule scanning issues 166 169 167 170 = 6.5.14 =
Note: See TracChangeset
for help on using the changeset viewer.