Replies: 1 comment
-
|
Hi there! The reason you're getting the [FTL] Could not run nuclei: no templates provided for scan error is that Nuclei is failing to validate the YAML schema of your template. When a template has syntax errors, Nuclei silently drops it during the loading phase, resulting in zero templates being passed to the engine. There are two minor syntax issues in your template: You used the keyword matches: instead of matchers:. The matchers block must be correctly indented so it belongs to the specific code execution block, rather than sitting at the root level of the template. Here is the corrected and fully working YAML for your 44_test.yaml file: YAML code: How to run it now: Then run it with your target and the -code flag: Hope this solves your issue! If it works for you, please consider marking this response as the Answer so other researchers facing the same issue can find it easily. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Beta Was this translation helpful? Give feedback.
All reactions