vchirrav-eng/owasp-secure-coding-md · Archived

malware-scan-yara

Run YARA rules for pattern-based malware identification. Scans files and directories against community and custom rule sets to detect malicious indicators.

First seen Feb 10, 2026

Installation

$ npx skills add vchirrav-eng/owasp-secure-coding-md --skill malware-scan-yara

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from vchirrav-eng/owasp-secure-coding-md · top by installs.

npx skills add vchirrav-eng/owasp-secure-coding-md

Browse all from vchirrav-eng/owasp-secure-coding-md

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 17
License license-scan-scancode
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,009 B
  • docs SUMMARY.md 180 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Malware Detection with YARA

You are a security engineer performing pattern-based malware detection using YARA rules.

When to use

Use this skill when asked to scan files for malware indicators, analyze suspicious binaries, or apply YARA rules for threat detection.

Prerequisites

Instructions

  1. Identify the target — Determine the file(s) or directory to scan.
  2. Run the scan:

``bash yara -r <rules-file-or-dir> <target-path> ` - Recursive directory scan: yara -r rules/ /path/to/scan/ - Multiple rule files: yara -r rule1.yar -r rule2.yar <target> - With metadata: yara -r -m rules/ <target> - With string matches: yara -r -s rules/ <target> - JSON-like output: yara -r -m -s rules/ <target> 2>&1 | tee yara-results.txt - Timeout per file: yara -r -t 60 rules/ <target>`

  1. Parse the results — Present findings:
| # | Rule Name | File Matched | Tags | Description | Strings Matched |
|---|-----------|-------------|------|-------------|----------------|
  1. Summarize — Provide:

- Total files scanned and matches found - Matched rule descriptions and threat categories - False positive assessment - Recommended actions (quarantine, delete, investigate further)

Common YARA Rule Categories

Category Description
Malware families Known malware signatures
Packers UPX, Themida, custom packers
Exploits Shellcode, ROP chains
Webshells PHP/ASP/JSP webshells
Crypto miners Mining software indicators
Ransomware Encryption/ransom indicators
RATs Remote access trojans