Files
nuclei-templates/dast
686f6c61 df18eac3a0 fix(xinclude-injection): reduce false positives with stricter regex
The previous regex 'root:.*?:[0-9]*:[0-9]*:' was too permissive and matched
content in minified JavaScript code, causing false positives.

Changed to 'root:[^:]*:\d+:\d+:' which:
- Uses [^:]* to only match non-colon characters (respects passwd delimiter)
- Uses \d+ to require at least one digit for UID/GID

Fixes #14775
2026-01-18 13:29:29 +01:00
..
2025-12-09 04:07:08 +00:00
2026-01-18 07:01:37 +00:00