d3mondev / puredns

Puredns is a fast domain resolver and subdomain bruteforcing tool that can accurately filter out wildcard subdomains and DNS poisoned entries.
GNU General Public License v3.0
1.65k stars 155 forks source link

[Feature request] Quiet mode #4

Closed shelld3v closed 3 years ago

shelld3v commented 3 years ago

puredns allows writing results into a file, so the CLI output should be optional

d3mondev commented 3 years ago

In the current version, all the informative output is sent to stderr. You can quiet the output by running it like so:

puredns resolve domains.txt 2>/dev/null

and only the domains found will be shown.

In puredns v2, there will be a -q flag to explicitly quiet the output to make this easier.

shelld3v commented 3 years ago

Cool