Changeset 3460657
- Timestamp:
- 02/13/2026 10:27:10 AM (6 days ago)
- Location:
- vulnity/trunk
- Files:
-
- 3 edited
-
includes/class-core.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
-
vulnity.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vulnity/trunk/includes/class-core.php
r3460003 r3460657 450 450 } 451 451 452 $whitelist_ips = array('127.0.0.1', '::1'); 453 if ($public_ip_whitelist !== '' && filter_var($public_ip_whitelist, FILTER_VALIDATE_IP)) { 454 $whitelist_ips[] = $public_ip_whitelist; 455 } 456 $whitelist_ips = array_values(array_unique($whitelist_ips)); 457 452 458 $args = array( 453 459 'body' => json_encode(array( … … 457 463 'wordpress_version' => get_bloginfo('version'), 458 464 'php_version' => PHP_VERSION, 459 'site_url' => get_site_url() 465 'site_url' => get_site_url(), 466 'whitelist_ips' => $whitelist_ips, 460 467 )), 461 468 'headers' => array('Content-Type' => 'application/json'), -
vulnity/trunk/readme.txt
r3460281 r3460657 4 4 Tested up to: 6.9 5 5 Requires PHP: 7.4 6 Stable tag: 1.1. 86 Stable tag: 1.1.9 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 68 68 69 69 == Changelog == 70 = 1.1.9 = 71 * Send whitelist IPs (user public IP + localhost) to the SIEM during pairing so the whitelist persists after synchronization. 72 70 73 = 1.1.8 = 71 74 * Fixed Nginx warning notice appearing repeatedly on every admin page load; it now displays only once. … … 119 122 120 123 == Upgrade Notice == 124 = 1.1.9 = 125 Whitelist IPs are now sent to the SIEM during pairing to prevent them from being lost on sync. 126 121 127 = 1.1.8 = 122 128 Nginx warning now shows only once and includes a link to the solution documentation. -
vulnity/trunk/vulnity.php
r3460281 r3460657 3 3 * Plugin Name: Vulnity Security 4 4 * Description: Security monitoring and SIEM integration for WordPress 5 * Version: 1.1. 85 * Version: 1.1.9 6 6 * Author: Vulnity 7 7 * License: GPL-2.0-or-later … … 13 13 if (!defined('ABSPATH')) exit; 14 14 15 define('VULNITY_VERSION', '1.1. 8');15 define('VULNITY_VERSION', '1.1.9'); 16 16 17 17 $vulnity_plugin_dir = plugin_dir_path(__FILE__);
Note: See TracChangeset
for help on using the changeset viewer.