Library

Command reference

Search the live database for syntax, tools, use cases, tags, MITRE context, and safe lab-ready command examples.

140 results Clear filters
Defensive Intermediate Free

Check S3 bucket encryption.

Check S3 bucket encryption.

aws s3api get-bucket-encryption --bucket example-bucket
aws-cli cloud-security expanded-library
AWS CLI / Cloud Security Open
Defensive Intermediate Free

Review S3 public access block settings.

Review S3 public access block settings.

aws s3api get-public-access-block --bucket example-bucket
aws-cli cloud-security expanded-library
AWS CLI / Cloud Security Open
Defensive Intermediate Free

List security group names.

List security group names.

aws ec2 describe-security-groups --query "SecurityGroups[].GroupName"
aws-cli cloud-security expanded-library
AWS CLI / Cloud Security Open
Defensive Intermediate Free

List GuardDuty finding IDs.

List GuardDuty finding IDs.

aws guardduty list-findings --detector-id detector-id
aws-cli cloud-security expanded-library
AWS CLI / Cloud Security Open
Defensive Intermediate Free

List KMS keys.

List KMS keys.

aws kms list-keys
aws-cli cloud-security expanded-library
AWS CLI / Cloud Security Open
Defensive Intermediate Free

Review AWS Config rule compliance.

Review AWS Config rule compliance.

aws configservice describe-compliance-by-config-rule
aws-cli cloud-security expanded-library
AWS CLI / Cloud Security Open
Defensive Intermediate Free

Review current Kubernetes RBAC permissions.

Review current Kubernetes RBAC permissions.

kubectl auth can-i --list
kubernetes container-security expanded-library
Kubernetes / Container Security Open
Defensive Intermediate Free

List pods across namespaces with node context.

List pods across namespaces with node context.

kubectl get pods -A -o wide
kubernetes container-security expanded-library
Kubernetes / Container Security Open
Defensive Intermediate Free

Review Kubernetes network policies.

Review Kubernetes network policies.

kubectl get networkpolicies -A
kubernetes container-security expanded-library
Kubernetes / Container Security Open
Defensive Intermediate Free

Review RBAC bindings.

Review RBAC bindings.

kubectl get rolebindings,clusterrolebindings -A
kubernetes container-security expanded-library
Kubernetes / Container Security Open
Offensive Beginner Free

Full port scan with service/version detection and default scripts on a subnet

Full port scan with service/version detection and default scripts on a subnet

nmap -sV -sC -p- --open -T4 192.168.1.0/24
nmap recon port-scan network enumeration
Nmap / Reconnaissance Open
Offensive Intermediate Free

Combined TCP SYN and UDP scan on common ports

Combined TCP SYN and UDP scan on common ports

nmap -sU -sS -p U:53,111,137,T:21-25,80,139,8080 192.168.1.1
nmap udp tcp stealth recon
Nmap / Reconnaissance Open