{"id":14483150,"url":"https://github.com/nccgroup/cloud_ip_ranges","last_synced_at":"2025-09-02T14:30:36.313Z","repository":{"id":49449240,"uuid":"297266370","full_name":"nccgroup/cloud_ip_ranges","owner":"nccgroup","description":"Identify IP addresses owned by public cloud providers ","archived":false,"fork":false,"pushed_at":"2024-07-02T08:21:04.000Z","size":20,"stargazers_count":119,"open_issues_count":6,"forks_count":30,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-04-03T18:22:16.362Z","etag":null,"topics":["cloud","osint"],"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/nccgroup.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":"2020-09-21T07:47:38.000Z","updated_at":"2025-03-31T17:43:22.000Z","dependencies_parsed_at":"2024-11-10T23:25:35.100Z","dependency_job_id":"bfaa9cc8-92c6-4cae-8b7e-3030f68d4606","html_url":"https://github.com/nccgroup/cloud_ip_ranges","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nccgroup/cloud_ip_ranges","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nccgroup%2Fcloud_ip_ranges","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nccgroup%2Fcloud_ip_ranges/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nccgroup%2Fcloud_ip_ranges/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nccgroup%2Fcloud_ip_ranges/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nccgroup","download_url":"https://codeload.github.com/nccgroup/cloud_ip_ranges/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nccgroup%2Fcloud_ip_ranges/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273297461,"owners_count":25080405,"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-09-02T02:00:09.530Z","response_time":77,"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":["cloud","osint"],"created_at":"2024-09-03T00:01:33.357Z","updated_at":"2025-09-02T14:30:35.997Z","avatar_url":"https://github.com/nccgroup.png","language":"Python","readme":"# Cloud IP Ranges\n\n## Description\n\nMost cloud providers publish up to date lists of their IP address ranges. This tools identifies if an IP belongs to a provider's ranges by fetching and parsing the latest lists.\n\nSupports:\n\n- [x] AWS ([source](https://ip-ranges.amazonaws.com/ip-ranges.json)) \n- [x] Azure ([source](https://www.microsoft.com/en-us/download/confirmation.aspx?id=56519))\n- [x] Google Cloud Platform ([source](https://www.gstatic.com/ipranges/cloud.json))\n- [ ] Alibaba Cloud (currently doesn't publish lists)\n- [x] Oracle Cloud Infrastructure ([source](https://docs.cloud.oracle.com/en-us/iaas/tools/public_ip_ranges.json))\n- [ ] IBM Cloud (currently doesn't publish lists)\n- [x] DigitalOcean ([source](http://digitalocean.com/geo/google.csv))\n\nThis tool is inspired by [Nimbusland](https://gist.github.com/TweekFawkes/ff83fe294f82f6d73c3ad14697e43ad5) by [Bryce Kunz](http://www.brycekunz.com/).\n\n## Usage\n\nThe preferred installation method is with [`pipx`](https://pipxproject.github.io/pipx/):\n\n```shell script\n$ pipx install https://github.com/nccgroup/cloud_ip_ranges\n$ cloud_ip_ranges\n```\n\nAlternatively, you can setup a virtual environment and install dependencies:\n\n```shell script\n$ virtualenv -p python3 venv\n$ source venv/bin/activate\n$ pip install -r requirements.txt\n```\n\nRun the tool:\n\n```shell script\n$ cloud_ip_ranges -h\n\nusage: cloud_ip_ranges [-h] [-q] ip\n\npositional arguments:\n  ip           The IP to evaluate, e.g.: 8.8.8.8\n\noptional arguments:\n  -h, --help   show this help message and exit\n  -q, --quiet  Suppress logging output\n\n$ cloud_ip_ranges 52.4.0.0\n\n2020-09-18 17:38:42 host __main__[21549] INFO Starting\n2020-09-18 17:38:42 host __main__[21549] INFO Checking for AWS\n2020-09-18 17:38:43 host __main__[21549] INFO Match for AWS range \"52.4.0.0/14\", region \"us-east-1\" and service \"AMAZON\"\n2020-09-18 17:38:43 host __main__[21549] INFO Match for AWS range \"52.4.0.0/14\", region \"us-east-1\" and service \"EC2\"\n2020-09-18 17:38:43 host __main__[21549] INFO Checking for Azure\n2020-09-18 17:38:44 host __main__[21549] INFO Checking for GCP\n2020-09-18 17:38:44 host __main__[21549] INFO Checking for OCI\n2020-09-18 17:38:44 host __main__[21549] INFO Done\n```\n","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnccgroup%2Fcloud_ip_ranges","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnccgroup%2Fcloud_ip_ranges","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnccgroup%2Fcloud_ip_ranges/lists"}