Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRook committed Mar 24, 2015
1 parent ab7a8bb commit 061324b
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ SubBrute is a community driven project with the goal of creating the fastest, an

Whats new in v1.2.1?
=====================
The big news in this version is SubBrute is now a recursive DNS-spider, and also a library, more on this later. SubBrute should be easy to use, so the interface should be intuitive (like nmap!), if you would like the interface to change, let us know. In this version we are opening up SubBrute's fast DNS resolution pipeline for any DNS record type. Additionally, SubBrute now has a feature to detect subdomains were their resolution is intentionally blocked, which sometimes happens when the a subdomain cannot be externally resolved.
- subbrute is now a dns spider that recursively crawls DNS records. Fromt his feature *.google.com went from 123 to 162 subdomains.
The big news in this version is that SubBrute is now a recursive DNS-spider, and also a library, more on this later. SubBrute should be easy to use, so the interface should be intuitive (like nmap!), if you would like the interface to change, let us know. In this version we are opening up SubBrute's fast DNS resolution pipeline for any DNS record type. Additionally, SubBrute now has a feature to detect subdomains were their resolution is intentionally blocked, which sometimes happens when the a subdomain cannot be externally resolved.
- subbrute is now a dns spider that recursively crawls DNS records. This feature boosted *.google.com from 123 to 162 subdomains.
- --type enumerate an arbitrary record type (AAAA, CNAME, SOA, TXT, MX...)
- -s can now read subdomains from results files.
- SubBrute is now a library subbrute.run()!
- -s can now read subdomains from result files.
- SubBrute is now a library: subbrute.run()
- Restricted subdomain resolution detection
- New useage - The subdomains enumerated from previous scans can now be used as input to enumerate other DNS records. The following commands will map out all subdomains, and then enumerate other DNS record types.
- New useage - The subdomains enumerated from previous scans can now be used as input to enumerate other DNS records. The following commands demonstrate this new functionality:
```
./subbrute.py google.com -o google.names
... 162 domain found ...
Expand All @@ -20,6 +20,7 @@ The big news in this version is SubBrute is now a recursive DNS-spider, and also
google.com,"v=spf1 include:_spf.google.com ip4:216.73.93.70/31 ip4:216.73.93.72/31 ~all"
adwords.google.com,"v=spf1 redirect=google.com"
...
./subbrute.py -s google.names google.com --type CNAME
blog.google.com,www.blogger.com,blogger.l.google.com
groups.google.com,groups.l.google.com
Expand All @@ -32,6 +33,8 @@ The big news in this version is SubBrute is now a recursive DNS-spider, and also
for d in subbrute.run("google.com"):
print d

Feedback welcome.

Whats new in v1.1?
=====================
This version merges pull requests from the community; changes from JordanMilne, KxCode and rc0r is in this release. In SubBrute 1.1 we fixed bugs, improved accuracy, and efficiency. As requested, this project is now GPLv3.
Expand Down

0 comments on commit 061324b

Please sign in to comment.