PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.6.21
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.6.21
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
← All changes | includes/class-ajax.php +1 -2 1.6.281.6.21 View file →
@@ -519,10 +519,9 @@
519 519 $metadata = $entry->get_metadata();
520 520 $payment = $entry->get_payment_data();
521 521
522 522 if ( isset( $payment->payment_data ) && is_serialized( $payment->payment_data ) ) {
523 - // Security fix: Prevent PHP Object Injection by restricting allowed classes
524 - $payment->payment_data = @unserialize( $payment->payment_data, [ 'allowed_classes' => false ] );
523 + $payment->payment_data = unserialize( $payment->payment_data );
525 524 }
526 525
527 526 if ( false === $fields ) {
528 527 wp_send_json_error( __( 'No form fields found!', 'weforms' ) );