Expand description
Security-focused lint checks
This module provides lint checks that detect common security anti-patterns
in Perl code. These are patterns that perl -c and PPI cannot catch because
they require AST-level analysis.
§Diagnostic codes
| Code | Severity | Description |
|---|---|---|
security-two-arg-open | Warning | open(FH, ">file") – use 3-arg open for safety |
security-string-eval | Warning | eval "$string" – string eval is a security risk |
security-backtick-exec | Information | Backtick/qx command execution detected |
Functions§
- check_
security - Check for security anti-patterns