mirror of
https://github.com/projectdiscovery/nuclei-templates.git
synced 2026-01-31 15:53:33 +08:00
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