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

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

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

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

工具目录

分类

查看所有分类
Loading categories
cloudgpt — 基于 ChatGPT 的 AWS 客户托管策略漏洞扫描器 | Kitploit
工具/GitHubGitHub/ustayready/cloudgpt
漏洞扫描器配置审计渗透测试云安全错误配置AI 安全
GitHubustayready/cloudgpt

cloudgpt

基于 ChatGPT 的 AWS 客户托管策略漏洞扫描器

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

最受欢迎

查看全部 →

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

探索所有工具

浏览我们的工具集合

查看所有工具 →
分享

CloudGPT

AWS 漏洞扫描器

使用 ChatGPT 扫描客户管理的 AWS 策略以查找漏洞。

该工具会自动将客户账号替换为随机生成的账号,从而在将策略发送给 ChatGPT 之前对其进行脱敏处理。对于 OpenAI 而言,仅知道存在漏洞的策略而不知道配置了该策略的账号是毫无用处的。此外,内部提示词始终会返回以 Yes 或 No 开头的响应,因此我们只解析响应的这一部分来判断是否存在漏洞。使用该工具的用户应手动检查输出中的响应,以确定其上下文。它并不完美,但绝对很有帮助。

在 Twitter 上关注我 (Mike Felch - @ustayready)

基本用法

需要 OpenAI API 密钥

root@kitploit:~
usage: scan.py [-h] --key KEY [--profile PROFILE] [--redact]

Retrieve all customer managed policies and check the default policy version for vulnerabilities

optional arguments:
  -h, --help         show this help message and exit
  --key KEY          OpenAI API key
  --profile PROFILE  AWS profile name to use (default: default)
  --redact           Redact sensitive information in the policy document (default: True)
  
CloudGPT the AWS vulnerability scanner

python scan.py --key ABC --profile AWSPROFILE

安装

您可以通过以下命令安装并运行:

root@kitploit:~
$ git clone https://github.com/ustayready/cloudgpt
$ cd cloudgpt
~/cloudgpt $ virtualenv -p python3 .
~/cloudgpt $ source bin/activate
(cloudgpt) ~/cloudgpt $ python scan.py
下载工具