rma-analyzer 0.11.0

Code analysis and security scanning for Rust Monorepo Analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
//! Java-specific security vulnerability DETECTION rules
//!
//! Categorized into:
//! - **Sinks (High Confidence)**: Precise detection of dangerous patterns
//! - **Review Hints (Low Confidence)**: Patterns that need human review

use crate::rules::{Rule, create_finding_with_confidence};
use rma_common::{Confidence, Finding, Language, Severity};
use rma_parser::ParsedFile;
use tree_sitter::Node;

/// Case-insensitive substring search without allocation
#[inline]
fn contains_ignore_case(haystack: &str, needle: &str) -> bool {
    haystack
        .as_bytes()
        .windows(needle.len())
        .any(|window| window.eq_ignore_ascii_case(needle.as_bytes()))
}

// =============================================================================
// SECTION A: HIGH-CONFIDENCE SINKS
// =============================================================================

/// Detects actual command injection patterns in Java
///
/// Only flags as CRITICAL when there's evidence of:
/// - Runtime.exec() or ProcessBuilder with shell mode (/c, -c)
/// - AND dynamic argument composition (string concat, variables)
///
/// Plain process execution without dynamic args is NOT injection.
/// Confidence: HIGH (requires evidence of injection pattern)
pub struct CommandExecutionRule;

impl Rule for CommandExecutionRule {
    fn id(&self) -> &str {
        "java/command-injection"
    }

    fn description(&self) -> &str {
        "Detects command injection patterns (shell mode with dynamic arguments)"
    }

    fn applies_to(&self, lang: Language) -> bool {
        lang == Language::Java
    }

    fn check(&self, parsed: &ParsedFile) -> Vec<Finding> {
        let mut findings = Vec::new();
        let mut cursor = parsed.tree.walk();

        find_nodes_by_kind(&mut cursor, "method_invocation", |node: Node| {
            if let Ok(text) = node.utf8_text(parsed.content.as_bytes()) {
                // Runtime.getRuntime().exec() with dynamic args
                if text.contains("Runtime") && text.contains("getRuntime") {
                    // Check for string concatenation (injection pattern)
                    let has_concat = text.contains(" + ") || text.contains("\" +");

                    if has_concat {
                        findings.push(create_finding_with_confidence(
                            self.id(),
                            &node,
                            &parsed.path,
                            &parsed.content,
                            Severity::Critical,
                            "Command injection: Runtime.exec with string concatenation - use ProcessBuilder with array args",
                            Language::Java,
                            Confidence::High,
                        ));
                    } else {
                        findings.push(create_finding_with_confidence(
                            self.id(),
                            &node,
                            &parsed.path,
                            &parsed.content,
                            Severity::Warning,
                            "Runtime.exec detected - prefer ProcessBuilder with explicit arguments",
                            Language::Java,
                            Confidence::Medium,
                        ));
                    }
                }
            }
        });

        // Check ProcessBuilder with shell + dynamic args
        cursor = parsed.tree.walk();
        find_nodes_by_kind(&mut cursor, "object_creation_expression", |node: Node| {
            if let Ok(text) = node.utf8_text(parsed.content.as_bytes())
                && text.contains("ProcessBuilder")
            {
                let is_shell = text.contains("\"sh\"")
                    || text.contains("\"bash\"")
                    || text.contains("\"cmd\"")
                    || text.contains("\"/bin/sh\"")
                    || text.contains("\"cmd.exe\"");

                let has_shell_mode =
                    text.contains("\"-c\"") || text.contains("\"/c\"") || text.contains("\"/C\"");

                let has_concat = text.contains(" + ") || text.contains("\" +");

                if is_shell && has_shell_mode && has_concat {
                    findings.push(create_finding_with_confidence(
                        self.id(),
                        &node,
                        &parsed.path,
                        &parsed.content,
                        Severity::Critical,
                        "Command injection: ProcessBuilder with shell mode and string concatenation",
                        Language::Java,
                        Confidence::High,
                    ));
                } else if is_shell && has_shell_mode {
                    findings.push(create_finding_with_confidence(
                        self.id(),
                        &node,
                        &parsed.path,
                        &parsed.content,
                        Severity::Warning,
                        "ProcessBuilder with shell mode - ensure arguments are not from untrusted input",
                        Language::Java,
                        Confidence::Medium,
                    ));
                }
            }
        });

        findings
    }
}

/// Detects SQL queries built with string concatenation
/// Confidence: HIGH (in JDBC context)
pub struct SqlInjectionRule;

impl Rule for SqlInjectionRule {
    fn id(&self) -> &str {
        "java/sql-injection"
    }

    fn description(&self) -> &str {
        "Detects SQL queries built with string concatenation that may allow injection"
    }

    fn applies_to(&self, lang: Language) -> bool {
        lang == Language::Java
    }

