Changeset 3327799
- Timestamp:
- 07/14/2025 08:09:29 PM (8 months ago)
- Location:
- stop-user-enumeration
- Files:
-
- 12 edited
- 1 copied
-
tags/1.7.5 (copied) (copied from stop-user-enumeration/trunk)
-
tags/1.7.5/changelog.txt (modified) (1 diff)
-
tags/1.7.5/includes/vendor/composer/installed.php (modified) (2 diffs)
-
tags/1.7.5/includes/vendor/composer/platform_check.php (modified) (1 diff)
-
tags/1.7.5/languages/stop-user-enumeration.pot (modified) (2 diffs)
-
tags/1.7.5/readme.txt (modified) (2 diffs)
-
tags/1.7.5/stop-user-enumeration.php (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/includes/vendor/composer/platform_check.php (modified) (1 diff)
-
trunk/languages/stop-user-enumeration.pot (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/stop-user-enumeration.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
stop-user-enumeration/tags/1.7.5/changelog.txt
r3315979 r3327799 1 1 == Changelog == 2 = 1.7.5 = 3 * Added PHP 8.4 compatibility 4 * Updated wp-env configuration to use PHP 8.4 5 * Added PHP 8.4 compatibility checks to build process 6 7 = 1.7.4 = 8 * fix changelog 9 2 10 = 1.7.3 = 3 11 * Fixed URL-encoding bypass vulnerability in REST API protection -
stop-user-enumeration/tags/1.7.5/includes/vendor/composer/installed.php
r3315979 r3327799 2 2 'root' => array( 3 3 'name' => 'fullworks/stop-user-enumeration', 4 'pretty_version' => 'v1.7. 4',5 'version' => '1.7. 4.0',6 'reference' => ' 9cd863225735486704216cf2e1ef7073b57e9283',4 'pretty_version' => 'v1.7.5', 5 'version' => '1.7.5.0', 6 'reference' => '1c87157e6ea9735c4a6788f963302f092200a4bd', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../../', … … 30 30 ), 31 31 'fullworks/stop-user-enumeration' => array( 32 'pretty_version' => 'v1.7. 4',33 'version' => '1.7. 4.0',34 'reference' => ' 9cd863225735486704216cf2e1ef7073b57e9283',32 'pretty_version' => 'v1.7.5', 33 'version' => '1.7.5.0', 34 'reference' => '1c87157e6ea9735c4a6788f963302f092200a4bd', 35 35 'type' => 'wordpress-plugin', 36 36 'install_path' => __DIR__ . '/../../../', -
stop-user-enumeration/tags/1.7.5/includes/vendor/composer/platform_check.php
r3154454 r3327799 20 20 } 21 21 } 22 trigger_error( 23 'Composer detected issues in your platform: ' . implode(' ', $issues), 24 E_USER_ERROR 22 throw new \RuntimeException( 23 'Composer detected issues in your platform: ' . implode(' ', $issues) 25 24 ); 26 25 } -
stop-user-enumeration/tags/1.7.5/languages/stop-user-enumeration.pot
r3315967 r3327799 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Stop User Enumeration 1.7. 3\n"5 "Project-Id-Version: Stop User Enumeration 1.7.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/stop-user-enumeration\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 6-21T18:37:16+00:00\n"12 "POT-Creation-Date: 2025-07-14T17:44:17+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" -
stop-user-enumeration/tags/1.7.5/readme.txt
r3315979 r3327799 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.7. 48 Stable tag: 1.7.5 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 31 31 Since WordPress 5.5 sitemaps are generated by core WP ( wp-sitemap.xml ) which includes a user/author sitemap that exposes the user id. You can enable / disable this in the plugin settings. 32 32 33 = PHP 8. 2compatible =34 Tested on PHP 8. 233 = PHP 8.4 compatible = 34 Tested on PHP 8.4 35 35 36 36 = Features Include = -
stop-user-enumeration/tags/1.7.5/stop-user-enumeration.php
r3315979 r3327799 4 4 Plugin URI: https://fullworksplugins.com/products/stop-user-enumeration/ 5 5 Description: Helps secure your site against hacking attacks through detecting User Enumeration 6 Version: 1.7. 46 Version: 1.7.5 7 7 Author: Fullworks 8 8 Requires at least: 6.3 … … 43 43 44 44 // Define the plugin version constant. 45 define( 'STOP_USER_ENUMERATION_PLUGIN_VERSION', '1.7. 4' );45 define( 'STOP_USER_ENUMERATION_PLUGIN_VERSION', '1.7.5' ); 46 46 47 47 // Include the autoloader to dynamically include the classes. -
stop-user-enumeration/trunk/changelog.txt
r3315979 r3327799 1 1 == Changelog == 2 = 1.7.5 = 3 * Added PHP 8.4 compatibility 4 * Updated wp-env configuration to use PHP 8.4 5 * Added PHP 8.4 compatibility checks to build process 6 7 = 1.7.4 = 8 * fix changelog 9 2 10 = 1.7.3 = 3 11 * Fixed URL-encoding bypass vulnerability in REST API protection -
stop-user-enumeration/trunk/includes/vendor/composer/installed.php
r3315979 r3327799 2 2 'root' => array( 3 3 'name' => 'fullworks/stop-user-enumeration', 4 'pretty_version' => 'v1.7. 4',5 'version' => '1.7. 4.0',6 'reference' => ' 9cd863225735486704216cf2e1ef7073b57e9283',4 'pretty_version' => 'v1.7.5', 5 'version' => '1.7.5.0', 6 'reference' => '1c87157e6ea9735c4a6788f963302f092200a4bd', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../../', … … 30 30 ), 31 31 'fullworks/stop-user-enumeration' => array( 32 'pretty_version' => 'v1.7. 4',33 'version' => '1.7. 4.0',34 'reference' => ' 9cd863225735486704216cf2e1ef7073b57e9283',32 'pretty_version' => 'v1.7.5', 33 'version' => '1.7.5.0', 34 'reference' => '1c87157e6ea9735c4a6788f963302f092200a4bd', 35 35 'type' => 'wordpress-plugin', 36 36 'install_path' => __DIR__ . '/../../../', -
stop-user-enumeration/trunk/includes/vendor/composer/platform_check.php
r3154454 r3327799 20 20 } 21 21 } 22 trigger_error( 23 'Composer detected issues in your platform: ' . implode(' ', $issues), 24 E_USER_ERROR 22 throw new \RuntimeException( 23 'Composer detected issues in your platform: ' . implode(' ', $issues) 25 24 ); 26 25 } -
stop-user-enumeration/trunk/languages/stop-user-enumeration.pot
r3315967 r3327799 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Stop User Enumeration 1.7. 3\n"5 "Project-Id-Version: Stop User Enumeration 1.7.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/stop-user-enumeration\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 6-21T18:37:16+00:00\n"12 "POT-Creation-Date: 2025-07-14T17:44:17+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.10.0\n" -
stop-user-enumeration/trunk/readme.txt
r3315979 r3327799 6 6 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.7. 48 Stable tag: 1.7.5 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 31 31 Since WordPress 5.5 sitemaps are generated by core WP ( wp-sitemap.xml ) which includes a user/author sitemap that exposes the user id. You can enable / disable this in the plugin settings. 32 32 33 = PHP 8. 2compatible =34 Tested on PHP 8. 233 = PHP 8.4 compatible = 34 Tested on PHP 8.4 35 35 36 36 = Features Include = -
stop-user-enumeration/trunk/stop-user-enumeration.php
r3315979 r3327799 4 4 Plugin URI: https://fullworksplugins.com/products/stop-user-enumeration/ 5 5 Description: Helps secure your site against hacking attacks through detecting User Enumeration 6 Version: 1.7. 46 Version: 1.7.5 7 7 Author: Fullworks 8 8 Requires at least: 6.3 … … 43 43 44 44 // Define the plugin version constant. 45 define( 'STOP_USER_ENUMERATION_PLUGIN_VERSION', '1.7. 4' );45 define( 'STOP_USER_ENUMERATION_PLUGIN_VERSION', '1.7.5' ); 46 46 47 47 // Include the autoloader to dynamically include the classes.
Note: See TracChangeset
for help on using the changeset viewer.