Skip Menu |

This queue is for tickets about the DNS-ZoneParse CPAN distribution.

Report information
The Basics
Id: 12679
Status: new
Priority: 0/
Queue: DNS-ZoneParse

People
Owner: Nobody in particular
Requestors: dshushunov [...] webhostplus.com
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.95
Fixed in: (no value)



Subject: Backslash in zone data
If one has a backslash in the name of a zone, for example 25 PTR 25/128 Then DNS::ZoneParse removes the backslash and all the data that follows it, so it displays the entry above as 25 PTR 25
[guest - Wed May 4 12:38:53 2005]: Show quoted text
> If one has a backslash in the name of a zone, for example > > 25 PTR 25/128 > > Then DNS::ZoneParse removes the backslash and all the data that > follows it, so it displays the entry above as > > 25 PTR 25
The fix is simple, change line 192 in ZoneParse.pm to my $valid_name = qr/[\@a-z_\-\.0-9\*\/]+/i;