Changeset 3142203
- Timestamp:
- 08/27/2024 10:32:39 AM (19 months ago)
- Location:
- upkepr-maintenance/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
upkepr_vulnerability.php (modified) (2 diffs)
-
vulnerability.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
upkepr-maintenance/trunk/readme.txt
r3140393 r3142203 5 5 Tested up to: 6.6 6 6 Requires PHP: 5.6 7 Stable tag: 1.0. 47 Stable tag: 1.0.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 72 72 === Changelog === 73 73 74 = 1.0.5 = 75 * Vulnerabilities details fetch with updated data 76 * Health report with more seo data 77 74 78 = 1.0.4 = 75 79 * Stable health reports -
upkepr-maintenance/trunk/upkepr_vulnerability.php
r3140383 r3142203 263 263 $recommendedDataReports = $responseData->recommendation; 264 264 $data = isset($recommendedDataReports->reponse_data) ? json_decode($recommendedDataReports->reponse_data) : ""; 265 if (empty($data)){266 return false; 267 } 265 if (empty($data)) { 266 } else { 267 268 268 $site_url = site_url(); 269 269 $languageSugges = ''; … … 1084 1084 </div> 1085 1085 </section> 1086 1086 <?php } ?> 1087 1087 <script> 1088 1088 jQuery(document).ready(function() { 1089 /* jQuery("#copyButton").click(function() {1090 var hrefToCopy = jQuery("#textToCopy").attr("data-title");1091 var tempInput = document.createElement("input");1092 document.body.appendChild(tempInput);1093 tempInput.value = hrefToCopy;1094 tempInput.select();1095 document.execCommand("copy");1096 document.body.removeChild(tempInput);1097 1098 var notification = jQuery("#copyNotification");1099 var button = jQuery("#copyButton");1100 notification.css({1101 left: (button.offset().left) + "px"1102 });1103 notification.fadeIn(200).delay(1000).fadeOut(200);1104 }); */1105 1106 1107 1089 var averageScore = '<?= $averageScore ?>'; 1108 1090 if (averageScore < 90 && averageScore >= 50) { -
upkepr-maintenance/trunk/vulnerability.php
r3140393 r3142203 16 16 * Plugin Name: Vulnerability Detector 17 17 * Description: "Vulnerability Detector" is a WordPress plugin that allows Upkepr applications to stay connected with the website. 18 * Version: 1.0. 418 * Version: 1.0.5 19 19 * Author: Upkepr 20 20 * Author URI: https://upkepr.com/ … … 974 974 $rerDataArgs = array( 975 975 'body' => $body_data, 976 'timeout' => 1 5,976 'timeout' => 120, 977 977 'httpversion' => '1.0', 978 978 'data_format' => 'body',
Note: See TracChangeset
for help on using the changeset viewer.