Skip Menu |

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

Report information
The Basics
Id: 19009
Status: resolved
Priority: 0/
Queue: Net-DNS

People
Owner: Nobody in particular
Requestors: sos-aid [...] tvtel.pt
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Subject: NOERROR
(This is not a bug issue) Dear Sirs, I must confess that it's the first time I face this kind of situation: I have a domain name which is constantly changing its IP; either is in France, Austria, USA, Poland, etc. I've obtained several IP addresses, but always changing the list. I've tryed to extract the DNSs but there's no result (I get NOERROR). Can you please help me? This is extremely urgent - seriously. Kind regards, Rui Miguel Fernandes
Subject: Re: [rt.cpan.org #19009] NOERROR
Date: Mon, 1 May 2006 15:20:00 +0200
To: bug-Net-DNS [...] rt.cpan.org
From: "Olaf M. Kolkman" <olaf [...] dacht.net>
I do not exactly understand what your problem is and unless it is a fairly trivial problem I do not want to provide free consultancy. Please explain your problem in more detail if you would like to get any help at all. Show quoted text
> > I must confess that it's the first time I face this kind of situation: > I have a domain name which is constantly changing its IP; either is in > France, Austria, USA, Poland, etc. >
Which domain name, who administers it? Show quoted text
> I've obtained several IP addresses, but always changing the list. I've > tryed to extract the DNSs but there's no result (I get NOERROR). >
What query to you issue? How do you proceed with troubleshooting? Show quoted text
> Can you please help me? >
maybe :-) --Olaf ------------------------------------------------------ Ik dacht net... heel even maar.
Download PGP.sig
application/pgp-signature 227b

Message body not shown because it is not plain text.

Subject: Re: [rt.cpan.org #19009] NOERROR
Date: Mon, 1 May 2006 15:36:31 +0100
To: <bug-Net-DNS [...] rt.cpan.org>
From: "SOS & AID" <sos-aid [...] tvtel.pt>
Dear Mr. Olaf M. Kolkman , First of all I'm gratefull for your reply. I'm the head manager of a website, SOS & AID at http://sos-aid.com wich allows the cybernauts to expose websites of child sexual abuse. In 2 years we have closed hundreds of websites of that kind, 60% in less than 48 hours. Our automated scripts were doing allright until this situation come up. You will also have to understand that I can't reveal no information regarding the site or I'll be prosecuted by law (it's weird but true). The problem, is a website that if we do a test - using the name of the domain - to know its IP number, we get several results and each time different. We used: use Net::DNS; #Host's addresses my $res = Net::DNS::Resolver->new; my $query = $res->search($sitename); if ($query) { foreach my $rr ($query->answer) { next unless $rr->type eq "A"; print $rr->address, "\n"; } } else { print "query failed: ", $res->errorstring, "\n"; } #END We get 5 IPs at each time, always different from the previous (only one repetition sometimes). As for the DNS: use Net::DNS; #DNS from Host my $res = Net::DNS::Resolver->new; my $query = $res->query($sitename, "NS"); if ($query) { foreach $rr (grep { $_->type eq 'NS' } $query->answer) { print $rr->nsdname, "\n"; } } else { print "query failed: ", $res->errorstring, "\n"; } #END We get "query failed: NOERROR". Is there a way of tracking such a website? To know its true IP? Can you sugest a tool in Perl that can help us do the job? I would apreciate it very much for your help. Kind regards, Rui Miguel Fernandes Porto - Portugal ------------------------------- Clear Skies... http://cosmos.com.pt Dura Lex Sed Lex http://sos-aid.com ------------------------------- "I don't believe in astrology; I'm a Sagittarius and we're skeptical." Arthur C. Clarke "God doesn't play with dices." Albert Einstein Show quoted text
----- Original Message ----- From: "Olaf M. Kolkman via RT" <bug-Net-DNS@rt.cpan.org> To: <sos-aid@tvtel.pt> Sent: Monday, May 01, 2006 2:20 PM Subject: Re: [rt.cpan.org #19009] NOERROR
> > <URL: http://rt.cpan.org/Ticket/Display.html?id=19009 > > > > I do not exactly understand what your problem is and unless it is a > fairly trivial problem I do not want to provide free consultancy. > > Please explain your problem in more detail if you would like to get > any help at all. >
>> >> I must confess that it's the first time I face this kind of situation: >> I have a domain name which is constantly changing its IP; either is in >> France, Austria, USA, Poland, etc. >>
> > Which domain name, who administers it? > >
>> I've obtained several IP addresses, but always changing the list. I've >> tryed to extract the DNSs but there's no result (I get NOERROR). >>
> > What query to you issue? How do you proceed with troubleshooting? >
>> Can you please help me? >>
> > maybe :-) > > > --Olaf > > > ------------------------------------------------------ > Ik dacht net... heel even maar. > > > > >