Metadata-Version: 2.1
Name: webeye
Version: 2.1.2
Summary: A best Powerful module for making ethical hacking tools easier
Home-page: https://github.com/Zaeem20/webeye
Author: Zaeem Technical
Author-email: business@zaeemtechnical.ml
License: MIT
Description: # webeye
        A Best Powerful module for making Ethical hacking tools easier<br />
        
        ## Installation
        ```sh
        pip install -U webeye
        ```
        ## Getting Started
        ```py
        # importing
        from webeye import *
        # host 
        host="quotientbot.xyz"
        # schema
        schema="https://"
        # subdomains
        subdomains=subenum(host=host)
        # dns lookup
        dns=fetch_dns(host=host)
        # banner grabber
        grabbed=grab(host=host,schema=schema)
        # check for ports
        ports=scan(host=host, port=1025, start=0, dev_mode = False)
        # cloudflare
        detected=is_cloudflare(host=host, schema=schema)
        # honeypot
        honeypot=is_honeypot(host=host)
        
        ```
        
        ## Custom Things
        You can also scan specific ports Iterable type args can also be added...</br>
        
        ```py
        webeye.scan('google.com', [21,80,443])
        
        ```
        
        You can get IP address of subdomain too...
        
        ```py
        print(webeye.subenum(target, no_ip=False))
        
        ```
        ## Webeye as Asynchronous
        
        ```py
        from webeye import AsyncHelper
        
        asyncmanner = AsyncHelper()
        
        async def portscan(target):
            await asyncmanner.scan(target, 1024)
        
        async def reversedns(target):
            await asyncmanner.reversedns(target)
        
        async def extract_pagelink(target):
            await asyncmanner.extract_pagelink(target)
        
        async def shared_dns(target):
            await asyncmanner.fetch_shared_dns(target)
        
        async def bannergrabber(target):
            await asyncmanner.grab(target)
        
        async def geoip(target);
            await asyncmanner.geoip(target)
        
        async def find_subdomains(target):
            await asyncmanner.find_subdomains(target)
        
        async def dnslook(target):
            await asyncmanner.fetch_dns(target)
        
        async def reversiplook(target):
            await asyncmanner.reverseip(target)
        
        async def is_cloudflare(target):
            await asyncmanner.is_cloudflare(target)
        
        async def is_honeypot(target):
            await asyncmanner.is_honeypot(target)
        
        ```
        
        ## Webeye as CLI
        
        ![image](https://user-images.githubusercontent.com/60778335/136660017-6d40b0b9-f7e9-48b5-b7b3-83726bc39d81.png)
        
        
        
        ## Support
        Join the support [discord server here](https://discord.gg/xmu36SbCXC)
        
Keywords: webeye red_hawk nikto webrecon recondog
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.8
Description-Content-Type: text/markdown
