{"id":13842089,"url":"https://github.com/krishpranav/webinfo","last_synced_at":"2025-04-14T23:34:17.833Z","repository":{"id":109908054,"uuid":"371919478","full_name":"krishpranav/webinfo","owner":"krishpranav","description":"A web information gathering tool made in go - DNS / Subdomains / Ports / Directories enumeration","archived":false,"fork":false,"pushed_at":"2021-05-29T13:22:02.000Z","size":281,"stargazers_count":8,"open_issues_count":0,"forks_count":6,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T11:39:34.032Z","etag":null,"topics":["directory-enumeration","dns-lookup","go","golang","hacking","information-gathering","information-gathering-tool","port-scanner","port-scanner-in-go","portscanner","subdomain-enumeration","website-information"],"latest_commit_sha":null,"homepage":"","language":"Go","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/krishpranav.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-05-29T08:22:30.000Z","updated_at":"2024-08-28T23:29:46.000Z","dependencies_parsed_at":"2023-05-28T23:45:50.388Z","dependency_job_id":null,"html_url":"https://github.com/krishpranav/webinfo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishpranav%2Fwebinfo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishpranav%2Fwebinfo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishpranav%2Fwebinfo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/krishpranav%2Fwebinfo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/krishpranav","download_url":"https://codeload.github.com/krishpranav/webinfo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248980246,"owners_count":21193131,"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":["directory-enumeration","dns-lookup","go","golang","hacking","information-gathering","information-gathering-tool","port-scanner","port-scanner-in-go","portscanner","subdomain-enumeration","website-information"],"created_at":"2024-08-04T17:01:27.086Z","updated_at":"2025-04-14T23:34:17.807Z","avatar_url":"https://github.com/krishpranav.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# webinfo\nA web information gathering tool made in go - DNS / Subdomains / Ports / Directories enumeration\n\n[![forthebadge](https://forthebadge.com/images/badges/made-with-go.svg)](https://forthebadge.com)\n\n# Installation\n```\ngit clone https://github.com/krishpranav/webinfo\ncd webinfo\ngo get\nmake\n```\n\nExamples\n----------\n\n- DNS enumeration:\n    \n    - `webinfo dns -target target.domain`\n    - `webinfo dns -o txt -target target.domain`\n    - `webinfo dns -o html -target target.domain`\n    - `webinfo dns -plain -target target.domain`\n\n- Subdomains enumeration:\n\n    - `webinfo subdomain -target target.domain`\n    - `webinfo subdomain -w wordlist.txt -target target.domain`\n    - `webinfo subdomain -o txt -target target.domain`\n    - `webinfo subdomain -o html -target target.domain`\n    - `webinfo subdomain -i 400 -target target.domain`\n    - `webinfo subdomain -i 4** -target target.domain`\n    - `webinfo subdomain -c -target target.domain`\n    - `webinfo subdomain -db -target target.domain`\n    - `webinfo subdomain -plain -target target.domain`\n\n- Directories enumeration:\n\n    - `webinfo dir -target target.domain`\n    - `webinfo dir -w wordlist.txt -target target.domain`\n    - `webinfo dir -o txt -target target.domain`\n    - `webinfo dir -o html -target target.domain`\n    - `webinfo dir -i 500,401 -target target.domain`\n    - `webinfo dir -i 5**,401 -target target.domain`\n    - `webinfo dir -c -target target.domain`\n    - `webinfo dir -plain -target target.domain`\n\n- Ports enumeration:\n      \n    - Default (all ports, so 1-65635) `webinfo port -target target.domain`\n    - Specifying ports range `webinfo port -p 20-90 -target target.domain`\n    - Specifying starting port (until the last one) `webinfo port -p 20- -target target.domain`\n    - Specifying ending port (from the first one) `webinfo port -p -90 -target target.domain`\n    - Specifying single port `webinfo port -p 80 -target target.domain`\n    - Specifying output format (txt)`webinfo port -o txt -target target.domain`\n    - Specifying output format (html)`webinfo port -o html -target target.domain`\n    - Specifying multiple ports `webinfo port -p 21,25,80 -target target.domain`\n    - Specifying common ports `webinfo port -common -target target.domain`\n    - Print only results `webinfo port -plain -target target.domain`\n\n- Full report:\n      \n    - Default (all ports, so 1-65635) `webinfo report -target target.domain`\n    - Specifying ports range `webinfo report -p 20-90 -target target.domain`\n    - Specifying starting port (until the last one) `webinfo report -p 20- -target target.domain`\n    - Specifying ending port (from the first one) `webinfo report -p -90 -target target.domain`\n    - Specifying single port `webinfo report -p 80 -target target.domain`\n    - Specifying output format (txt)`webinfo report -o txt -target target.domain`\n    - Specifying output format (html)`webinfo report -o html -target target.domain`\n    - Specifying directories wordlist `webinfo report -wd dirs.txt -target target.domain`\n    - Specifying subdomains wordlist `webinfo report -ws subdomains.txt -target target.domain`\n    - Specifying status codes to be ignored in directories scanning `webinfo report -id 500,501,502 -target target.domain`\n    - Specifying status codes to be ignored in subdomains scanning `webinfo report -is 500,501,502 -target target.domain`\n    - Specifying status codes classes to be ignored in directories scanning `webinfo report -id 5**,4** -target target.domain`\n    - Specifying status codes classes to be ignored in subdomains scanning `webinfo report -is 5**,4** -target target.domain`\n    - Use also a web crawler for directories enumeration `webinfo report -cd -target target.domain`\n    - Use also a web crawler for subdomains enumeration `webinfo report -cs -target target.domain`\n    - Use also a public database for subdomains enumeration `webinfo report -db -target target.domain`\n    - Specifying multiple ports `webinfo report -p 21,25,80 -target target.domain`\n    - Specifying common ports `webinfo report -common -target target.domain`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrishpranav%2Fwebinfo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkrishpranav%2Fwebinfo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkrishpranav%2Fwebinfo/lists"}