Changeset 1824315
- Timestamp:
- 02/19/2018 05:22:25 AM (8 years ago)
- Location:
- ose-firewall/trunk
- Files:
-
- 7 edited
-
classes/Library/panel/panel.php (modified) (4 diffs)
-
ose_firewall_badge.php (modified) (1 diff)
-
ose_wordpress_firewall.php (modified) (1 diff)
-
public/css/main.css (modified) (1 diff)
-
public/js/VersionAutoUpdate.js (modified) (2 diffs)
-
public/js/dashboard.js (modified) (1 diff)
-
public/messages/en_US.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ose-firewall/trunk/classes/Library/panel/panel.php
r1821941 r1824315 53 53 // Close request to clear up some resources 54 54 curl_close($curl); 55 if($this->live_url == "https://update-api.centrora.com/download/updateFWPattern")55 if($this->live_url == UPDATE_API."/download/updateFWPattern") 56 56 { 57 57 $temp = json_decode($resp); … … 223 223 } 224 224 } 225 $this->live_url = "https://update-api.centrora.com/download/updateFWPattern";225 $this->live_url = UPDATE_API."/download/updateFWPattern"; 226 226 $content = array(); 227 227 $content['webkey'] = $this->getWebKey(); … … 924 924 protected function getJSPackage($cms,$zipFileName){ 925 925 $domain = $_SERVER['HTTP_HOST']; 926 $url = "https://update-api.centrora.com/download/getPackage?webkey=".$this->getWebKey ()."&domain=".$domain."&cms=".$cms;926 $url = UPDATE_API."/download/getPackage?webkey=".$this->getWebKey ()."&domain=".$domain."&cms=".$cms; 927 927 // Define Temp Folder; 928 928 $config = JFactory::getConfig(); … … 949 949 protected function getWPPackage($cms,$zipFileName){ 950 950 $domain = $_SERVER['HTTP_HOST']; 951 $url = "https://update-api.centrora.com/download/getPackage?webkey=".$this->getWebKey ()."&domain=".$domain."&cms=".$cms;951 $url = UPDATE_API."/download/getPackage?webkey=".$this->getWebKey ()."&domain=".$domain."&cms=".$cms; 952 952 $tmp_dest = CENTRORABACKUP_FOLDER; 953 953 $updatefile = $this->downloadThroughCURL ($url, $tmp_dest, $zipFileName); -
ose-firewall/trunk/ose_firewall_badge.php
r1821941 r1824315 4 4 Description: Plugin For Showing Centrora Security Badge 5 5 Author: Centrora Security 6 Version: 7.3. 06 Version: 7.3.1 7 7 */ 8 8 include(dirname(__FILE__).'/includes/oseBadgeWidget.php'); -
ose-firewall/trunk/ose_wordpress_firewall.php
r1821941 r1824315 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. 07 Version: 7.3.1 8 8 Author URI: http://www.centrora.com/ 9 9 */ -
ose-firewall/trunk/public/css/main.css
r1814810 r1824315 6724 6724 margin-right: 30px; 6725 6725 } 6726 6727 .premium { 6728 position: static; 6729 box-shadow: none; 6730 color: #ffaa21; 6731 border: 1px solid #ffaa21; 6732 background-color: transparent; 6733 font-weight: 400; 6734 margin-left: 5px; 6735 padding: 0px 6px !important; 6736 font-size: 10px; 6737 } -
ose-firewall/trunk/public/js/VersionAutoUpdate.js
r1814810 r1824315 24 24 callback: function () { 25 25 showLoadingStatus(O_UPDATE); 26 runAutoUpdate(Updateurl, upgradeplugin, activateurl); 26 //runAutoUpdate(Updateurl, upgradeplugin, activateurl); 27 getPackage(Updateurl, upgradeplugin, activateurl); 27 28 } 28 29 }, … … 101 102 }); 102 103 } 104 function getPackage(Updateurl, upgradeplugin, activateurl) { 105 jQuery(document).ready(function($){ 106 jQuery.ajax ({ 107 url: url, 108 type: "POST", 109 data: { 110 option : option, 111 controller:'subscription', 112 action: 'updatePackage', 113 task: 'updatePackage', 114 centnounce: $('#centnounce').val() 115 }, 116 success: function(output) { 117 if (activateurl != null && document.readyState === "complete"){ //only run this part in the wordpress version where we have to activate the plugin after updating 118 hideLoadingStatus (); 119 activateWordpressPlugin(activateurl); 120 } else { 121 hideLoadingStatus (); 122 location.reload(); 123 } 124 } 125 }); 126 }); 127 } -
ose-firewall/trunk/public/js/dashboard.js
r1814810 r1824315 118 118 }, 60000); 119 119 retrieveScanningResult(); 120 retrieveBackupResult();120 //retrieveBackupResult(); 121 121 checkWebBrowsingStatus(); 122 122 -
ose-firewall/trunk/public/messages/en_US.php
r1814810 r1824315 156 156 define('COMPLETED','Completed'); 157 157 define('YOUR_SYSTEM_IS_CLEAN','Your system is clean.'); 158 define('VSREPORT', ' Scan Result <small>(Premium)</small>');158 define('VSREPORT', 'Virus Scanning Results <span class="premium">Premium</span>'); 159 159 define('SCANREPORT_TITLE','<b>Scan</b> <span><b>Report</b></span>'); 160 160 define('SCANREPORT_DESC','Display the infected files last scanned by the virus scanner'); … … 661 661 662 662 // Version 5.1.0 663 define('CORE_SCAN', ' Core Directories Scanner <small>(Premium)</small>');663 define('CORE_SCAN', 'Hacked System Files Detector <span class="premium">Premium</span>'); 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.'); … … 690 690 define('UPLOAD_FILE_403WARN2', 'You are uploading a suspicous file(file content <strong>does not</strong> match file extension). <br /> <br />If you are the server administrator, please notice that this is a suspicious file.'); 691 691 define('SETSCANPATH', 'Set Scan Path'); 692 define('SURF_SCAN', ' MD5 Hash Scanner');692 define('SURF_SCAN', 'Backdoor Scanner <span class="premium">Premium</span>'); 693 693 define('SURF_SCAN_TITLE', '<b>MD5 Hash Scanner</b>'); 694 694 define('SURF_SCAN_DESC', 'MD5 Hash Scanner checks for all known viruses and malware. It is recommended that if nothing is detected you use the Dynamic Scanner'); 695 define('DEEPSCAN', ' Dynamic Scanner <small>(Premium)</small>');695 define('DEEPSCAN', 'Virus Scanner <span class="premium">Premium</span>'); 696 696 define('SURF_SCAN_SIG_UPDATED', 'Your MD5 Hash Scanner signatures have been updated!'); 697 697 define('SURF_SCAN_SIG_UPTODATE', 'Great! Your MD5 Hash Scanner signatures are up-to-date.'); … … 751 751 define('COUNTRYBLOCK_DESC_SLOGAN', 'Simply subscribe to a plan and stop spammers traffic<br> from a specific country immediately.'); 752 752 define('ANTIVIRUS_DESC_SLOGAN', 'Dig out the well-hidden virus / malicious codes in your website within minutes.<br>'. OSE_WORDPRESS_FIREWALL .' Dynamic Virus Scanner can help you'); 753 define('CORE_SCAN_DESC_SLOGAN', 'Detect underlying malware and modified core files more efficiently<br> by checking current core files against the original ones.');753 define('CORE_SCAN_DESC_SLOGAN', 'Detect hacking attacks towards the website, block out suspicious activities and protect the website from malware codes.'); 754 754 define('SCANREPORT_DESC_SLOGAN', 'Review, clean, quarantine and delete malware and malicious codes,<br> get your site back on track within minutes.'); 755 755 define('CRONJOBS_DESC_SLOGAN', 'Set up schedule tasks for automatic Virus Scanning and Backup.');
Note: See TracChangeset
for help on using the changeset viewer.