01-recon-osint
Passive and active reconnaissance, subdomain enumeration, DNS analysis, technology fingerprinting, and OSINT data correlation for authorized security…
AWS/Azure/GCP security auditing, container and Kubernetes hardening, Infrastructure as Code scanning, and cloud compliance assessment
$ npx -y skills add Masriyan/Claude-Code-CyberSecurity-Skill --skill 10-cloud-security --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/10-cloud-securityContext preview
The summary Claude sees to decide when to auto-load this skill.
AWS/Azure/GCP security auditing, container and Kubernetes hardening, Infrastructure as Code scanning, and cloud compliance assessment
name: Cloud Security & Container Hardening description: AWS/Azure/GCP security auditing, container and Kubernetes hardening, Infrastructure as Code scanning, and cloud compliance assessment version: 3.1.0 author: Masriyan tags: [cybersecurity, cloud, aws, azure, gcp, kubernetes, docker, container, iac, terraform]
Enable Claude to assist with cloud security assessments across AWS, Azure, and GCP, container and Kubernetes security hardening, Infrastructure as Code (Terraform, CloudFormation, Kubernetes manifests) scanning, and cloud compliance reporting against CIS Benchmarks and major frameworks.
---
This skill activates when the user asks about:
---
pip install pyyaml boto3 requests
**Recommended cloud security tools:**
---
**When the user asks to audit AWS security:**
**Quick AWS security checks using CLI:**
# IAM: Find users without MFA
aws iam get-account-summary
aws iam list-users | jq '.Users[].UserName' | xargs -I{} aws iam list-mfa-devices --user-name {}
# Find overly permissive policies
aws iam list-policies --scope Local --only-attached | jq '.Policies[].PolicyName'
# S3: Find public buckets
aws s3api list-buckets --query 'Buckets[].Name' | xargs -I{} aws s3api get-bucket-acl --bucket {}
aws s3api list-buckets --query 'Buckets[].Name' | xargs -I{} aws s3api get-bucket-policy-status --bucket {}
# Security groups: Find wide-open rules
aws ec2 describe-security-groups --filters "Name=ip-permission.cidr,Values=0.0.0.0/0" \
--query 'SecurityGroups[*].{ID:GroupId,Name:GroupName,Rules:IpPermissions}'
# CloudTrail: Verify logging
aws cloudtrail describe-trails
aws cloudtrail get-trail-status --name [trail-name]
# Root account check
aws iam get-account-summary --query 'SummaryMap.AccountMFAEnabled'**AWS IAM Security Checklist:**
Identity & Access Management: [ ] Root account has MFA enabled [ ] Root account has no access keys [ ] All IAM users have MFA enabled [ ] No IAM users with AdministratorAccess unless necessary [ ] All IAM users have individual credentials (no shared) [ ] Password policy: min 14 chars, complexity, rotation ≤90 days [ ] Access keys rotated every 90 days [ ] Unused credentials disabled (>90 days no use) [ ] No inline policies; use managed policies S3 Security: [ ] Block Public Access enabled at account level [ ] No buckets with public READ ACL [ ] Server-side encryption enabled (SSE-S3 or SSE-KMS) [ ] Versioning enabled for critical buckets [ ] MFA Delete enabled for critical buckets [ ] Access logging enabled [ ] Bucket policies use HTTPS-only conditions Networking: [ ] No security groups with 0.0.0.0/0 → port 22 (SSH) [ ] No security groups with 0.0.0.0/0 → port 3389 (RDP) [ ] VPC Flow Logs enabled [ ] No default VPC in use for production workloads [ ] Private subnets for database and application tiers Monitoring & Detection: [ ] CloudTrail enabled in all regions [ ] CloudTrail log file integrity validation enabled [ ] GuardDuty enabled [ ] Security Hub enabled and findings reviewed [ ] Config rules configured for compliance [ ] CloudWatch alarms for: root login, failed auth, security group changes
**Critical AWS Finding Templates:**
**CRITICAL: S3 Bucket Publicly Readable**
Bucket: example-data-prod
Finding: GetBucketAcl returns AllUsers:READ
Risk: All objects publicly readable — potential data breach
Fix: aws s3api put-bucket-acl --bucket example-data-prod --acl private
Enable: aws s3api put-public-access-block --bucket example-data-prod \
--public-access-block-configuration BlockPublicAcls=true,IgnorePublicAcls=true,BlockPublicPolicy=true,RestrictPublicBuckets=true
**HIGH: Security Group Allows SSH from Internet**
Group: sg-0abc123 (web-servers)
Rule: Inbound TCP 22 from 0.0.0.0/0
Risk: SSH brute-force, CVE exploitation
Fix: Change source from 0.0.0.0/0 to your VPN/bastion host IP**When the user asks to audit Azure:**
# Login and set subscription
az login
az account set --subscription [subscription-id]
# Check RBAC assignments
az role assignment list --all --include-inherited \
--query "[?roleDefinitionName=='Owner' || roleDefinitionName=='Contributor'].{Name:principalName,Role:roleDefinitionName}"
# Storage account public access
az storage account list --query "[?allowBlobPublicAccess==true].name"
# NSG rules allowing any source
az network nsg list --query "[*].{NSG:name}" | jq '.[].NSG' | xargs -I{} \
az network nsg rule list --nsg-name {} --resource-group [rg] \
--query "[?sourceAddressPrefix=='*'].{Rule:name,Port:destinationPortRange}"
# Key Vault access policies
az keyvault list --query "[*].name" | xargs -I{} az keyvault show --name {} \
--query 'properties.accessPolicies'**Azure Security Checklist:**
Identity: [ ] Global Administrator role has MFA [ ] No more than 3-5 Global Administrators [ ] Privileged Identity Management (PIM) for elevated roles [ ] Guest accounts reviewed quarterly [ ] Legac
22 production-quality Claude Code Skills for cybersecurity professionals — covering offensive security, defensive operations, reverse engineering, threat hunting, threat intelligence, purple team / adversary emulation, CSOC automation, AI/LLM security,
Repo: Masriyan/Claude-Code-CyberSecurity-Skill
Passive and active reconnaissance, subdomain enumeration, DNS analysis, technology fingerprinting, and OSINT data correlation for authorized security…
Dependency auditing, CVE detection, configuration security review, CVSS scoring, and prioritized vulnerability reporting
Proof-of-concept development, payload crafting, shellcode analysis, and exploitation technique research for authorized security testing
Binary analysis, assembly interpretation, disassembly, decompilation, firmware RE, and protocol reverse engineering
Static and dynamic malware analysis, YARA rule generation, sandbox configuration, behavioral profiling, and malware family classification
IOC extraction, threat intelligence correlation, MITRE ATT&CK mapping, hunt hypothesis generation, and detection rule creation