Comparing version 1.0.0 to 1.0.1
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
470088
58
1