Files
Anthropic-Cybersecurity-Skills/skills/building-cloud-security-posture-management/references/api-reference.md
T
mukul975 27c6414ca5 Add folder anatomy (scripts/agent.py + references/api-reference.md) for 648 cybersecurity skills
Complete skill folder anatomy across all cybersecurity skills:
- scripts/agent.py: 80-150 line Python agents using real libraries (impacket,
  boto3, azure-mgmt-*, kubernetes, pefile, yara, scapy, shodan, stix2, etc.)
- references/api-reference.md: real API documentation with method signatures
- LICENSE: MIT license for all skill folders
2026-03-10 21:02:12 +01:00

1.9 KiB

API Reference: Building Cloud Security Posture Management

boto3 - AWS CSPM Checks

S3 Public Access

s3 = boto3.client("s3")
pab = s3.get_public_access_block(Bucket="my-bucket")
config = pab["PublicAccessBlockConfiguration"]

Unencrypted EBS Volumes

ec2 = boto3.client("ec2")
for vol in ec2.describe_volumes()["Volumes"]:
    if not vol["Encrypted"]:
        print(f"Unencrypted: {vol['VolumeId']}")

Open Security Groups

for sg in ec2.describe_security_groups()["SecurityGroups"]:
    for rule in sg["IpPermissions"]:
        for ip in rule.get("IpRanges", []):
            if ip["CidrIp"] == "0.0.0.0/0":
                print(f"OPEN: {sg['GroupId']} port {rule['FromPort']}")

IAM Users Without MFA

iam = boto3.client("iam")
for user in iam.list_users()["Users"]:
    mfa = iam.list_mfa_devices(UserName=user["UserName"])["MFADevices"]
    if not mfa:
        print(f"No MFA: {user['UserName']}")

Public RDS Instances

rds = boto3.client("rds")
for db in rds.describe_db_instances()["DBInstances"]:
    if db["PubliclyAccessible"]:
        print(f"Public RDS: {db['DBInstanceIdentifier']}")

Key CSPM Checks

Check Service boto3 Method
Public S3 S3 get_public_access_block()
Unencrypted EBS EC2 describe_volumes()
Open SGs EC2 describe_security_groups()
No MFA IAM list_mfa_devices()
Public RDS RDS describe_db_instances()
CloudTrail CloudTrail describe_trails()

Steampipe (SQL-Based CSPM)

select name, region, server_side_encryption_configuration
from aws_s3_bucket
where server_side_encryption_configuration is null;

References