Plugin Directory

Changeset 3460657


Ignore:
Timestamp:
02/13/2026 10:27:10 AM (6 days ago)
Author:
manuelgalan
Message:

Corregir error de que no se ponia la ip en whitelist al hacer el enlace

Location:
vulnity/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • vulnity/trunk/includes/class-core.php

    r3460003 r3460657  
    450450        }
    451451       
     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
    452458        $args = array(
    453459            'body' => json_encode(array(
     
    457463                'wordpress_version' => get_bloginfo('version'),
    458464                'php_version' => PHP_VERSION,
    459                 'site_url' => get_site_url()
     465                'site_url' => get_site_url(),
     466                'whitelist_ips' => $whitelist_ips,
    460467            )),
    461468            'headers' => array('Content-Type' => 'application/json'),
  • vulnity/trunk/readme.txt

    r3460281 r3460657  
    44Tested up to: 6.9
    55Requires PHP: 7.4
    6 Stable tag: 1.1.8
     6Stable tag: 1.1.9
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6868
    6969== 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
    7073= 1.1.8 =
    7174* Fixed Nginx warning notice appearing repeatedly on every admin page load; it now displays only once.
     
    119122
    120123== Upgrade Notice ==
     124= 1.1.9 =
     125Whitelist IPs are now sent to the SIEM during pairing to prevent them from being lost on sync.
     126
    121127= 1.1.8 =
    122128Nginx warning now shows only once and includes a link to the solution documentation.
  • vulnity/trunk/vulnity.php

    r3460281 r3460657  
    33 * Plugin Name: Vulnity Security
    44 * Description: Security monitoring and SIEM integration for WordPress
    5  * Version: 1.1.8
     5 * Version: 1.1.9
    66 * Author: Vulnity
    77 * License: GPL-2.0-or-later
     
    1313if (!defined('ABSPATH')) exit;
    1414
    15 define('VULNITY_VERSION', '1.1.8');
     15define('VULNITY_VERSION', '1.1.9');
    1616
    1717$vulnity_plugin_dir = plugin_dir_path(__FILE__);
Note: See TracChangeset for help on using the changeset viewer.