    fn check(&self, parsed: &ParsedFile) -> Vec<Finding> {
        let mut findings = Vec::new();

        // Only check files that use JDBC
        if !parsed.content.contains("java.sql")
            && !parsed.content.contains("executeQuery")
            && !parsed.content.contains("executeUpdate")
        {
            return findings;
        }

        let mut cursor = parsed.tree.walk();

        find_nodes_by_kind(&mut cursor, "method_invocation", |node: Node| {
            if let Ok(text) = node.utf8_text(parsed.content.as_bytes()) {
                // executeQuery/executeUpdate with string concatenation
                if (text.contains("executeQuery") || text.contains("executeUpdate"))
                    && (text.contains(" + ") || text.contains("\" +"))
                {
                    // Use case-insensitive search without allocation
                    if contains_ignore_case(text, "select ")
                        || contains_ignore_case(text, "insert ")
                        || contains_ignore_case(text, "update ")
                        || contains_ignore_case(text, "delete ")
                    {
                        findings.push(create_finding_with_confidence(
                            self.id(),
                            &node,
                            &parsed.path,
                            &parsed.content,
                            Severity::Critical,
                            "SQL query with string concatenation - use PreparedStatement instead",
                            Language::Java,
                            Confidence::High,
                        ));
                    }
                }
            }
        });
        findings
    }
}

/// Detects deserialization of untrusted data
/// Confidence: HIGH (ObjectInputStream is dangerous)
pub struct InsecureDeserializationRule;

impl Rule for InsecureDeserializationRule {
    fn id(&self) -> &str {
        "java/insecure-deserialization"
    }

    fn description(&self) -> &str {
        "Detects ObjectInputStream usage which can lead to remote code execution"
    }

    fn applies_to(&self, lang: Language) -> bool {
        lang == Language::Java
    }

    fn check(&self, parsed: &ParsedFile) -> Vec<Finding> {
        let mut findings = Vec::new();
        let mut cursor = parsed.tree.walk();

        find_nodes_by_kind(&mut cursor, "object_creation_expression", |node: Node| {
            if let Ok(text) = node.utf8_text(parsed.content.as_bytes())
                && text.contains("ObjectInputStream")
            {
                findings.push(create_finding_with_confidence(
                    self.id(),
                    &node,
                    &parsed.path,
                    &parsed.content,
                    Severity::Critical,
                    "ObjectInputStream can lead to RCE - use safe alternatives like JSON",
                    Language::Java,
                    Confidence::High,
                ));
            }
        });

        // Also check readObject calls
        cursor = parsed.tree.walk();
        find_nodes_by_kind(&mut cursor, "method_invocation", |node: Node| {
            if let Ok(text) = node.utf8_text(parsed.content.as_bytes())
                && text.contains(".readObject(")
            {
                findings.push(create_finding_with_confidence(
                    self.id(),
                    &node,
                    &parsed.path,
                    &parsed.content,
                    Severity::Warning,
                    "readObject() on untrusted data can lead to RCE - validate input source",
                    Language::Java,
                    Confidence::High,
                ));
            }
        });

        findings
    }
}

/// Detects XXE (XML External Entity) vulnerabilities
/// Confidence: HIGH (XMLInputFactory/DocumentBuilder without secure config)
pub struct XxeVulnerabilityRule;

impl Rule for XxeVulnerabilityRule {
    fn id(&self) -> &str {
        "java/xxe-vulnerability"
    }

    fn description(&self) -> &str {
        "Detects XML parsers that may be vulnerable to XXE attacks"
    }

    fn applies_to(&self, lang: Language) -> bool {
        lang == Language::Java
    }

    fn check(&self, parsed: &ParsedFile) -> Vec<Finding> {
        let mut findings = Vec::new();

        // Check if file uses XML parsing
        if !parsed.content.contains("XMLInputFactory")
            && !parsed.content.contains("DocumentBuilder")
            && !parsed.content.contains("SAXParser")
        {
            return findings;
        }

        // Check if secure features are disabled
        let has_secure_config = parsed.content.contains("FEATURE_SECURE_PROCESSING")
            || parsed.content.contains("setFeature")
            || parsed.content.contains("disallow-doctype-decl");

        if !has_secure_config {
            let mut cursor = parsed.tree.walk();

            find_nodes_by_kind(&mut cursor, "object_creation_expression", |node: Node| {
                if let Ok(text) = node.utf8_text(parsed.content.as_bytes())
                    && (text.contains("DocumentBuilder")
                        || text.contains("SAXParser")
                        || text.contains("XMLInputFactory"))
                {
                    findings.push(create_finding_with_confidence(
                        self.id(),
                        &node,
                        &parsed.path,
                        &parsed.content,
                        Severity::Error,
                        "XML parser without secure configuration - vulnerable to XXE attacks",
                        Language::Java,
                        Confidence::High,
                    ));
                }
            });
        }
        findings
    }
}

/// Detects path traversal vulnerabilities
/// Confidence: HIGH (File with user input patterns)
pub struct PathTraversalRule;

