Plugin Directory

Changeset 3208894


Ignore:
Timestamp:
12/17/2024 05:49:08 AM (14 months ago)
Author:
pkthree
Message:

Peter's Custom Anti-Spam Image Version 3.2.4

Location:
peters-custom-anti-spam-image/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • peters-custom-anti-spam-image/trunk/custom_anti_spam.php

    r2960936 r3208894  
    55Description: 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.
    66Author: Peter Keung
    7 Version: 3.2.3
     7Version: 3.2.4
    88Author URI: https://www.theblog.ca/
    99Change Log:
     102024-12-16  Version 3.2.4  Fix CSRF vulnerability on register
    10112023-08-30  Version 3.2.3  Fix back-end XSS vulnerability
    11122014-02-08  Version 3.2.2  Minor code cleanup (thanks koc!)
     
    8990
    9091global $cas_version;
    91 $cas_version = '3.2.2';
     92$cas_version = '3.2.4';
    9293
    9394$cas_text = casFunctionCollection::get_settings( 'text' );
     
    10661067    echo( '<input type="text" name="securitycode" id="securitycode" size="30" />'."\n\t\t\t\t" );
    10671068    echo( '<input type="hidden" name="matchthis" value="' . $cas_rowid . "\" />\n\t\t\t\t" );
     1069    wp_nonce_field( 'cas_register_form' );
    10681070    if( $cas_wav )
    10691071    {
     
    10871089
    10881090        // Validate the form input values
     1091        check_admin_referer( 'cas_register_form' );
    10891092        if( isset( $_POST['securitycode'] ) )
    10901093        {
  • peters-custom-anti-spam-image/trunk/readme.txt

    r2960936 r3208894  
    6464== Changelog ==
    6565
     66= 3.2.4 =
     67* 2024-12-16: Fix CSRF vulnerability on register
     68
    6669= 3.2.3 =
    6770* 2023-08-30: Fix back-end XSS vulnerability
Note: See TracChangeset for help on using the changeset viewer.