用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CyberStrikeus/CyberStrike --skill cis-aws-foundations-4-4命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
macOS post-exploitation for credential harvesting, DTrace monitoring, TCC bypass, and stealth operations via native tools
Windows userland post-exploitation for credential harvesting, monitoring, AMSI/ETW bypass, and stealth operations
Kubernetes post-exploitation for container escape, secret extraction, RBAC abuse, and cluster persistence
基于 SOC 职业分类
| name | cis-aws-foundations-4.4 |
| description | Ensure that server access logging is enabled on the CloudTrail S3 bucket |
| category | cis-logging |
| version | 7.0.0 |
| author | cyberstrike-official |
| tags | ["cis","aws","logging","cloudtrail","s3","server-access-logging"] |
| cis_id | 4.4 |
| cis_benchmark | CIS AWS Foundations Benchmark v7.0.0 |
| tech_stack | ["aws"] |
| cwe_ids | [] |
| chains_with | ["cis-aws-foundations-4.1","cis-aws-foundations-4.5"] |
| prerequisites | [] |
| severity_boost | {} |
Server access logging generates a log that contains access records for each request made to your S3 bucket. An access log record contains details about the request, such as the request type, the resources specified in the request worked, and the time and date the request was processed. It is recommended that server access logging be enabled on the CloudTrail S3 bucket.
By enabling server access logging on target S3 buckets, it is possible to capture all events that may affect objects within any target bucket. Configuring the logs to be placed in a separate bucket allows access to log information that can be useful in security and incident response workflows. In some environments (e.g., AWS Control Tower), logs may be delivered to the same bucket with appropriate prefixes, which is also an acceptable configuration.
N/A
Trails.All Buckets click on a target S3 bucket.Properties in the top right of the console.Server access logging.Server access logging is Enabled.Target bucket where logs are delivered.aws cloudtrail describe-trails --query 'trailList[*].S3BucketName'
aws s3api get-bucket-logging --bucket <s3-bucket-for-cloudtrail>
Ensure the command does not return an empty output.
Sample output for a bucket with logging enabled:
{
"LoggingEnabled": {
The CloudTrail S3 bucket has server access logging enabled with a valid TargetBucket and TargetPrefix configured.
All Buckets click on the target S3 bucket.Properties in the top right of the console.Server access logging, click Edit.Enabled box.Save.aws cloudtrail describe-trails --region <region-name> --query trailList[*].S3BucketName
{
"LoggingEnabled": {
"TargetBucket": "<TargetBucket>",
"TargetPrefix": "<TargetPrefix>",
"TargetGrants": [
{
"Grantee": {
"Type": "AmazonCustomerByEmail",
"EmailAddress": ""
},
"Permission": "FULL_CONTROL"
}
]
}
}
<file>.jsonaws s3api put-bucket-logging --bucket <bucket-name> --bucket-logging-status file://<file>.json
By default, server access logging is disabled on S3 buckets, including those used for CloudTrail. Without enabling this setting, no record of access requests to the CloudTrail bucket is captured, leaving organizations without visibility into who accessed log files or how they were used.
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 3.14 Log Sensitive Data Access - Log sensitive data access, including modification and disposal. | x | ||
| v8 | 8.2 Collect Audit Logs - Collect audit logs. Ensure that logging, per the enterprise's audit log management process, has been enabled across enterprise assets. | x | x | x |
| v7 | 6.2 Activate audit logging - Ensure that local logging has been enabled on all systems and networking devices. | x | x | x |
| v7 | 14.9 Enforce Detail Logging for Access or Changes to Sensitive Data - Enforce detailed audit logging for access to sensitive data or changes to sensitive data. | x |
| Techniques / Sub-techniques | Tactics | Mitigations |
|---|---|---|
| TA0005, TA0009 | M1047 |
Level 1 | Manual