Skip Menu |

This queue is for tickets about the DateTime-Format-Builder CPAN distribution.

Report information
The Basics
Id: 7312
Status: resolved
Priority: 0/
Queue: DateTime-Format-Builder

People
Owner: Nobody in particular
Requestors: mrperson [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.7804
Fixed in: 0.7805



Subject: Parser.pm not taint safe
Line 626 of Parser.pm is not taint safe because it evals a string returned from File::Find. It can be fixed by changing line 625 from: s/\.pm\z//; To something like: ($_) = $_ =~ /\A(.+)\.pm\z/;