Metadata-Version: 2.1
Name: Kickdomain
Version: 1.3.4
Summary: Subdomain takeover tool
Home-page: https://github.com/abuvanth/kickdomain
Author: Syed Abuthahir
Author-email: developerabu@gmail.com
License: UNKNOWN
Description: # kickdomain
        Kickdomain is a subdomain takeover checker tool
        
        # Usage
        
        pip install kickdomain
        
        add fb access token into config.py
        
        # or
        
        export FB_ACCESS_TOKEN=your_access_token (get your access token here - https://developers.facebook.com/tools/explorer/)
        
        add FB_ACCESS_TOKEN into .bashrc file
        
        source .bashrc
        
        Enumerate Subdomains only 
        
        kickdomain.py -u target.com 
        
        Enable Takeover check
        
        kickdomain.py -u target.com -t 1
        
        # Use kickdomain as a module
        
        ```
        import kickdomain
        
        subdomains=kickdomain.getSubdomains('target.com')
        
        results=kickdomain.takeover_check(subdomains)
        
        for i in results:
            if i[1]:
        
                print(i[0]+' vulnerable to Takeover')
        
            else:
        
                print(i[0]+' not vulnerable to Takeover')
        
        ```
            
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
