gods-eye


Namegods-eye JSON
Version 1.2.0 PyPI version JSON
download
home_pagehttps://github.com/paveldat/God-s-eye
SummaryA set of tools which should be used in Gods Eye
upload_time2024-10-12 20:27:36
maintainerNone
docs_urlNone
authorPavel Dat
requires_pythonNone
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![Build, Test, Deploy](https://github.com/paveldat/Gods-eye/actions/workflows/deploy-job.yml/badge.svg)](https://github.com/paveldat/Gods-eye/actions/workflows/deploy-job.yml)

# GOD'S EYE
God's EYE - Information Gathering Tool.
God's EYE is an Information Gathering Tool I made in python3.10.

## Library installation
All modules located in the `src` directory are APIs, so you can build a library from the sources and use it in your projects.

### 1. How to build a library from sources
1) Clone this repo
```shell
git clone https://github.com/paveldat/God-s-eye.git
```
2) Go to the cloned repository
```shell
cd God-s-eye
```
3) Install deb- and py-requirements
```shell
pip install -r py-requirements.txt
xargs sudo apt-get install <deb-requirements.txt
```
4) Run the following command
```shell
python3 -m build .
```
5) Now you can install library
```shell
pip install dist/gods_eye-<version>-py3-none-any.whl
```

### 2. Installation from `releases`
1) Download `.whl` file form releases
2) Run the following command:
```shell
pip install <downloaded_file>.whl
```

### 3. Installation from `PyPI`
```shell
pip install gods-eye
```

## Tools
1. Clickjacking - Checks if the clickjacking is possible on any Domain.
2. DnsLookup - Looks for dns lookup information for IP or Domain.
3. exec_shell_command - Common method to execute shell commands.
4. HttpHeadersGrabber - Looks for HTTP Headers.
5. GetHostname - Gets hostname and IP.
6. 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.
7. Logger - Logger. The Logger has 2 handlers:
    * stream handler into console;
    * file handler into file.
8. OneSecMail - Creates one-time temporary mail.
9. PhoneInfo - Gets info by phone number.
10. PasswordPwned - Checks if password has been compromised in a data breach.
11. 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.
12. WhoisLookup - Search for IP WHOIS information using the IP WHOIS lookup tool for any allocated IP address.

## How to use
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:
```python
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.

## PyPI
https://pypi.org/project/gods-eye/

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/paveldat/God-s-eye",
    "name": "gods-eye",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Pavel Dat",
    "author_email": "dats.pavel1999@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/51/99/68b31a792f0c32bdda48fcf3b9ab873e158e9e495c78f609d9321f20a7f1/gods_eye-1.2.0.tar.gz",
    "platform": null,
    "description": "[![Build, Test, Deploy](https://github.com/paveldat/Gods-eye/actions/workflows/deploy-job.yml/badge.svg)](https://github.com/paveldat/Gods-eye/actions/workflows/deploy-job.yml)\n\n# GOD'S EYE\nGod's EYE - Information Gathering Tool.\nGod's EYE is an Information Gathering Tool I made in python3.10.\n\n## Library installation\nAll modules located in the `src` directory are APIs, so you can build a library from the sources and use it in your projects.\n\n### 1. How to build a library from sources\n1) Clone this repo\n```shell\ngit clone https://github.com/paveldat/God-s-eye.git\n```\n2) Go to the cloned repository\n```shell\ncd God-s-eye\n```\n3) Install deb- and py-requirements\n```shell\npip install -r py-requirements.txt\nxargs sudo apt-get install <deb-requirements.txt\n```\n4) Run the following command\n```shell\npython3 -m build .\n```\n5) Now you can install library\n```shell\npip install dist/gods_eye-<version>-py3-none-any.whl\n```\n\n### 2. Installation from `releases`\n1) Download `.whl` file form releases\n2) Run the following command:\n```shell\npip install <downloaded_file>.whl\n```\n\n### 3. Installation from `PyPI`\n```shell\npip install gods-eye\n```\n\n## Tools\n1. Clickjacking - Checks if the clickjacking is possible on any Domain.\n2. DnsLookup - Looks for dns lookup information for IP or Domain.\n3. exec_shell_command - Common method to execute shell commands.\n4. HttpHeadersGrabber - Looks for HTTP Headers.\n5. GetHostname - Gets hostname and IP.\n6. IpInfoFinder - Gets information by IP or Domain. Info: ip, status, region, country, country code, region, region name, city, zip, lat, lon,\ntimezone, isp, org, as.\n7. Logger - Logger. The Logger has 2 handlers:\n    * stream handler into console;\n    * file handler into file.\n8. OneSecMail - Creates one-time temporary mail.\n9. PhoneInfo - Gets info by phone number.\n10. PasswordPwned - Checks if password has been compromised in a data breach.\n11. 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.\n12. WhoisLookup - Search for IP WHOIS information using the IP WHOIS lookup tool for any allocated IP address.\n\n## How to use\nNow you can use this library. To connect a module to your project, just import it.\nAll modules can be found in the `src` directory.\n\nExample:\n```python\nfrom clickjacking.clickjacking import ClickJacking\n```\n\nIt is not difficult to guess that the following template is used here:\n`from <directory>.<filename> import <class_name>`\nFor example:\n`from clickjacking.clickjacking import ClickJacking`\n\nBe careful, we don't use the `src` directory anymore.\n\n## PyPI\nhttps://pypi.org/project/gods-eye/\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A set of tools which should be used in Gods Eye",
    "version": "1.2.0",
    "project_urls": {
        "Homepage": "https://github.com/paveldat/God-s-eye"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ec3d09cbf1c46661928e2aa30430f651b748901db814c7b27ae377747250342",
                "md5": "ccd8211ee349b8e832c60885244631d5",
                "sha256": "ec2fb65268b17e7b86e26b9ad31cc3770818949d29c7e1eda370d404d72dd44b"
            },
            "downloads": -1,
            "filename": "gods_eye-1.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ccd8211ee349b8e832c60885244631d5",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 20888,
            "upload_time": "2024-10-12T20:27:34",
            "upload_time_iso_8601": "2024-10-12T20:27:34.476476Z",
            "url": "https://files.pythonhosted.org/packages/3e/c3/d09cbf1c46661928e2aa30430f651b748901db814c7b27ae377747250342/gods_eye-1.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "519968b31a792f0c32bdda48fcf3b9ab873e158e9e495c78f609d9321f20a7f1",
                "md5": "a61706a1d51c1c2539264de7c651cfd5",
                "sha256": "c2f6e82d3341ea3d42ac4d810f75f70a010364a44247b0ba026d94a8d906ec37"
            },
            "downloads": -1,
            "filename": "gods_eye-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a61706a1d51c1c2539264de7c651cfd5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 14929,
            "upload_time": "2024-10-12T20:27:36",
            "upload_time_iso_8601": "2024-10-12T20:27:36.326622Z",
            "url": "https://files.pythonhosted.org/packages/51/99/68b31a792f0c32bdda48fcf3b9ab873e158e9e495c78f609d9321f20a7f1/gods_eye-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-12 20:27:36",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "paveldat",
    "github_project": "God-s-eye",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gods-eye"
}
        
Elapsed time: 3.57664s