Metadata-Version: 2.1
Name: webeye
Version: 1.0.0
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
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
License-File: LICENSE

# 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 Webeye
# configuring
Tools=Webeye()
# tool for running coroutines
run = Tools.ses.run
# host 
host="quotientbot.xyz"
# schema
schema="https://"
# subdomains
subdomains=run(Tools.subenum(host=host))
# dns lookup
dns=run(Tools.dns(host=host))
# banner grabber
grabbed=run(Tools.grab(host=schema+host))
# check for ports
ports=run(Tools.portscan(host=host))
# cloudflare
detected=run(Tools.cloudflare(host=schema+host))

```
# custom things

## custom Loops
```py
Tools=Webeye(loop=your_loop)
```
## custom Sessions
```py
Tools=Webeye(session=your_session)
```
# Support
Join the support [discord server here](https://discord.gg/xmu36SbCXC)


