Changeset 3208894
- Timestamp:
- 12/17/2024 05:49:08 AM (14 months ago)
- Location:
- peters-custom-anti-spam-image/trunk
- Files:
-
- 2 edited
-
custom_anti_spam.php (modified) (4 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
peters-custom-anti-spam-image/trunk/custom_anti_spam.php
r2960936 r3208894 5 5 Description: Stop a lot of spambots from polluting your site by making visitors identify a random word displayed as an image before commenting. You can customize the pool of words to display. 6 6 Author: Peter Keung 7 Version: 3.2. 37 Version: 3.2.4 8 8 Author URI: https://www.theblog.ca/ 9 9 Change Log: 10 2024-12-16 Version 3.2.4 Fix CSRF vulnerability on register 10 11 2023-08-30 Version 3.2.3 Fix back-end XSS vulnerability 11 12 2014-02-08 Version 3.2.2 Minor code cleanup (thanks koc!) … … 89 90 90 91 global $cas_version; 91 $cas_version = '3.2. 2';92 $cas_version = '3.2.4'; 92 93 93 94 $cas_text = casFunctionCollection::get_settings( 'text' ); … … 1066 1067 echo( '<input type="text" name="securitycode" id="securitycode" size="30" />'."\n\t\t\t\t" ); 1067 1068 echo( '<input type="hidden" name="matchthis" value="' . $cas_rowid . "\" />\n\t\t\t\t" ); 1069 wp_nonce_field( 'cas_register_form' ); 1068 1070 if( $cas_wav ) 1069 1071 { … … 1087 1089 1088 1090 // Validate the form input values 1091 check_admin_referer( 'cas_register_form' ); 1089 1092 if( isset( $_POST['securitycode'] ) ) 1090 1093 { -
peters-custom-anti-spam-image/trunk/readme.txt
r2960936 r3208894 64 64 == Changelog == 65 65 66 = 3.2.4 = 67 * 2024-12-16: Fix CSRF vulnerability on register 68 66 69 = 3.2.3 = 67 70 * 2023-08-30: Fix back-end XSS vulnerability
Note: See TracChangeset
for help on using the changeset viewer.