{"id":25074743,"url":"https://github.com/rix4uni/org2asn","last_synced_at":"2026-03-16T09:39:02.695Z","repository":{"id":193473793,"uuid":"688875151","full_name":"rix4uni/org2asn","owner":"rix4uni","description":"Extract ASN and IPs in bgp.he.net","archived":false,"fork":false,"pushed_at":"2025-01-03T06:18:59.000Z","size":18,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-15T00:12:49.402Z","etag":null,"topics":["bug-bounty","bugbounty","bugbountytips","hacking","infosec","org-finder","osint","osint-resources","osint-tool","penetration-testing","pentest-tool","pentesting","recon","reconnaissance","security","security-tools","threat-intelligence"],"latest_commit_sha":null,"homepage":"","language":"Go","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/rix4uni.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,"zenodo":null}},"created_at":"2023-09-08T09:36:43.000Z","updated_at":"2025-03-07T00:25:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"86e2a7d2-1317-45fa-b5d0-6e0667f34ae4","html_url":"https://github.com/rix4uni/org2asn","commit_stats":null,"previous_names":["rix4uni/org2asn"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/rix4uni/org2asn","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Forg2asn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Forg2asn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Forg2asn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Forg2asn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rix4uni","download_url":"https://codeload.github.com/rix4uni/org2asn/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rix4uni%2Forg2asn/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269677505,"owners_count":24457857,"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","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["bug-bounty","bugbounty","bugbountytips","hacking","infosec","org-finder","osint","osint-resources","osint-tool","penetration-testing","pentest-tool","pentesting","recon","reconnaissance","security","security-tools","threat-intelligence"],"created_at":"2025-02-07T00:18:26.409Z","updated_at":"2026-03-16T09:39:02.613Z","avatar_url":"https://github.com/rix4uni.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"## org2asn\n\nExtract ASN and IPs using bgp.he.net\n\n## Installation\n```\ngo install github.com/rix4uni/org2asn@latest\n```\n\n## Download prebuilt binaries\n```\nwget https://github.com/rix4uni/org2asn/releases/download/v0.0.3/org2asn-linux-amd64-0.0.3.tgz\ntar -xvzf org2asn-linux-amd64-0.0.3.tgz\nrm -rf org2asn-linux-amd64-0.0.3.tgz\nmv org2asn ~/go/bin/org2asn\n```\nOr download [binary release](https://github.com/rix4uni/org2asn/releases) for your platform.\n\n## Compile from source\n```\ngit clone --depth 1 github.com/rix4uni/org2asn.git\ncd org2asn; go install\n```\n\n## Usage\n```\nUsage of org2asn:\n  -json\n        Output in JSON format.\n  -list string\n        File with list of organization names to search ASN info for.\n  -org string\n        Organization name to search ASN info for.\n  -rate-limit int\n        Rate limit in seconds between requests.\n  -silent\n        Silent mode.\n  -timeout int\n        Timeout for each HTTP request in seconds. (default 10)\n  -version\n        Print the version of the tool and exit.\n```\n\n## Usage Examples\nSingle ORG\n```\n▶ echo \"dell\" | org2asn\n```\n\nMultiple ORGs\n```\n▶ cat orgnames.txt\ndell\ntesla\nyahoo\n\n▶ cat orgnames.txt | org2asn\n```\n\nManually Recursive ORG Search\n- Note: make sure you remove manually this will not take too much time, warning you automate this you will lose some results i already tried this and that's why i didn't added this feature.\n```\necho \"walmart\" | org2asn -silent | unew walmart_org2asn.txt\n\n# For advanced use and recursion, remove those not belong to your comapny in walmart_org2asn.txt and run.\ncat walmart_org2asn.txt | cut -d\"[\" -f5 | sed 's/]$//' | org2asn -silent | unew walmart_org2asn.txt\n\n# now remove those not belong to your comapny in walmart_org2asn.txt.\n```\n\n## `plain-text` Output\n```console\n▶ echo \"dell\" | org2asn\n\n[dell] [AS7977] [ASN] [Dell, Inc.]\n[dell] [AS64208] [ASN] [Dell, Inc.]\n[dell] [AS59915] [ASN] [Dell Products (Private Unlimited With Share Capital)]\n[dell] [AS54701] [ASN] [Dell, Inc.]\n[dell] [AS53878] [ASN] [Dell, Inc.]\n[dell] [AS46977] [ASN] [Dell, Inc.]\n[dell] [AS46507] [ASN] [Dell, Inc.]\n[dell] [AS4576] [ASN] [Michael \u0026 Susan Dell Foundation]\n[dell] [AS38057] [ASN] [Dell (China) Co.,Ltd]\n[dell] [AS3615] [ASN] [Dell, Inc.]\n[dell] [AS3614] [ASN] [Dell, Inc.]\n[dell] [AS3613] [ASN] [Dell, Inc.]\n[dell] [AS3612] [ASN] [Dell, Inc.]\n[dell] [AS30614] [ASN] [Dell, Inc.]\n[dell] [AS23144] [ASN] [Dell, Inc.]\n[dell] [AS216418] [ASN] [Filippo Sacco Comis Dell'Oste]\n[dell] [AS17187] [ASN] [Dell, Inc.]\n[dell] [AS14876] [ASN] [Dell, Inc.]\n[dell] [AS12257] [ASN] [Dell, Inc.]\n[dell] [65.36.34.0/24] [Route] [Michael \u0026 Susan Dell Foundation]\n[dell] [63.127.224.0/19] [Route] [DELL COMPUTER (C00824790)]\n[dell] [2a12:bec0:430::/44] [Route] [Filippo Sacco Comis Dell'Oste]\n[dell] [2620:145:400::/48] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:f1e0::/44] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:f080::/44] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:f000::/42] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:e01f::/48] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:e019::/48] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:e013::/48] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:e010::/48] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:c050::/44] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:c040::/44] [Route] [Dell, Inc.]\n[dell] [2607:f2b1::/43] [Route] [Dell, Inc.]\n[dell] [2607:f2b1:4001::/48] [Route] [Dell, Inc.]\n[dell] [209.222.75.0/24] [Route] [Dell, Inc.]\n[dell] [209.222.74.0/24] [Route] [Dell, Inc.]\n[dell] [204.75.145.0/24] [Route] [Dell, Inc.]\n[dell] [204.75.144.0/24] [Route] [Dell, Inc.]\n[dell] [204.197.220.0/24] [Route] [Dell, Inc.]\n[dell] [2001:df5:4c00::/48] [Route] [Dell SonicWALL]\n[dell] [199.245.235.0/24] [Route] [Dell, Inc.]\n[dell] [193.43.18.0/23] [Route] [Agenzia Regionale per la Protezione dell'Ambiente della Sardegna (ARPAS)]\n[dell] [193.43.141.0/24] [Route] [Istituto Zooprofilattico Sperimentale dell'Abruzzo e del Molise \"G. Caporale\"]\n[dell] [193.43.117.0/24] [Route] [Agenzia Regionale per la Protezione dell'Ambiente della Sardegna (ARPAS)]\n[dell] [192.150.196.0/24] [Route] [Universita' degli Studi dell'Aquila]\n[dell] [170.90.8.0/21] [Route] [Dell, Inc.]\n[dell] [170.90.79.0/24] [Route] [Dell, Inc.]\n[dell] [170.90.74.0/24] [Route] [Dell, Inc.]\n[dell] [170.90.64.0/22] [Route] [Dell, Inc.]\n[dell] [170.90.4.0/22] [Route] [Dell, Inc.]\n[dell] [170.90.16.0/22] [Route] [Dell, Inc.]\n[dell] [168.159.228.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.224.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.218.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.215.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.212.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.209.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.175.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.174.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.173.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.172.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.171.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.170.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.169.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.168.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.167.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.166.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.165.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.162.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.161.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.160.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.158.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.157.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.156.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.155.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.154.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.153.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.152.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.151.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.150.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.149.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.148.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.147.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.146.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.145.0/24] [Route] [Dell, Inc.]\n[dell] [168.159.144.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.72.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.64.0/23] [Route] [Dell, Inc.]\n[dell] [163.244.62.0/23] [Route] [Dell, Inc.]\n[dell] [163.244.60.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.57.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.56.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.40.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.38.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.37.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.246.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.24.0/23] [Route] [Dell, Inc.]\n[dell] [163.244.185.0/24] [Route] [Dell, Inc.]\n[dell] [163.244.12.0/22] [Route] [Dell, Inc.]\n[dell] [163.244.116.0/22] [Route] [Dell, Inc.]\n[dell] [163.244.0.0/16] [Route] [Dell, Inc.]\n[dell] [152.62.60.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.47.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.45.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.44.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.185.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.184.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.176.0/23] [Route] [Dell, Inc.]\n[dell] [152.62.168.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.166.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.155.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.154.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.118.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.115.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.113.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.109.0/24] [Route] [Dell, Inc.]\n[dell] [152.62.108.0/24] [Route] [Dell, Inc.]\n[dell] [147.178.9.0/24] [Route] [Dell, Inc.]\n[dell] [147.178.8.0/24] [Route] [Dell, Inc.]\n[dell] [147.178.7.0/24] [Route] [Dell, Inc.]\n[dell] [147.178.6.0/24] [Route] [Dell, Inc.]\n[dell] [147.178.5.0/24] [Route] [Dell, Inc.]\n[dell] [147.178.4.0/24] [Route] [Dell, Inc.]\n[dell] [147.178.252.0/24] [Route] [Dell, Inc.]\n[dell] [147.178.240.0/22] [Route] [Dell, Inc.]\n[dell] [147.178.2.0/24] [Route] [Dell, Inc.]\n[dell] [147.178.192.0/20] [Route] [Dell, Inc.]\n[dell] [143.166.208.0/21] [Route] [Dell, Inc.]\n[dell] [143.166.200.0/21] [Route] [Dell, Inc.]\n[dell] [143.166.15.0/24] [Route] [Dell, Inc.]\n[dell] [143.166.0.0/16] [Route] [Dell, Inc.]\n[dell] [137.69.127.0/24] [Route] [Dell, Inc.]\n[dell] [137.69.126.0/24] [Route] [Dell, Inc.]\n[dell] [137.69.120.0/24] [Route] [Dell, Inc.]\n[dell] [137.69.118.0/24] [Route] [Dell, Inc.]\n[dell] [137.69.117.0/24] [Route] [Dell, Inc.]\n[dell] [137.69.113.0/24] [Route] [Dell, Inc.]\n[dell] [137.69.112.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.196.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.194.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.192.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.186.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.185.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.184.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.181.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.180.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.18.0/23] [Route] [Dell, Inc.]\n[dell] [132.237.178.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.177.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.173.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.171.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.170.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.169.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.167.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.166.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.164.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.161.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.16.0/23] [Route] [Dell, Inc.]\n[dell] [132.237.16.0/22] [Route] [Dell, Inc.]\n[dell] [132.237.156.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.155.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.153.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.151.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.146.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.141.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.139.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.136.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.135.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.134.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.132.0/24] [Route] [Dell, Inc.]\n[dell] [132.237.130.0/23] [Route] [Dell, Inc.]\n[dell] [132.237.128.0/23] [Route] [Dell, Inc.]\n[dell] [128.221.239.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.238.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.237.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.236.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.235.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.234.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.233.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.231.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.230.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.228.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.227.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.226.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.225.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.224.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.223.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.222.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.221.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.220.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.219.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.218.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.217.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.215.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.214.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.213.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.211.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.210.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.209.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.208.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.204.0/24] [Route] [Dell, Inc.]\n[dell] [128.221.192.0/24] [Route] [Dell, Inc.]\n[dell] [103.19.169.0/24] [Route] [Dell SonicWALL]\n[dell] [103.19.168.0/24] [Route] [Dell SonicWALL]\n[dell] [103.13.13.0/24] [Route] [Dell (China) Co.,Ltd]\n[dell] [103.13.12.0/24] [Route] [Dell (China) Co.,Ltd]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frix4uni%2Forg2asn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frix4uni%2Forg2asn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frix4uni%2Forg2asn/lists"}