evolve or die

TTLeak.py

TTLeak.py
Posted Dec 8, 2004
Authored by hackademy, nono2357 | Site thehackademy.net

This tool can, under some conditions, calculate the exact time of a dns query made by someone, using TTL information cached on his ISP's nameservers.

MD5 | 12cf093190e8e946f8ba4865adb27438

TTLeak.py

Change Mirror Download
#!/usr/bin/python
# -*- coding: ISO-8859-15 -*
# TTLeak v0.1 - GPL License - Copyright (C) 2004 by nono2357
# (published in Hackademy Manuel #12, dec-jan 2005)

import re, string, datetime, time, sys, DNS # pydns library

l_dns_fai = {
'free' : ['212.27.32.5','212.27.32.6','212.27.32.176','212.27.39.134','212.27.39.135'],
'wanadoo' : ['193.252.19.10','193.252.19.11','80.12.255.23','80.12.255.152'],
'noos' : ['212.198.2.51', '212.198.0.91'],
'aol' : ['DNS-01.NS.AOL.COM','DNS-02.NS.AOL.COM','DNS-06.NS.AOL.COM','DNS-07.NS.AOL.COM']
}

DNS.ParseResolvConf()

def Error(mesg):
print "ERROR:", mesg
sys.exit(1)

class HostSearch:
def __init__(self, host, zone):
# hostname (no IP)
self.host = host
self.ldns = l_dns_fai[zone]
print "Recherche de %s dans la zone '%s'..." % (host,zone)
def getAuthorityServers(self, domain):
r = DNS.Request(domain,qtype='SOA').req()
if r.header['status'] != 'NOERROR':
Error("Erreur de réponse DNS")
primary,email,serial,refresh,retry,expire,minimum = r.answers[0]['data']
return primary
def getTTLs(self):
lr = []
for dns in self.ldns:
print "Interrogation de %s..." % dns
r = DNS.Request(name=self.host, server=dns, qtype='A')
a = r.req()
for reponse in a.answers:
lr.append((dns,int(reponse['ttl']),int(time.time())))
return lr
def getOriginalTTL(self):
domain = string.join(self.host.split('.')[-2:],".")
aserver = self.getAuthorityServers(domain)
a = DNS.Request(name=self.host, server=aserver, qtype='A').req()
return int(a.answers[0]['ttl'])
def showResults(self):
lr, ot = self.getTTLs(), self.getOriginalTTL()
print "Requêtes dans les dernières %d secondes :" % ot
print "DNS","\t\t","Dernière requête disponible"
print '-'*43
for r in lr:
if r[1]!=ot:
print r[0],"\t",datetime.datetime.fromtimestamp(r[2]-ot+r[1])

if len(sys.argv) != 3:
Error("\nUsage: %s FAI hostname" % sys.argv[0])
else:
HostSearch(sys.argv[2],sys.argv[1]).showResults()

Comments

RSS Feed Subscribe to this comment feed

No comments yet, be the first!

Login or Register to post a comment

File Archive:

May 2012

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    May 1st
    37 Files
  • 2
    May 2nd
    53 Files
  • 3
    May 3rd
    33 Files
  • 4
    May 4th
    4 Files
  • 5
    May 5th
    10 Files
  • 6
    May 6th
    17 Files
  • 7
    May 7th
    19 Files
  • 8
    May 8th
    36 Files
  • 9
    May 9th
    34 Files
  • 10
    May 10th
    35 Files
  • 11
    May 11th
    20 Files
  • 12
    May 12th
    18 Files
  • 13
    May 13th
    11 Files
  • 14
    May 14th
    27 Files
  • 15
    May 15th
    58 Files
  • 16
    May 16th
    54 Files
  • 17
    May 17th
    25 Files
  • 18
    May 18th
    53 Files
  • 19
    May 19th
    9 Files
  • 20
    May 20th
    15 Files
  • 21
    May 21st
    25 Files
  • 22
    May 22nd
    32 Files
  • 23
    May 23rd
    35 Files
  • 24
    May 24th
    26 Files
  • 25
    May 25th
    25 Files
  • 26
    May 26th
    0 Files
  • 27
    May 27th
    0 Files
  • 28
    May 28th
    0 Files
  • 29
    May 29th
    0 Files
  • 30
    May 30th
    0 Files
  • 31
    May 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2012 Packet Storm. All rights reserved.

close