SECURITY REVIEW
Not yet assessed
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
Analyzes remote access trojan command-and-control by mapping the RAT command set, identifying the C2 transport and beacon parameters, and cataloging operator capabilities from static strings and config. Activates for requests to analyze RAT C2, map a trojan command handler, or identify remote-access capabilities and C2 transport.
Review the original instructions and requested permissions before installing.
No security review is available for this catalog entry yet.
How clearly the skill guides your agent, how complete its workflow is, and how you can check the outcome.
No quality assessment is available for this catalog entry yet.
Original instructions from the publisher’s SKILL.md
# Analyzing RAT Command and Control ## When to Use - You have a RAT sample and need to map its command set (shell, file ops, screenshot, keylog, webcam, proxy), C2 transport, and beacon parameters. - You are cataloging operator capabilities for detection and impact assessment. **Do not use** this to operate the RAT or connect to its C2 — characterize capabilities from inert static analysis. ## Prerequisites - The RAT sample (read inertly), optionally with an extracted config. ## Safety & Handling - Read bytes statically; defang C2 endpoints; never connect to the C2. ## Workflow ### Step 1: Map command handlers and capabilities ```bash python scripts/analyst.py profile sample.bin ``` Matches command-keyword and API patterns for capability classes: remote shell, file transfer, screenshot/keylog/webcam, persistence, proxy/relay, and self-update. ### Step 2: Identify the C2 transport Detect HTTP(S), raw TCP, TLS, DNS, or messaging-platform transport from imports/strings, plus beacon intervals/user-agents where present. ### Step 3: Build the capability matrix Summarize capabilities and transport, mapping to ATT&CK. ### Step 4: Defang and report Defang endpoints and produce IOCs. ## Validation - Capabilities are grouped into classes with the matched evidence. - The C2 transport is identified from concrete imports/strings. - Findings map to ATT&CK T1219/T1071. ## Pitfalls - Generic API presence (e.g., `gdi32`) misread as screenshot capability — corroborate with command handlers. - Commodity RAT builders sharing strings across families — avoid over-attribution. - Encrypted command sets requiring config decryption first. ## References - See [`references/api-reference.md`](references/api-reference.md) for the profiler. - ATT&CK T1219 and T1071 (linked in frontmatter).