impl Rule for PathTraversalRule {
    fn id(&self) -> &str {
        "java/path-traversal"
    }

    fn description(&self) -> &str {
        "Detects file operations with dynamic paths that may allow directory traversal"
    }

    fn applies_to(&self, lang: Language) -> bool {
        lang == Language::Java
    }

    fn check(&self, parsed: &ParsedFile) -> Vec<Finding> {
        let mut findings = Vec::new();
        let mut cursor = parsed.tree.walk();

        find_nodes_by_kind(&mut cursor, "object_creation_expression", |node: Node| {
            if let Ok(text) = node.utf8_text(parsed.content.as_bytes()) {
                // new File() with string concatenation
                if text.starts_with("new File(") && (text.contains(" + ") || text.contains("\" +"))
                {
                    findings.push(create_finding_with_confidence(
                        self.id(),
                        &node,
                        &parsed.path,
                        &parsed.content,
                        Severity::Warning,
                        "File path with concatenation - validate to prevent directory traversal",
                        Language::Java,
                        Confidence::High,
                    ));
                }
            }
        });
        findings
    }
}

// =============================================================================
// SECTION B: REVIEW HINTS (LOW CONFIDENCE)
// =============================================================================

/// Review hint: Catching generic Exception
/// Confidence: LOW (code quality)
pub struct GenericExceptionHint;

impl Rule for GenericExceptionHint {
    fn id(&self) -> &str {
        "java/generic-exception-hint"
    }

    fn description(&self) -> &str {
        "Review hint: catching generic Exception may hide bugs"
    }

    fn applies_to(&self, lang: Language) -> bool {
        lang == Language::Java
    }

    fn check(&self, parsed: &ParsedFile) -> Vec<Finding> {
        let mut findings = Vec::new();
        let mut cursor = parsed.tree.walk();

        find_nodes_by_kind(&mut cursor, "catch_clause", |node: Node| {
            if let Ok(text) = node.utf8_text(parsed.content.as_bytes()) {
                // Catching Exception or Throwable
                if text.contains("Exception e)") || text.contains("Throwable") {
                    // Skip if it's in a top-level handler (main method, etc.)
                    if parsed.content.contains("public static void main") {
                        return;
                    }

                    findings.push(create_finding_with_confidence(
                        self.id(),
                        &node,
                        &parsed.path,
                        &parsed.content,
                        Severity::Info,
                        "Catching generic Exception - consider catching specific exceptions",
                        Language::Java,
                        Confidence::Low,
                    ));
                }
            }
        });
        findings
    }
}

/// Review hint: System.out.println in production code
/// Confidence: LOW (code quality)
pub struct SystemOutHint;

impl Rule for SystemOutHint {
    fn id(&self) -> &str {
        "java/system-out-hint"
    }

    fn description(&self) -> &str {
        "Review hint: System.out.println should use proper logging in production"
    }

    fn applies_to(&self, lang: Language) -> bool {
        lang == Language::Java
    }

    fn check(&self, parsed: &ParsedFile) -> Vec<Finding> {
        let mut findings = Vec::new();
        let mut cursor = parsed.tree.walk();

        find_nodes_by_kind(&mut cursor, "method_invocation", |node: Node| {
            if let Ok(text) = node.utf8_text(parsed.content.as_bytes())
                && (text.contains("System.out.print") || text.contains("System.err.print"))
            {
                findings.push(create_finding_with_confidence(
                    self.id(),
                    &node,
                    &parsed.path,
                    &parsed.content,
                    Severity::Info,
                    "System.out detected - consider using a logging framework",
                    Language::Java,
                    Confidence::Low,
                ));
            }
        });
        findings
    }
}

// =============================================================================
// HELPERS
// =============================================================================

fn find_nodes_by_kind<F>(cursor: &mut tree_sitter::TreeCursor, kind: &str, mut callback: F)
where
    F: FnMut(Node),
{
    loop {
        let node = cursor.node();
        if node.kind() == kind {
            callback(node);
        }

        if cursor.goto_first_child() {
            continue;
        }

        loop {
            if cursor.goto_next_sibling() {
                break;
            }
            if !cursor.goto_parent() {
                return;
            }
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use rma_common::RmaConfig;
    use rma_parser::ParserEngine;
    use std::path::Path;

    #[test]
    fn test_deserialization_detection() {
        let config = RmaConfig::default();
        let parser = ParserEngine::new(config);

        let content = r#"
import java.io.ObjectInputStream;

public class Danger {
    public Object deserialize(InputStream is) {
        ObjectInputStream ois = new ObjectInputStream(is);
        return ois.readObject();
    }
}
"#;

        let parsed = parser.parse_file(Path::new("Test.java"), content).unwrap();
        let rule = InsecureDeserializationRule;
        let findings = rule.check(&parsed);

        assert!(!findings.is_empty());
    }
}