Plugin Directory

Changeset 3343254


Ignore:
Timestamp:
08/12/2025 04:17:03 AM (8 months ago)
Author:
fraudlabspro
Message:

Updated hash function

Location:
fraudlabs-pro-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • fraudlabs-pro-for-woocommerce/trunk/includes/class.wc-fraudlabspro.php

    r3335665 r3343254  
    655655            'advanced_velocity_screening'   => ( get_option('wc_settings_woocommerce-fraudlabs-pro_flp_advanced_velocity') == "yes" ) ? 'enabled' : 'disabled',
    656656            'source'                        => 'woocommerce',
    657             'source_version'                => '2.23.0',
     657            'source_version'                => '2.23.1',
    658658            'items'                         => $item_sku,
    659659            'cc_key'                        => $cc_key,
     
    29322932        $hash = 'fraudlabspro_' . $s;
    29332933
    2934         for( $i = 0; $i < 65536; $i++ )
     2934        for( $i = 0; $i < 65536; $i++ ) {
    29352935            $hash = sha1( 'fraudlabspro_' . $hash );
     2936        }
     2937
     2938        $hash2 = hash('sha256', $hash);
    29362939
    29372940        return $hash;
  • fraudlabs-pro-for-woocommerce/trunk/init.php

    r3335665 r3343254  
    66 * Author: FraudLabs Pro
    77 * Author URI: https://www.fraudlabspro.com/
    8  * Version: 2.23.0
     8 * Version: 2.23.1
    99 * Requires Plugins: woocommerce
    1010 * Text Domain: fraudlabs-pro-for-woocommerce
  • fraudlabs-pro-for-woocommerce/trunk/readme.txt

    r3335665 r3343254  
    55Requires at least: 4.6
    66Tested up to: 6.8
    7 Stable tag: 2.23.0
     7Stable tag: 2.23.1
    88
    99Fraud prevention plugin for WooCommerce to minimize payment fraud and avoid chargebacks. With the FraudLabs Pro Micro Plan, you can get 500 free fraud validation credits every month.
     
    9898== Changelog ==
    9999
     100* 2.23.1 Updated hash function.
    100101* 2.23.0 Enhanced Settings page and Fraud result.
    101102* 2.22.15 Updated database queries.
Note: See TracChangeset for help on using the changeset viewer.