java-path-injection-mining
Read-only mining codemod for SonarSource rule javasecurity:S2083 — I/O function calls should not be vulnerable to path injection attacks.
It scans Java source and emits metrics only; it never modifies code (return null).
Findings are high-signal review candidates surfaced by AST pattern matching — they are
not proven vulnerabilities. A static mining pass cannot prove an end-to-end taint flow
from an untrusted source to the sink, so confirm data flow before remediating.
| Field | Value |
|---|---|
| Rule key | javasecurity:S2083 |
| Type | Vulnerability |
| Severity | Blocker |
| Primary CWE | CWE-22 (Path Traversal) |
| Tags | cwe |
What it detects
Filesystem I/O sinks whose path is built from dynamic data.
Sinks:
new File / FileInputStream / FileOutputStream / FileReader / FileWriter / RandomAccessFile / PrintWriter / PrintStreamPaths.get(...),Files.*read/write helpers
Emission rule: Only emits when a path argument is dynamic.
Metric: java-path-injection-mining
| dimension | meaning |
|---|---|
rule | SonarSource rule key |
cwe | primary CWE identifier |
severity | always blocker |
sink | the detected sink (method/constructor) |
package_name | enclosing Java package |
class_name | enclosing class/interface/enum/record |
method_name | enclosing method/constructor (or <none>) |
file | file path (relative to scan target) |
line | 1-based line of the finding |
arg_kind | classification of the relevant argument (literal, concatenation, variable, method_call, field, object_creation, expression, none) |
Security standards
- CWE-20 (Improper Input Validation)
- CWE-22 (Path Traversal)
- OWASP ASVS 4.0: 5.1.3, 5.1.4, 12.3.1
- OWASP Mobile Top 10 2024: M4
- OWASP Top 10 2021: A1, A3
- OWASP Top 10: A1, A5
- PCI DSS 3.2: 6.5.8
- PCI DSS 4.0: 6.2.4
- STIG ASD V5R3: V-222609
Run locally
bash
Part of the java-security-blocker-mining suite covering 19 blocker-severity
Java vulnerability rules. Each codemod is read-only and emits a single named metric.