{"id":19428169,"url":"https://github.com/paveldat/gods-eye","last_synced_at":"2025-04-24T17:31:54.665Z","repository":{"id":64936396,"uuid":"576582670","full_name":"paveldat/Gods-eye","owner":"paveldat","description":"The God's EYE in Python","archived":false,"fork":false,"pushed_at":"2024-10-12T20:27:50.000Z","size":70,"stargazers_count":29,"open_issues_count":0,"forks_count":7,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-20T19:03:31.649Z","etag":null,"topics":["clickjacking","dns-lookup","god-s-eye","grabber","http","http-headers","ip","ip-finder","logger","nmap","nmap-scripts","nslookup","pwned","python","red-hat","robots-scanner","whois-lookup"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/paveldat.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-12-10T10:01:23.000Z","updated_at":"2025-02-18T04:43:10.000Z","dependencies_parsed_at":"2023-09-12T14:15:59.496Z","dependency_job_id":null,"html_url":"https://github.com/paveldat/Gods-eye","commit_stats":null,"previous_names":["paveldat/god-s-eye"],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paveldat%2FGods-eye","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paveldat%2FGods-eye/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paveldat%2FGods-eye/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/paveldat%2FGods-eye/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/paveldat","download_url":"https://codeload.github.com/paveldat/Gods-eye/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250674395,"owners_count":21469214,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clickjacking","dns-lookup","god-s-eye","grabber","http","http-headers","ip","ip-finder","logger","nmap","nmap-scripts","nslookup","pwned","python","red-hat","robots-scanner","whois-lookup"],"created_at":"2024-11-10T14:14:19.396Z","updated_at":"2025-04-24T17:31:54.251Z","avatar_url":"https://github.com/paveldat.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![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)\r\n\r\n# GOD'S EYE\r\nGod's EYE - Information Gathering Tool.\r\nGod's EYE is an Information Gathering Tool I made in python3.10.\r\n\r\n## Library installation\r\nAll modules located in the `src` directory are APIs, so you can build a library from the sources and use it in your projects.\r\n\r\n### 1. How to build a library from sources\r\n1) Clone this repo\r\n```shell\r\ngit clone https://github.com/paveldat/God-s-eye.git\r\n```\r\n2) Go to the cloned repository\r\n```shell\r\ncd God-s-eye\r\n```\r\n3) Install deb- and py-requirements\r\n```shell\r\npip install -r py-requirements.txt\r\nxargs sudo apt-get install \u003cdeb-requirements.txt\r\n```\r\n4) Run the following command\r\n```shell\r\npython3 -m build .\r\n```\r\n5) Now you can install library\r\n```shell\r\npip install dist/gods_eye-\u003cversion\u003e-py3-none-any.whl\r\n```\r\n\r\n### 2. Installation from `releases`\r\n1) Download `.whl` file form releases\r\n2) Run the following command:\r\n```shell\r\npip install \u003cdownloaded_file\u003e.whl\r\n```\r\n\r\n### 3. Installation from `PyPI`\r\n```shell\r\npip install gods-eye\r\n```\r\n\r\n## Tools\r\n1. Clickjacking - Checks if the clickjacking is possible on any Domain.\r\n2. DnsLookup - Looks for dns lookup information for IP or Domain.\r\n3. exec_shell_command - Common method to execute shell commands.\r\n4. HttpHeadersGrabber - Looks for HTTP Headers.\r\n5. GetHostname - Gets hostname and IP.\r\n6. IpInfoFinder - Gets information by IP or Domain. Info: ip, status, region, country, country code, region, region name, city, zip, lat, lon,\r\ntimezone, isp, org, as.\r\n7. Logger - Logger. The Logger has 2 handlers:\r\n    * stream handler into console;\r\n    * file handler into file.\r\n8. OneSecMail - Creates one-time temporary mail.\r\n9. PhoneInfo - Gets info by phone number.\r\n10. PasswordPwned - Checks if password has been compromised in a data breach.\r\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.\r\n12. WhoisLookup - Search for IP WHOIS information using the IP WHOIS lookup tool for any allocated IP address.\r\n\r\n## How to use\r\nNow you can use this library. To connect a module to your project, just import it.\r\nAll modules can be found in the `src` directory.\r\n\r\nExample:\r\n```python\r\nfrom clickjacking.clickjacking import ClickJacking\r\n```\r\n\r\nIt is not difficult to guess that the following template is used here:\r\n`from \u003cdirectory\u003e.\u003cfilename\u003e import \u003cclass_name\u003e`\r\nFor example:\r\n`from clickjacking.clickjacking import ClickJacking`\r\n\r\nBe careful, we don't use the `src` directory anymore.\r\n\r\n## PyPI\r\nhttps://pypi.org/project/gods-eye/\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaveldat%2Fgods-eye","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpaveldat%2Fgods-eye","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpaveldat%2Fgods-eye/lists"}