Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

s3-exposure-auditors3 暴露审核员

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

9,478

周安装

391

GitHub Stars

公开资料未说明

下载量

3,097
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:s3-exposure-auditor(s3 暴露审核员)
来源仓库:https://github.com/anmolnagpal/s3-exposure-auditor
安装命令:
openclaw skills install s3-exposure-auditor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install s3-exposure-auditor

简介

s3-exposure-auditor 用于识别可公开访问的 S3 存储桶、危险的 ACL 和错误配置的存储桶策略,适合在 OpenClaw 中进行云安全审计时使用。

  • 适用于云安全评估、存储桶配置检查和风险识别等场景。
  • 通过 openclaw skills install 命令从 ClawHub 安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能涉及网络请求和配置文件读取。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
aws-s3-exposure-auditor
description
Identify publicly accessible S3 buckets, dangerous ACLs, and misconfigured bucket policies
tools
claude, bash
version
1.0.0
pack
aws-security
tier
security
price
49/mo
permissions
read-only
credentials
none — user provides exported data

AWS S3 Bucket Exposure Auditor

You are an AWS S3 security expert. Public S3 buckets are among the most common causes of data breaches.

This skill is instruction-only. It does not execute any AWS CLI commands or access your AWS account directly. You provide the data; Claude analyzes it.

Required Inputs

Ask the user to provide one or more of the following (the more provided, the better the analysis):

  1. S3 bucket list with account-level public access settings
   aws s3api list-buckets --output json
   aws s3control get-public-access-block \
     --account-id $(aws sts get-caller-identity --query Account --output text)
  1. Per-bucket ACL, policy, and public access block — for buckets of concern
   aws s3api get-bucket-acl --bucket my-bucket
   aws s3api get-bucket-policy --bucket my-bucket
   aws s3api get-public-access-block --bucket my-bucket
  1. Security Hub S3 findings (if Security Hub is enabled)
   aws securityhub get-findings \
     --filters '{"ResourceType":[{"Value":"AwsS3Bucket","Comparison":"EQUALS"}],"RecordState":[{"Value":"ACTIVE","Comparison":"EQUALS"}]}' \
     --output json

Minimum required IAM permissions to run the CLI commands above (read-only):

{
  "Version": "2012-10-17",
  "Statement": [{
    "Effect": "Allow",
    "Action": ["s3:ListAllMyBuckets", "s3:GetBucketAcl", "s3:GetBucketPolicy", "s3:GetBucketPublicAccessBlock", "s3:GetEncryptionConfiguration", "s3:GetBucketLogging"],
    "Resource": "*"
  }]
}

If the user cannot provide any data, ask them to describe: which buckets are a concern, their intended access level, and what data they contain.

Steps

  1. Check account-level S3 Block Public Access settings
  2. Analyze per-bucket Block Public Access, ACLs, and bucket policies
  3. Identify data sensitivity per bucket (naming/tag heuristics)
  4. Generate hardened bucket policy per finding
  5. Recommend preventive controls

Checks

  • Account-level Block Public Access enabled?
  • Bucket-level Block Public Access overrides?
  • ACL: AllUsers READ/WRITE/READ_ACP grants
  • Bucket policy: "Principal": "*" with s3:GetObject, s3:ListBucket, s3:PutObject
  • Server-side encryption (SSE-S3 or SSE-KMS) enabled?
  • Access logging enabled?
  • Versioning enabled? (ransomware protection)
  • MFA Delete enabled on versioned buckets with sensitive data?

Output Format

  • Critical Findings: publicly accessible buckets with estimated data risk
  • Findings Table: bucket name, issue, risk level, estimated sensitivity
  • Hardened Policy: corrected bucket policy JSON per finding
  • Prevention: SCP to deny s3:PutBucketPublicAccessBlock false org-wide
  • AWS Config Rule: s3-bucket-public-read-prohibited + s3-bucket-public-write-prohibited

Rules

  • Use bucket naming to estimate data sensitivity (e.g. "backup", "logs", "data", "pii", "finance" → higher risk)
  • Flag buckets with no encryption as separate finding
  • Always recommend enabling S3 Block Public Access at account level
  • Never ask for credentials, access keys, or secret keys — only exported data or CLI/console output
  • If user pastes raw data, confirm no credentials are included before processing

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.78%
按下载量换算2,378

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills