Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dnsenum: add page #9195

Closed
wants to merge 14 commits into from
16 changes: 16 additions & 0 deletions pages/linux/dnsenum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# dnsenum

> Multithreaded Perl script used to enumerate DNS information from a domain.
> More information: <https://github.com/SparrowOchon/dnsenum2>.

- Enumerate a domain with default settings:

`dnsenum -enum {{example.com}}`
Comment on lines +6 to +8
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- Enumerate a domain with default settings:
`dnsenum -enum {{example.com}}`
- [enum]erate a specific domain with default settings:
`dnsenum -enum {{example.com}}`

Optional fix: mnemonic can be used.
Optional fix: specific may sound better.


- Enumerate a domain without reverse lookup and save the output to a file:

`dnsenum --noreverse -o {{path/to/file}} {{example.com}}`
Comment on lines +10 to +12
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- Enumerate a domain without reverse lookup and save the output to a file:
`dnsenum --noreverse -o {{path/to/file}} {{example.com}}`
- Enumerate a domain without reverse lookup and save the [o]utput to a specific file:
`dnsenum --noreverse -o {{path/to/file}} {{example.com}}`

Almost the same issue as above.
Warning: parsing man page failed, can't find -o option, possibly broken manual.


- Brute force search on subdomains along with a custom file with subdomains passed as an attribute:

`dnsenum -f {{filename}} -r {{example.com}}`
Comment on lines +14 to +16
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- Brute force search on subdomains along with a custom file with subdomains passed as an attribute:
`dnsenum -f {{filename}} -r {{example.com}}`
- Brute force search on subdomains along with a specific file with subdomains passed as an attribute:
`dnsenum --file {{path/to/file}} --recursion {{example.com}}`

Almost the same issue as above.
Mandatory fix: path format is broken.
Mandatory fix: long option must be used if it's portable.