Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

subquest

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

subquest - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

2

package.json
{
"name": "subquest",
"version": "1.0.0",
"version": "1.0.1",
"description": "Fast, Elegant subdomain scanner using nodejs",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -10,3 +10,3 @@ # subquest

`npm install -g subquest`
`sudo npm install -g subquest`

@@ -39,3 +39,12 @@ ## Usage

console.log('Scanning the sub domains of ea.com with 4 requests at a time.');
subquest.find({domain: 'ea.com', rateLimit:'4', resolver:'4.2.2.2', dictionary: 'top_200'});
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.
})
```

@@ -45,6 +54,7 @@

## 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
* Domain dictionary from Sub-Brute by Rook, https://github.com/TheRook/subbrute
* node-dns, https://github.com/tjfontaine/node-dns
* async, https://github.com/caolan/async
* commander, https://github.com/visionmedia/commander.js

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc