Releases: Edu4rdSHL/rusolver
Releases · Edu4rdSHL/rusolver
Rusolver v0.9.1
- Avoid allocating domain_data every time as it has the Clone trait. e26ae06
- Use our custom trust-dns implementation until https://github.com/bluejekyll/trust-dns/pull/1632 is decided. 8620ede
Rusolver v0.9.0
Rusolver v0.8.0
Rusolver v0.7.0
Rusolver v0.6.1
- Improve wildcard detection using only the trusted DNS resolvers and a list of 20 hosts instead of 10. 8057fbc
Rusolver v0.6.0
- Add double verification step. If no
--no-verify
is provided and a list of resolvers is used, every resolved host is double-checked against a list of trustable DNS resolvers, ensuring that only real alive hosts are given to the user. 9de7ab2
Rusolver v0.5.1
- Fix performance issues using our own
trust-dns
fork which disables all the DNS stats and request cloning. Edu4rdSHL/trust-dns@4840190 c92506b - Use an
AsyncResolver
with multiple nameserver ips instead of creating multipleAsyncResolver
instances. 4dea547
Rusolver v0.5.0
- Add wildcard detection support when doing brute force attacks. d9baa7a
Rusolver v0.4.0
NEW:
- Add support for using DNS from a file using the
-r/--resolvers
option. Example:cat hosts.txt | rusolver -r dns_ips.txt
87bee0c - Add support for using a wordlist as stdin for brute-forcing when using a custom
-d/--domain
. Usage:cat wordlist.txt | rusolver -d example.com
. It will append all the words inwordlist.txt
toexample.com
and then run the check against the resulting hosts. 1a43501
MISC:
- Adjust informational message. 91654a4