ssti

Installation
SKILL.md

SSTI Detection

When to Use

Audit template engines, email template systems, report generators, CMS systems, and any code that compiles templates from user input.

Key Distinction

  • User input IN the template string = VULNERABLE (SSTI)
  • User input IN template variables/context = SAFE (this is normal template usage)
// VULNERABLE: user input IS the template
ejs.render(userInput, data);

// SAFE: user input is in the data, not the template
ejs.render(templateFromFile, { name: userInput });
Installs
4
GitHub Stars
48
First Seen
May 12, 2026
ssti — byamb4/find-cve-agent