Socket
Socket
Sign inDemoInstall

subquest

Package Overview
Dependencies
71
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    subquest

Fast, Elegant subdomain scanner using nodejs


Version published
Weekly downloads
98
increased by10.11%
Maintainers
1
Install size
6.74 MB
Created
Weekly downloads
 

Readme

Source

subquest

Fast, Elegant subdomain scanner using nodejs

logo

Status

Build Status

Installation

sudo npm install -g subquest

Usage

  Usage: subquest [options] <domain to scan>
  Examples:
	subquest google.com
	subquest facebook.com -s 8.8.8.8 -r 20 -d top_50
	subquest twitter.com -s 8.8.8.8 -d all

  Options:

    -h, --help               output usage information
    -V, --version            output the version number
    -b, --bingSearch         use Bing search to list all possible subdomains
    -s, --server [ip]        specify your custom DNS resolver
    -r, --rateLimit [limit]  set the Rate Limit [Default value is 10]
    -d, --dictionary [type]  set the dictionary for bruteforcing [top_100]

Using it in your modules

npm install subquest

var subquest = require('subquest');
console.log('Scanning the sub domains of ea.com with 4 requests at a time.');
subquest
  .getSubDomains({
    host: 'ea.com', // required
    rateLimit:'4',
    dnsServer:'4.2.2.2',
    dictionary: 'top_200'
    })
  .on('end', function(arr){
    console.log(arr); // array of subdomains.
  })

This scans ea.com for the list of all subdomains using the top-100 dictionary.

Want to add a new entry to Subquest's dictionary?

Add your list of subdomain names to the ./dictionary/all.txt file and send a pull request.

Credits

Keywords

FAQs

Last updated on 28 Oct 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc