Metadata-Version: 2.1
Name: subzerod
Version: 1.0
Summary: Subdomain enumeration tool
Home-page: https://github.com/sanderfoobar/subzerod
Author: Sander
Author-email: sander@sanderf.nl
License: WTFPL
Description: # SubZerod
        
        - Discover sub-domains given a domain name
        - Discover domain(s) given an IPv4 address
        
        ## Installation
        
        ```
        pip install subzerod
        ```
        
        ## Usage
        
        The command-line client works as follows:
        
        ### Discover sub-domains
        
        ```bash
        subzerod lobste.rs
        ```
        
        output:
        
        ```text
        lobste.rs
        l.lobste.rs
        www.lobste.rs
        ```
        
        ### Discover domain(s) on an IPv4
        
        ```bash
        subzerod 135.125.235.26
        ```
        
        output:
        
        ```text
        sanderf.nl
        photos.sanderf.nl
        ```
        
        ### As a webservice
        
        ```
        subzerod web
        ```
        
        `http://127.0.0.1:9342/scan/135.125.235.26`
        
        Responses are returned in JSON.
        
        ### Programmatically
        
        ```python
        from subzerod import SubZerod
        
        subdomains = await SubZerod.find_subdomains("lobste.rs")
        domains = await SubZerod.find_domains("135.125.235.26")
        ```
        
        ## Legacy
        
        SubZerod is a fork of [Sublist3r](https://github.com/aboul3la/Sublist3r) with some improvements:
        
        - modern python 3
        - asyncio instead of threading
        - scans are considerably faster
        - comes with a webserver because why not
        
Keywords: subdomain pentesting pentest security
Platform: any
Classifier: Environment :: Console
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Telecommunications Industry
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Security
Requires-Python: >=3.6
Description-Content-Type: text/markdown
