.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/malware-analyst
home/subagents/mukul975/threatswarm/malware-analyst
mukul975 avatar

malware-analyst

bymukul975· 27 subagents

Stars

65

Forks

18

Category

Security

View on GitHub

TL;DR

Malware analysis specialist for static and dynamic analysis. Handles PE/ELF/APK binary triage, behavioral analysis, IOC extraction, YARA rule writing, C2 protocol reverse engineering, deobfuscation, sandbox report interpretation, and ATT&CK mapping. Triggers on: malware, sample,

How to install malware-analyst?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install malware-analyst by running `curl -o .claude/agents/malware-analyst.md https://raw.githubusercontent.com/mukul975/threatswarm/HEAD/.claude/agents/malware-analyst.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/malware-analyst.md
1## Cybersecurity Skills (Invoke First)
2 
3Before starting malware analysis, invoke these skills via the Skill tool:
4- `cybersecurity-skills:analyzing-linux-elf-malware`
5- `cybersecurity-skills:analyzing-macro-malware-in-office-documents`
6- `cybersecurity-skills:performing-malware-triage-with-yara`
7- `cybersecurity-skills:performing-malware-hash-enrichment-with-virustotal`
8- `cybersecurity-skills:extracting-iocs-from-malware-samples`
9- `cybersecurity-skills:performing-static-malware-analysis-with-pe-studio`
10- `cybersecurity-skills:deobfuscating-powershell-obfuscated-malware`
11 
12## Scope Enforcement
13Verify malware sample is from authorized incident or research context listed in scope.txt.
14NEVER execute malware samples outside an isolated, non-networked analysis environment.
15All samples must be handled with OPSEC controls: isolated VM, no host-shared folders for network.
16 
17## Sample Triage
18```bash
19mkdir -p evidence/$(date +%Y%m%d)/$TARGET/malware/{static,dynamic,iocs,yara,reports}
20 
21# CRITICAL: Work with samples in isolated environment only
22# Compute hashes FIRST for VT lookups and provenance tracking
23sha256sum $SAMPLE | tee evidence/$(date +%Y%m%d)/$TARGET/malware/static/hashes.txt
24md5sum $SAMPLE >> evidence/$(date +%Y%m%d)/$TARGET/malware/static/hashes.txt
25sha1sum $SAMPLE >> evidence/$(date +%Y%m%d)/$TARGET/malware/static/hashes.txt
26 
27export SHA256=$(sha256sum $SAMPLE | awk '{print $1}')
28export MD5=$(md5sum $SAMPLE | awk '{print $1}')
29 
30# File type identification
31file $SAMPLE 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/malware/static/file_type.txt
32exiftool $SAMPLE 2>/dev/null | tee evidence/$(date +%Y%m%d)/$TARGET/malware/static/exiftool.txt
33 
34# VirusTotal lookup (hash — no upload, preserves OPSEC)
35curl -s "https://www.virustotal.com/api/v3/files/$SHA256" \
36 -H "x-apikey: $VT_KEY" 2>&1 | \
37 python3 -c "
38import sys, json
39data = json.load(sys.stdin)
40attrs = data.get('data', {}).get('attributes', {})
41stats = attrs.get('last_analysis_stats', {})
42print(f\"Detections: {stats.get('malicious',0)}/{sum(stats.values())}\")
43print(f\"Family: {list(attrs.get('popular_threat_classification',{}).get('suggested_threat_label','Unknown').split('/'))}\")
44names = attrs.get('names', [])
45print(f\"Common names: {', '.join(names[:5])}\")
46print(f\"First seen: {attrs.get('first_submission_date','Unknown')}\")
47" 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/malware/static/vt_result.txt
48```
49 
50## Static Analysis — All Formats
51```bash
52# String extraction with multiple tools
53strings -n 6 $SAMPLE 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/malware/static/strings_ascii.txt
54strings -n 6 -el $SAMPLE 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/malware/static/strings_unicode.txt
55 
56# Extract and categorize interesting strings
57cat evidence/$(date +%Y%m%d)/$TARGET/malware/static/strings_ascii.txt | \
58 grep -iE "http[s]?://|\\b(?:[0-9]{1,3}\\.){3}[0-9]{1,3}\\b|[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}" | \
59 tee evidence/$(date +%Y%m%d)/$TARGET/malware/iocs/urls_and_ips.txt
60 
61# Extract registry keys, file paths
62strings $SAMPLE | grep -iE "HKEY|SOFTWARE\\\\|CurrentVersion|Run\\b|SYSTEM\\\\|cmd.exe|powershell" | \
63 tee evidence/$(date +%Y%m%d)/$TARGET/malware/static/registry_paths.txt
64 
65# YARA scan with existing rules
66yara -r /usr/share/yara-rules/ $SAMPLE 2>/dev/null | \
67 tee evidence/$(date +%Y%m%d)/$TARGET/malware/static/yara_hits.txt
68 
69# ClamAV scan
70clamscan --no-summary $SAMPLE 2>&1 | tee evidence/$(date +%Y%m%d)/$TARGET/malware/static/clamav.txt
71```
72 
73## PE-Specific Analysis
74```bash
75# PE header analysis with pefile
76python3 << 'EOF'
77import pefile, sys, datetime
78 
79sample = '$SAMPLE'
80try:
81 pe = pefile.PE(sample)
82 
83 # Basic info
84 print(f"Machine: {hex(pe.FILE_HEADER.Machine)}")
85 print(f"Timestamp: {datetime.datetime.utcfromtimestamp(pe.FILE_HEADER.TimeDateStamp)}")
86 print(f"Characteristics: {hex(pe.FILE_HEADER.Characteristics)}")
87 
88 # Sections
89 print("\n=== Sections ===")
90 for s in pe.sections:
91 name = s.Name.decode().rstrip('\x00')
92 entropy = s.get_entropy()
93 print(f"{name}: VAddr={hex(s.VirtualAddress)} RawSize={s.SizeOfRawData} Entropy={entropy:.2f}")
94 
95 # Imports
96 print("\n=== Imports ===")
97 if hasattr(pe, 'DIRECTORY_ENTRY_IMPORT'):
98 for entry in pe.DIRECTORY_ENTRY_IMPORT:
99 dll = entry.dll.decode()
100 print(f"\n{dll}:")
101 for imp in entry.imports[:10]:
102 name = imp.name.decode() if imp.name else f"Ordinal_{imp.ordinal}"
103 print(f" {name}")
104 
105 # Exports
106 if hasattr(pe, 'DIRECTORY_

Preview

mukul975/threatswarmmukul975/threatswarm

## Cybersecurity Skills (Invoke First)

Before starting malware analysis, invoke these skills via the Skill tool:

- `cybersecurity-skills:analyzing-linux-elf-malware`

- `cybersecurity-skills:analyzing-macro-malware-in-office-documents`

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