God's EYE - Information Gathering Tool. God's EYE is an Information Gathering Tool I made in python3.10.
All modules located in the src
directory are APIs, so you can build a library from the sources and use it in your projects.
- Clone this repo
git clone https://github.com/paveldat/God-s-eye.git
- Go to the cloned repository
cd God-s-eye
- Install deb- and py-requirements
pip install -r py-requirements.txt
xargs sudo apt-get install <deb-requirements.txt
- Run the following command
python3 -m build .
- Now you can install library
pip install dist/gods_eye-<version>-py3-none-any.whl
- Download
.whl
file form releases - Run the following command:
pip install <downloaded_file>.whl
pip install gods-eye
- Clickjacking - Checks if the clickjacking is possible on any Domain.
- DnsLookup - Looks for dns lookup information for IP or Domain.
- exec_shell_command - Common method to execute shell commands.
- HttpHeadersGrabber - Looks for HTTP Headers.
- GetHostname - Gets hostname and IP.
- IpInfoFinder - Gets information by IP or Domain. Info: ip, status, region, country, country code, region, region name, city, zip, lat, lon, timezone, isp, org, as.
- Logger - Logger. The Logger has 2 handlers:
- stream handler into console;
- file handler into file.
- OneSecMail - Creates one-time temporary mail.
- PhoneInfo - Gets info by phone number.
- PasswordPwned - Checks if password has been compromised in a data breach.
- RobotsScanner - A robots.txt file tells search engine crawlers which URLs the crawler can access on your site. This class will search for this file, parse it and return the result.
- WhoisLookup - Search for IP WHOIS information using the IP WHOIS lookup tool for any allocated IP address.
Now you can use this library. To connect a module to your project, just import it.
All modules can be found in the src
directory.
Example:
from clickjacking.clickjacking import ClickJacking
It is not difficult to guess that the following template is used here:
from <directory>.<filename> import <class_name>
For example:
from clickjacking.clickjacking import ClickJacking
Be careful, we don't use the src
directory anymore.