{"id":13791025,"url":"https://github.com/salaheldinaz/EIS3","last_synced_at":"2025-05-12T09:33:49.384Z","repository":{"id":50643493,"uuid":"478537307","full_name":"salaheldinaz/EIS3","owner":"salaheldinaz","description":"Search for information about ens domain or eth address using ENS contracts in Ethereum chain, and ENS metadata api.","archived":false,"fork":false,"pushed_at":"2023-05-23T08:21:20.000Z","size":577,"stargazers_count":12,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-11-18T05:38:36.332Z","etag":null,"topics":["domains","ens","ethereum","osint","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/salaheldinaz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-06T11:51:54.000Z","updated_at":"2024-03-22T00:08:33.000Z","dependencies_parsed_at":"2024-11-18T05:42:38.536Z","dependency_job_id":null,"html_url":"https://github.com/salaheldinaz/EIS3","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salaheldinaz%2FEIS3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salaheldinaz%2FEIS3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salaheldinaz%2FEIS3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salaheldinaz%2FEIS3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/salaheldinaz","download_url":"https://codeload.github.com/salaheldinaz/EIS3/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253709490,"owners_count":21951159,"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":["domains","ens","ethereum","osint","python"],"created_at":"2024-08-03T22:00:54.477Z","updated_at":"2025-05-12T09:33:49.071Z","avatar_url":"https://github.com/salaheldinaz.png","language":"Python","funding_links":[],"categories":["SMARTCONTRACTS"],"sub_categories":["TON APIs"],"readme":"[![Awesome](https://awesome.re/badge-flat2.svg)](https://github.com/salaheldinaz/eis)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)\n[![Docker Image CI](https://github.com/salaheldinaz/eis3/actions/workflows/docker-image.yml/badge.svg)](https://github.com/salaheldinaz/eis3/actions/workflows/docker-image.yml)\n\n\n\u003ch1 align=\"center\"\u003eENS Info Scanner (EIS 3.0)\u003c/h1\u003e\n\n*\u003cp align=\"center\"\u003eSearch for information about ens domain or eth address using ENS contracts in Ethereum chain, and ENS metadata api.\u003c/p\u003e*\n\n\n---\n\n### Check [@Ginsberg5150](https://twitter.com/Ginsberg5150) Talk at OSINT Summit 2022 \n\nhttps://github.com/Ginsberg5150/Web3\n\n[\u003cimg src=\"https://github.com/Ginsberg5150/Web3/raw/main/header.png\" align=\"center\"\u003e](https://github.com/Ginsberg5150/Web3)\n\n---\n\n### Prerequisite\n- Python 3.7 or newer.\n- Infura API key (free).  https://infura.io/\n\n### Installation\n```shell\npip install -r requirements.txt\n```\n\n---\n### Usage\n\n#### Single Domain Scan \n```shell\npython main.py -d \u003cdomain.eth\u003e -k \u003cinfura-api-key\u003e\n```\nex. `python main.py -d nick.eth -k 123456789abcdefg`\n\n---\n#### List of Domains Scan\n```shell\npython main.py -l \u003cpath-to-file\u003e -k \u003cinfura-api-key\u003e\n```\nex. `python main.py -l list.txt -k 123456789abcdefg`\n\nYou can use:\n\n`-s` to specify where to start in the list\n\n`-e` to specify where to stop in the list\n\nex. `-s 100 -e 200` \n\n---\n\n#### Ethereum Address Scan\n```shell\npython main.py -a \u003cethereum-address\u003e -k \u003cinfura-api-key\u003e\n```\nex. `python main.py -a 0xb8c2c29ee19d8307cb7255e1cd9cbde883a267d5 -k 123456789abcdefg`\n\n---\n\n### Using Docker\n\n##### Using the published image\n\nhttps://hub.docker.com/r/salaheldinaz/eis3\n\n```shell\ndocker run -it --rm -v `pwd`:/app/results/ salaheldinaz/eis3:latest -d nick.eth -k 123456789abcdefg\n```\n`pwd` This folder will be used to save the result.\n\n---\n\n##### Using a local docker image\n1. Build\n```shell\ndocker build -t \"eis3:latest\" . \n```\n\n2. Run\n```shell\ndocker run -it --rm -v `pwd`:/app/results/ eis3:latest -d nick.eth -k 123456789abcdefg\n```\n`pwd` This folder will be used to save the result.\n\n---\n### Output Example \n\n\u003cimg src=\"screenshot.png\" alt=\"screenshot\"\u003e\n\n---\n\nAuthors\n\n[![Michael James](https://img.shields.io/twitter/follow/ginsberg5150?style=social\u0026logo=twitter)](https://twitter.com/ginsberg5150)\n     [![Salaheldinaz](https://img.shields.io/twitter/follow/salaheldinaz?style=social\u0026logo=twitter)](https://twitter.com/salaheldinaz)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalaheldinaz%2FEIS3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsalaheldinaz%2FEIS3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalaheldinaz%2FEIS3/lists"}