Tansaku
Tansaku is a yet another dirbuster tool.
Features and ToDo(s)
- Custom path list to crawl
 - Custom User-Agent
 - Threading
 - Crawl by type (admin, backup, database, etc, log and all)
 
Installation
gem install tansakuUsage
As a CLI
$ tansaku help
Usage:
  tansaku crawl URL
Options:
  [--additional-list=ADDITIONAL_LIST]                              # Path to the file which includes additional paths to crawl
  [--headers=key:value]                                            # HTTP headers to use
  [--method=METHOD]                                                # HTTP method to use
                                                                   # Default: HEAD
  [--body=BODY]                                                    # HTTP request body to use
  [--timeout=N]                                                    # Timeout in seconds
  [--max-concurrent-requests=N]                                    # Max number of concurrent requests to use
  [--ignore-certificate-errors], [--no-ignore-certificate-errors]  # Whether to ignore certificate errors or not
  [--type=TYPE]                                                    # Type of a list to crawl (admin, backup, database, etc, log or all)
                                                                   # Default: all
Crawl a given URLAs a library
crawler = Tansaku::Crawler("http://localhost")
resutls = crawler.crawl
p resultsDefined paths to crawl
See /lib/tansaku/lists/.
Alternatives
- maurosoria/dirsearch: Web path scanner
 - evilsocket/dirsearch: A Go implementation of dirsearch.
 - davidtavarez/weblocator: Just a better dirbuster
 - stefanoj3/dirstalk: Modern alternative to dirbuster/dirb
 
License
The gem is available as open source under the terms of the MIT License.