Skip to content
KitploitKITPLOIT
工具博客
提交
工具博客
提交

黑客、渗透测试和网络安全工具,武装您的安全武器库!

Kitploit 是一个黑客、网络安全和渗透测试工具的目录。发现最新的项目更新,查找漏洞、分析系统、自动化测试并加强你的安全。

··订阅源·联系·隐私·© 2026 Kitploit

工具目录

分类

查看所有分类
Loading categories
cloud_ip_ranges — 识别公有云提供商拥有的IP地址 | Kitploit
工具/GitHubGitHub/nccgroup/cloud_ip_ranges
云基础设施安全OSINT (开源情报)侦察网络映射信息收集
GitHubnccgroup/cloud_ip_ranges

cloud_ip_ranges

识别公有云提供商拥有的IP地址

查看仓库
125292年前Kitploit 审核通过

最受欢迎

查看全部 →

发现我们社区最常用的工具。

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

Cloud IP Ranges

描述

大多数云服务提供商都会发布其 IP 地址范围的最新列表。该工具通过获取并解析最新列表,判断某个 IP 是否属于某个提供商的地址范围。

支持:

  • AWS (来源)
  • Azure (来源)
  • Google Cloud Platform (来源)
  • Alibaba Cloud (目前不发布列表)
  • Oracle Cloud Infrastructure (来源)
  • IBM Cloud (目前不发布列表)
  • DigitalOcean (来源)

该工具的灵感来自 Bryce Kunz 所写的 Nimbusland。

用法

推荐的安装方式是使用 pipx:

root@kitploit:~
$ pipx install https://github.com/nccgroup/cloud_ip_ranges
$ cloud_ip_ranges

或者,你可以创建虚拟环境并安装依赖:

root@kitploit:~
$ virtualenv -p python3 venv
$ source venv/bin/activate
$ pip install -r requirements.txt

运行该工具:

root@kitploit:~
$ cloud_ip_ranges -h

usage: cloud_ip_ranges [-h] [-q] ip

positional arguments:
  ip           The IP to evaluate, e.g.: 8.8.8.8

optional arguments:
  -h, --help   show this help message and exit
  -q, --quiet  Suppress logging output

$ cloud_ip_ranges 52.4.0.0

2020-09-18 17:38:42 host __main__[21549] INFO Starting
2020-09-18 17:38:42 host __main__[21549] INFO Checking for AWS
2020-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"
2020-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"
2020-09-18 17:38:43 host __main__[21549] INFO Checking for Azure
2020-09-18 17:38:44 host __main__[21549] INFO Checking for GCP
2020-09-18 17:38:44 host __main__[21549] INFO Checking for OCI
2020-09-18 17:38:44 host __main__[21549] INFO Done
下载工具