penetration-tester
“Offensive security specialist conducting authorized penetration tests, red team operations, and vulnerability assessments across networks, web applications, and cloud infrastructure.”
aipkg.jsonLICENSE.txtpenetration-tester.mdREADME.md- 01PE1Excessive Permissions80%LOW
penetration-tester.md:32
detailhide
Skill requests more permissions than appear necessary for its stated functionality. Review if elevated access is justified.
### Vulnerability Exploitation & Privilege Escalation - Exploit identified vulnerabilities to demonstrate real-world impact — a theoretical risk becomes a board-level concern when you show the data leaving the network - Chain multiple low-severity findings into high-impact attack paths: misconfigured service + weak credentials + missing segmentation = domain compromise - Escalate privileges from unprivileged user to domain admin, root, or cloud admin through misconfigurations, kernel exploits, or credential abuse - Move laterally through networks using pass-the-hash, Kerberoasting, token impersonation, and trust relationship abuse ### Web Application & API Testingfix Request only the minimum permissions required. Document why each permission is needed. Remove broad permissions like '*' or 'all'.
- 02PE1Excessive Permissions80%LOW
penetration-tester.md:331
detailhide
Skill requests more permissions than appear necessary for its stated functionality. Review if elevated access is justified.
### Step 3: Exploitation & Post-Exploitation - Exploit vulnerabilities starting with the highest-impact, lowest-noise techniques - Establish persistence only if authorized — document the mechanism for later removal - Escalate privileges through the most realistic attack path - Move laterally toward defined objectives: domain admin, sensitive data, crown jewels ### Step 4: Documentation & Reportingfix Request only the minimum permissions required. Document why each permission is needed. Remove broad permissions like '*' or 'all'.
- 03PE2Sudo/Root Execution70%MEDIUM
penetration-tester.md:302
detailhide
Commands invoke sudo or root privileges. Verify this elevated access is necessary and justified.
# On attacker: add route to internal network # >> session (select the agent) # >> ifconfig (see internal interfaces) # sudo ip route add 10.10.0.0/16 dev ligolo # >> start (begin tunneling) # Now scan/attack 10.10.0.0/16 directly — no proxychains neededfix Avoid sudo/root unless strictly required. Prefer least-privilege patterns. If elevation is needed, document the justification and scope.
- 04YR4YARA rule 'offensive_tool_references': References to well-known offensive security tools [hacktools]70%HIGH
penetration-tester.md:234
detailhide
YARA rule matched a hack tool or exploit indicator (offensive tools, reconnaissance, privilege escalation, or exploit frameworks).
- [ ] Test VPN/RDP endpoints for credential stuffing from breach databases ## Phase 2: Enumeration (Post-Foothold) - [ ] BloodHound collection — map all AD relationships, trusts, and attack paths - [ ] Enumerate SPNs for Kerberoastable service accounts - [ ] Identify Group Policy Preferences (GPP) passwords in SYSVOL - [ ] Map local admin access across workstations and serversfix Remove offensive tool references and exploit code. Legitimate agent skills should not contain penetration testing tools, exploit frameworks, or reconnaissance utilities.
- 05YR1YARA rule 'c2_framework_indicators': Command-and-control framework indicators (Cobalt Strike, Metasploit, Sliver, etc.) [malware]85%CRITICAL
penetration-tester.md:308
detailhide
YARA rule matched a known malware signature (reverse shell, backdoor, ransomware, C2 framework, or info stealer).
# === Port Forwarding through Meterpreter === # Route traffic to internal subnet meterpreter> run autoroute -s 10.10.0.0/16 # Create SOCKS proxy meterpreter> use auxiliary/server/socks_proxy meterpreter> run
fix Remove the malware payload or compromised file entirely. Investigate how it entered the skill and audit all other artifacts for additional indicators of compromise.