dnsmap

1.0.0 • Public • Published

dnsmap

npm npm license npm downloads

DNS network mapper

Install via npm

$ npm install --save dnsmap

Usage

var dnsmap = require( 'dnsmap' )

Mapping subdomains

var readline = require( 'readline' )
var fs = require( 'fs' )
 
var wordlist = readline.createInterface({
  input: fs.createReadStream( __dirname + '/../test/data/wordlist.txt' )
})
 
var mapper = dnsmap.searchStream({
  target: 'example.com'
})
 
wordlist.on( 'line', function( word ) {
  mapper.write( word )
})
 
mapper.on( 'data', function( data ) {
  console.log( data )
  console.log()
})

Mapping TLDs & public suffixes

var wordlist = readline.createInterface({
  input: fs.createReadStream( __dirname + '/../test/data/public-suffix.txt' )
})
 
var mapper = dnsmap.searchStream({
  pattern: 'google.%s',
})
 
wordlist.on( 'line', function( word ) {
  mapper.write( word )
})
 
mapper.on( 'data', function( data ) {
  console.log( data )
  console.log()
})

Example data event result for google.tel:

{
  domain: 'google.tel',
  A: ['194.77.54.2'],
  TXT: [
    ['.tsm',
      '13.1',
      'pddx',
      '1',
      'color1',
      '',
      'color2',
      '',
      'color3',
      '',
      'color4',
      '',
      'css',
      '',
      'pss',
      '',
      'hml',
      '',
      'htl',
      '',
      'gan',
      '',
      'log',
      '',
      'bkg',
      '',
      'bip',
      ''
    ]
  ],
  NS: ['d0.cth.dns.nic.tel',
    'a0.cth.dns.nic.tel',
    'n0.cth.dns.nic.tel',
    's0.cth.dns.nic.tel',
    't0.cth.dns.nic.tel'
  ],
  SOA: {
    nsname: 'd0.cth.dns.nic.tel',
    hostmaster: 'cth-support.support.nic.tel',
    serial: 10,
    refresh: 10800,
    retry: 3600,
    expire: 2592000,
    minttl: 60
  },
  NAPTR: [{
    flags: 'u',
    service: 'E2U+web:http',
    regexp: '!^.*$!http://www.google.com!',
    replacement: '',
    order: 100,
    preference: 100
  }]
}

Examples

You can run the files in the example folder, and also supply a target as an argument (example(.com) is used by default):

# Map out registered TLDs 
$ node example/tlds.js google
# Map subdomains from a wordlist 
$ node example/readline.js google.com

Package Sidebar

Install

npm i dnsmap

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • jhermsmeier