| Kill Process | Sends SIGKILL to a process, terminating it immediately | None — process termination is permanent |
| Kill Container | Sends SIGKILL to the container runtime, terminating the container immediately | None — use with caution in production |
| Stop Container | Sends SIGTERM to the container, allowing a graceful shutdown | Start Container |
| Start Container | Starts a previously stopped container | None (undo for Stop Container) |
| Pause Container | Freezes the container runtime, suspending all processes while preserving state | Unpause Container |
| Unpause Container | Resumes a paused container, restoring all suspended processes | None (undo for Pause Container) |
| Delete Pod | Terminates the pod. If the pod is managed by a Deployment or ReplicaSet, Kubernetes creates a replacement | None — the replacement pod starts clean |
| Isolate Network | Applies a Kubernetes NetworkPolicy that blocks all ingress and egress traffic to and from the workload | Delete Network Policy |
| Delete Network Policy | Removes the isolation NetworkPolicy, restoring normal traffic | None (undo for Isolate Network) |
| File Quarantine | Moves a file to a sandbox directory, making it non-executable | File Unquarantine |
| File Unquarantine | Restores a quarantined file to its original location | None (undo for File Quarantine) |
| IAM Quarantine | Restricts an AWS IAM user or role by attaching a deny-all policy, preventing further API calls | IAM Unquarantine |
| IAM Unquarantine | Removes the deny-all policy from the IAM user or role, restoring their permissions | None (undo for IAM Quarantine) |
| Make Cloud Resource Private | Restricts network access to an AWS resource (S3 bucket or RDS instance), removing public access | Undo Make Cloud Resource Private |
| Undo Make Cloud Resource Private | Restores the previous public access settings for the AWS resource | None (undo for Make Cloud Resource Private) |