Hidden Instructions
High
- Category
- Prompt Injection
- Content
| Eleventy | `.eleventy.js`, `eleventy.config.js` | `posts/`, or the folder named in the config | Front matter plus the directory data file. A `tags` value is what puts the post in the feed. | | Next.js | `next.config.*` with an MDX or content pipeline | `content/`, `posts/`, `app/blog/` | MDX rules apply: components must be imported or provided, and raw `<` in prose breaks the parse. | | Gatsby | `gatsby-config.js` | `content/blog/` | Front matter fields must exist in the GraphQL schema the templates query. | | Docusaurus | `docusaurus.config.js` | `blog/` | Date from the file name prefix or a `date` field. `<!--truncate-->` marks where the excerpt ends. | | Hexo | `_config.yml` with `hexo` dependencies | `source/_posts/` | YAML front matter. `<!-- more -->` marks the excerpt break. | | Zola | `config.toml` with `base_url` | `content/` | TOML front matter fenced by `+++`, not `---`. | | VitePress | `.vitepress/` | the folder the theme configures | Front matter plus whatever index page lists the posts. |
- Confidence
- 70% confidence
- Finding
- Hidden instructions were detected in comments or invisible text. These could contain malicious directives. Manual review is recommended.
