Storm Scanner
Go To Storm
  • 👋Welcome to Storm Scanner
  • Fundamentals
    • 🛠️Getting set up
      • 📚Generating PINS and Downloading the Scanner
        • 🖥️Generating and Viewing on the Dashboard
        • 📝Generating and Viewing on Discord
        • 🕵️Toggling Public and Private Scans
      • 🔗Custom Webhook
      • 🔘Scan Toggles
    • 🔍Custom Strings
      • 💻Adding and Removing Processes
      • 📜Adding Custom Strings
      • 👤Extracting your Own Strings
      • 🔎Searching and Removing Custom Strings
    • 💻Custom Yara
      • 📜Information on Rules
      • ✏️Basic Rule Examples
  • 🛠️Developers
    • Public Reference
      • User Scan History
      • Results
    • Enterprise Reference
      • Generate A Scan Pin
      • Remove Enterprise User
  • ⁉️Troubleshooting
    • ❌False Detections
    • 📔Error: Possible Bypass Attempt
    • 🔧Storm Not Scanning
    • Debug Mode
      • 🛠️How To Use Debug Mode
      • ❓Common Questions
Powered by GitBook
On this page
  1. Fundamentals
  2. Custom Yara

Information on Rules

Some basic information on YARA rule type.

Storm's custom YARA scanner reads the detection info from the meta section of the YARA rule. Below is the only information required to successfully create a rule.

  • Under your meta section, you must include a rule_name and type. Everything else you add is optional and does not affect the scanning of the rule.

meta:
	    rule_name = "Example Cheat" // Name of cheat
	    type = "Detect" // Warning or Detect
	    author = "Saxony" // Optional data that can be added

PreviousCustom YaraNextBasic Rule Examples

Last updated 8 months ago

💻
📜