Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/a3h1nt/sububy
OSINT (Open Source Intelligence)ReconnaissanceDNS & Subdomain EnumerationInformation GatheringSubdomain Enumeration
GitHuba3h1nt/sububy

Sububy

Modular subdomain enumeration suite with certificate transparency, DNS brute-force, and API-based discovery. Includes post-enumeration modules for sorting, live host detection, screenshot capture, and HTTP information retrieval.

View Repository
711 year agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
Sububy — Modular subdomain enumeration suite with certificate transparency, DNS brute-force, and API-based discovery. Includes post-enumeration modules for sorting, live host detection, screenshot capture, and HTTP information retrieval. | Kitploit

Sububy

Sububy is a one stop subdomain enumeration suite written in ruby, it focuses on accuracy and quality with the flexibility of accessing some modules individually without having to stick with the tool execution flow, allowing you to integrate it with your work flow.

alt text

Sububy comes with nine modules in total, out of these 10, six modules are for enumeration and the rest performs post enumeration operation.

CategoryModuleDescription
EnumerationCertRetrieves subdomains from certificate transparency logs.
BruteBruteforce subdomains using the provided wordlist.
DnsdFetches subdomains from DnsDumpster (API key required : Free).
VtotalFetches subdomains from VirusTotal (API key required : Free).
WebArchFetches subdomains from Internet Web Archive
CspFetches subdomains from the CSP of identified live domains.
Post EnumerationSortSorts the identified subdomains for duplicates as well as host not belonging to the target domain name.
LiveIdentifies the subdomain with active running webserver.
SshotTakes screenshot using HTTP and HTTPs protocol.
InfoAllows you to retrieve basic HTTP information like response status code and response headers.

Installation

  1. Install the tool and gems
root@kitploit:~
git clone https://github.com/A3h1nt/Sububy.git
cd Sububy
bundle install 
  1. Configure API keys in Sububy.rb , you can get them using the following URL
  • DnsDumpster
  • VirusTotal
  1. Run it
root@kitploit:~
ruby Sububy.rb <domain> <cn> <wordlist> <output-dir>

alt text

Accessing Individual Modules

Sububy modules are written in a way that allows you to access them individually, without having to run the entire tool again and again. Before you can start using the individual modules, you'll need to load the file in your ruby shell. Launch the ruby shell by typing irb in your terminal and load the sububy file.

root@kitploit:~
irb(main):002:0> require_relative 'Sububy.rb'
irb(main):002:0> # Set the output directory
irb(main):002:0> $output_dir = '/path/to/output_dir'

1. Enumeration Module

Want to enumerate subdomains only?

root@kitploit:~
Cert.get(domain) #-> cert.txt
Brute.bruteforce(domain,wordlist) #-> brute.txt
Dnsd.getsub(domain) #-> dnsd.txt
Vtotal.getsub(domain) #-> vtotal.txt
WebArch.get(domain) #-> webarchive.txt

2. Sorting Module

Already have a list of subdomains and need some sorting?

root@kitploit:~
Sort.domain(domain,file) #-> returns identified_host.txt with domain name mentioned in subdomain
Sort.uniq(file1,file2) #-> combine and returns unique subdomains 

3. Live Module

Already have a list of subdomains and need to find out the live ones?

root@kitploit:~
Live.get(host_file) #-> returns live_host.txt with list of alive host

4. Sshot Module

Already have a list of subdomains and want to take screenshot?

root@kitploit:~
Sshot.http(host_file) #-> returns http screenshots in http/
Sshot.https(host_file) #-> returns https screenshoots in https/

5. Info Module

Want more information on your subdomains?

root@kitploit:~
Info.info "hosts.txt" #-> Initiates the info module, you need to run this before you can use other methods
Info.headers "hostname" #-> Returns response headers for a particular host
Info.headersall #-> Returns response headers for all hosts specified in the file
Info.status "hostname" #-> Returns response status code for a particular host
Info.statusall #-> Returns response status for all hosts specified in the file
Info.title "hostname" #-> Returns webpage title for a particular host
Info.titleall #-> Returns webpage title for all hosts specified in the file
Info.comments #-> Writes scaraped comments to file
Info.links #-> Writes scraped links to file

Variables

Sububy uses some global variables to store data, these variables can be accessed directly as well.

root@kitploit:~
$dnsdumpster_api_key  # API key for dnsdumpster
$virustotal_api_key   # API key for virustotal
$live_host            # Array of live host
$csp_list = []        # Array of host identified from CSP
$output_dir           # Path to output directory

How To Contribute ?

  • Add new features
  • Improve code quality
  • Resolve errors

Ping me at : [email protected]

Download Tool