lonkero 3.7.0

Web scanner built for actual pentests. Fast, modular, Rust.
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
// Copyright (c) 2026 Bountyy Oy. All rights reserved.
// This software is proprietary and confidential.

use crate::http_client::HttpClient;
use crate::scanners::parameter_filter::{ParameterFilter, ScannerType};
use crate::types::{Confidence, ScanConfig, Severity, Vulnerability};
use std::sync::Arc;
use tracing::{debug, info};

pub struct XPathInjectionScanner {
    http_client: Arc<HttpClient>,
    test_marker: String,
}

impl XPathInjectionScanner {
    pub fn new(http_client: Arc<HttpClient>) -> Self {
        // Generate unique test marker for verification (xpath_<uuid>)
        let test_marker = format!(
            "xpath_{}",
            uuid::Uuid::new_v4().to_string().replace("-", "")
        );
        Self {
            http_client,
            test_marker,
        }
    }

    /// Scan a parameter for XPath injection vulnerabilities
    pub async fn scan_parameter(
        &self,
        url: &str,
        param_name: &str,
        _config: &ScanConfig,
    ) -> anyhow::Result<(Vec<Vulnerability>, usize)> {
        // Smart parameter filtering - skip framework internals
        if ParameterFilter::should_skip_parameter(param_name, ScannerType::Other) {
            debug!(
                "[XPath] Skipping framework/internal parameter: {}",
                param_name
            );
            return Ok((Vec::new(), 0));
        }

        let mut vulnerabilities = Vec::new();
        let mut tests_run = 0;

        info!(
            "[XPath] Testing XPath injection on parameter: {} (priority: {})",
            param_name,
            ParameterFilter::get_parameter_priority(param_name)
        );

        // Test boolean-based XPath injection
        let (vulns, tests) = self.test_boolean_xpath_param(url, param_name).await?;
        vulnerabilities.extend(vulns);
        tests_run += tests;

        // Test error-based XPath injection
        if vulnerabilities.is_empty() {
            let (vulns, tests) = self.test_error_xpath_param(url, param_name).await?;
            vulnerabilities.extend(vulns);
            tests_run += tests;
        }

        Ok((vulnerabilities, tests_run))
    }

    /// Scan endpoint for XPath injection vulnerabilities
    pub async fn scan(
        &self,
        url: &str,
        _config: &ScanConfig,
    ) -> anyhow::Result<(Vec<Vulnerability>, usize)> {
        let mut vulnerabilities = Vec::new();
        let mut tests_run = 0;

        info!("Testing XPath injection vulnerabilities");

        // Test boolean-based XPath injection
        let (vulns, tests) = self.test_boolean_xpath(url).await?;
        vulnerabilities.extend(vulns);
        tests_run += tests;

        // Test error-based XPath injection
        if vulnerabilities.is_empty() {
            let (vulns, tests) = self.test_error_xpath(url).await?;
            vulnerabilities.extend(vulns);
            tests_run += tests;
        }

        // Test authentication bypass
        if vulnerabilities.is_empty() {
            let (vulns, tests) = self.test_auth_bypass_xpath(url).await?;
            vulnerabilities.extend(vulns);
            tests_run += tests;
        }

        Ok((vulnerabilities, tests_run))
    }

    /// Test boolean-based XPath injection on specific parameter
    async fn test_boolean_xpath_param(
        &self,
        url: &str,
        param_name: &str,
    ) -> anyhow::Result<(Vec<Vulnerability>, usize)> {
        let mut vulnerabilities = Vec::new();
        let tests_run = 6;

        debug!(
            "Testing boolean-based XPath injection on parameter: {}",
            param_name
        );

        // Boolean payloads with true/false conditions
        let true_payloads = vec!["' or '1'='1", "' or 1=1 or ''='", "1' or '1'='1"];

        let false_payloads = vec!["' or '1'='2", "' or 1=2 or ''='", "1' or '1'='2"];

        // Test true condition
        let mut true_body = String::new();
        let mut true_status = 0;

        for payload in &true_payloads {
            let test_url = if url.contains('?') {
                format!("{}&{}={}", url, param_name, urlencoding::encode(payload))
            } else {
                format!("{}?{}={}", url, param_name, urlencoding::encode(payload))
            };

            match self.http_client.get(&test_url).await {
                Ok(response) => {
                    true_body = response.body.clone();
                    true_status = response.status_code;
                    break;
                }
                Err(e) => {
                    debug!("Request failed: {}", e);
                }
            }
        }

        // Test false condition
        let mut false_body = String::new();
        let mut false_status = 0;

        for payload in &false_payloads {
            let test_url = if url.contains('?') {
                format!("{}&{}={}", url, param_name, urlencoding::encode(payload))
            } else {
                format!("{}?{}={}", url, param_name, urlencoding::encode(payload))
            };

            match self.http_client.get(&test_url).await {
                Ok(response) => {
                    false_body = response.body.clone();
                    false_status = response.status_code;
                    break;
                }
                Err(e) => {
                    debug!("Request failed: {}", e);
                }
            }
        }

        // Compare responses
        if !true_body.is_empty() && !false_body.is_empty() {
            if true_body != false_body || true_status != false_status {
                info!("Boolean-based XPath injection detected");
                vulnerabilities.push(self.create_vulnerability(
                    url,
                    "Boolean-based XPath Injection",
                    "' or '1'='1",
                    "XPath query can be manipulated using boolean conditions",
                    "Different responses for true/false XPath conditions",
                    Severity::Critical,
                    param_name,
                ));
            }
        }

        Ok((vulnerabilities, tests_run))
    }

    /// Test error-based XPath injection on specific parameter
    async fn test_error_xpath_param(
        &self,
        url: &str,
        param_name: &str,
    ) -> anyhow::Result<(Vec<Vulnerability>, usize)> {
        let mut vulnerabilities = Vec::new();
        let tests_run = 5;

        debug!(
            "Testing error-based XPath injection on parameter: {}",
            param_name
        );

        let error_payloads = vec!["'", "\"", "']", "')", "' and count(//*)>0 and '1'='1"];

        for payload in error_payloads {
            let test_url = if url.contains('?') {
                format!("{}&{}={}", url, param_name, urlencoding::encode(payload))
            } else {
                format!("{}?{}={}", url, param_name, urlencoding::encode(payload))
            };

            match self.http_client.get(&test_url).await {
                Ok(response) => {
                    if self.detect_xpath_error(&response.body) {
                        info!("Error-based XPath injection detected");
                        vulnerabilities.push(self.create_vulnerability(
                            url,
                            "Error-based XPath Injection",
                            payload,
                            "XPath errors reveal injection vulnerability",
                            "XPath syntax error detected in response",
                            Severity::High,
                            param_name,
                        ));
                        break;
                    }
                }
                Err(e) => {
                    debug!("Request failed: {}", e);
                }
            }
        }

        Ok((vulnerabilities, tests_run))
    }

    /// Test boolean-based XPath injection
    async fn test_boolean_xpath(&self, url: &str) -> anyhow::Result<(Vec<Vulnerability>, usize)> {
        let mut vulnerabilities = Vec::new();
        let tests_run = 6;

        debug!("Testing boolean-based XPath injection");

        // Boolean payloads with true/false conditions
        let true_payloads = vec!["' or '1'='1", "' or 1=1 or ''='", "1' or '1'='1"];

        let false_payloads = vec!["' or '1'='2", "' or 1=2 or ''='", "1' or '1'='2"];

        // Test true condition
        let mut true_body = String::new();
        let mut true_status = 0;

        for payload in &true_payloads {
            let test_url = if url.contains('?') {
                format!("{}&q={}", url, urlencoding::encode(payload))
            } else {
                format!("{}?q={}", url, urlencoding::encode(payload))
            };

            match self.http_client.get(&test_url).await {
                Ok(response) => {
                    true_body = response.body.clone();
                    true_status = response.status_code;
                    break;
                }
                Err(e) => {
                    debug!("Request failed: {}", e);
                }
            }
        }

        // Test false condition
        let mut false_body = String::new();
        let mut false_status = 0;

        for payload in &false_payloads {
            let test_url = if url.contains('?') {
                format!("{}&q={}", url, urlencoding::encode(payload))
            } else {
                format!("{}?q={}", url, urlencoding::encode(payload))
            };

            match self.http_client.get(&test_url).await {
                Ok(response) => {
                    false_body = response.body.clone();
                    false_status = response.status_code;
                    break;
                }
                Err(e) => {
                    debug!("Request failed: {}", e);
                }
            }
        }

        // Compare responses
        if !true_body.is_empty() && !false_body.is_empty() {
            if true_body != false_body || true_status != false_status {
                info!("Boolean-based XPath injection detected");
                vulnerabilities.push(self.create_vulnerability(
                    url,
                    "Boolean-based XPath Injection",
                    "' or '1'='1",
                    "XPath query can be manipulated using boolean conditions",
                    "Different responses for true/false XPath conditions",
                    Severity::Critical,
                    "q",
                ));
            }
        }

        Ok((vulnerabilities, tests_run))
    }

    /// Test error-based XPath injection
    async fn test_error_xpath(&self, url: &str) -> anyhow::Result<(Vec<Vulnerability>, usize)> {
        let mut vulnerabilities = Vec::new();
        let tests_run = 5;

        debug!("Testing error-based XPath injection");

        let error_payloads = vec!["'", "\"", "']", "')", "' and count(//*)>0 and '1'='1"];

        for payload in error_payloads {
            let test_url = if url.contains('?') {
                format!("{}&q={}", url, urlencoding::encode(payload))
            } else {
                format!("{}?q={}", url, urlencoding::encode(payload))
            };

            match self.http_client.get(&test_url).await {
                Ok(response) => {
                    if self.detect_xpath_error(&response.body) {
                        info!("Error-based XPath injection detected");
                        vulnerabilities.push(self.create_vulnerability(
                            url,
                            "Error-based XPath Injection",
                            payload,
                            "XPath errors reveal injection vulnerability",
                            "XPath syntax error detected in response",
                            Severity::High,
                            "q",
                        ));
                        break;
                    }
                }
                Err(e) => {
                    debug!("Request failed: {}", e);
                }
            }
        }

        Ok((vulnerabilities, tests_run))
    }

    /// Test authentication bypass via XPath
    async fn test_auth_bypass_xpath(
        &self,
        url: &str,
    ) -> anyhow::Result<(Vec<Vulnerability>, usize)> {
        let mut vulnerabilities = Vec::new();
        let tests_run = 4;

        debug!("Testing XPath authentication bypass");

        // CRITICAL: Get baseline response first to compare against
        // Words like "welcome", "dashboard", "profile" may appear normally
        let baseline = match self.http_client.get(url).await {
            Ok(r) => r,
            Err(_) => return Ok((Vec::new(), 0)),
        };

        let bypass_payloads = vec![
            "admin' or '1'='1",
            "' or 1=1 or ''='",
            "admin'--",
            "' or count(//user)>0 or ''='",
        ];

        for payload in bypass_payloads {
            // Test as GET parameter
            let test_url = if url.contains('?') {
                format!(
                    "{}&username={}&password=test",
                    url,
                    urlencoding::encode(payload)
                )
            } else {
                format!(
                    "{}?username={}&password=test",
                    url,
                    urlencoding::encode(payload)
                )
            };

            match self.http_client.get(&test_url).await {
                Ok(response) => {
                    // CRITICAL: Check for NEW auth indicators not present in baseline
                    if self.detect_auth_bypass_with_baseline(
                        &response.body,
                        &baseline.body,
                        response.status_code,
                    ) {
                        info!("XPath authentication bypass detected");
                        vulnerabilities.push(self.create_vulnerability(
                            url,
                            "XPath Authentication Bypass",
                            payload,
                            "Authentication can be bypassed using XPath injection",
                            "NEW authentication success indicators appeared (not in baseline)",
                            Severity::Critical,
                            "username",
                        ));
                        break;
                    }
                }
                Err(e) => {
                    debug!("Request failed: {}", e);
                }
            }
        }

        Ok((vulnerabilities, tests_run))
    }

    /// Detect XPath errors in response
    fn detect_xpath_error(&self, body: &str) -> bool {
        let error_indicators = vec![
            "xpath",
            "xpatherror",
            "xpath syntax",
            "xpath expression",
            "xmlxpatheval",
            "xpathcontext",
            "domxpath",
            "invalid xpath",
            "xpath query error",
            "malformed xpath",
            "xpath compilation",
        ];

        let body_lower = body.to_lowercase();
        for indicator in error_indicators {
            if body_lower.contains(indicator) {
                return true;
            }
        }

        false
    }

    /// Detect successful authentication bypass - REQUIRES baseline comparison
    fn detect_auth_bypass_with_baseline(
        &self,
        body: &str,
        baseline_body: &str,
        status_code: u16,
    ) -> bool {
        let body_lower = body.to_lowercase();
        let baseline_lower = baseline_body.to_lowercase();

        // CRITICAL: Check for NEW success indicators (not present in baseline)
        // Words like "welcome", "dashboard" commonly appear on normal pages
        let success_indicators = vec![
            "logged in",
            "authentication successful",
            "login successful",
            "admin panel",
            "user authenticated",
            "session created",
        ];

        for indicator in success_indicators {
            // Only trigger if indicator is NEW (not in baseline)
            if body_lower.contains(indicator)
                && !baseline_lower.contains(indicator)
                && status_code == 200
            {
                return true;
            }
        }

        // Don't trigger on redirects without baseline check - redirects are common
        // Only consider bypass if baseline wasn't a redirect but now it is
        // Actually, skip redirect detection entirely - too many false positives

        false
    }

    /// Create a vulnerability record
    fn create_vulnerability(
        &self,
        url: &str,
        attack_type: &str,
        payload: &str,
        description: &str,
        evidence: &str,
        severity: Severity,
        param_name: &str,
    ) -> Vulnerability {
        let cvss = match severity {
            Severity::Critical => 9.8,
            Severity::High => 8.6,
            Severity::Medium => 6.1,
            _ => 4.3,
        };

        Vulnerability {
            id: format!("xpath_{}", uuid::Uuid::new_v4().to_string()),
            vuln_type: format!("XPath Injection ({})", attack_type),
            severity,
            confidence: Confidence::High,
            category: "Injection".to_string(),
            url: url.to_string(),
            parameter: Some(param_name.to_string()),
            payload: payload.to_string(),
            description: description.to_string(),
            evidence: Some(evidence.to_string()),
            cwe: "CWE-643".to_string(),
            cvss: cvss as f32,
            verified: true,
            false_positive: false,
            remediation: "1. Use parameterized XPath queries instead of string concatenation\n\
                         2. Validate and sanitize all user input before XPath processing\n\
                         3. Use precompiled XPath expressions with variable bindings\n\
                         4. Implement input allowlists for acceptable characters\n\
                         5. Escape XPath special characters: ' \" [ ] ( ) * / @\n\
                         6. Use XML databases with prepared statements when possible\n\
                         7. Implement least privilege for XML data access\n\
                         8. Avoid XPath for authentication - use secure alternatives\n\
                         9. Implement proper error handling without revealing XPath structure\n\
                         10. Consider using alternative query methods (e.g., DOM navigation)"
                .to_string(),
            discovered_at: chrono::Utc::now().to_rfc3339(),
                ml_confidence: None,
                ml_data: None,
        }
    }
}

// UUID generation helper
mod uuid {
    use rand::Rng;

    pub struct Uuid;

    impl Uuid {
        pub fn new_v4() -> Self {
            Uuid
        }

        pub fn to_string(&self) -> String {
            let mut rng = rand::rng();
            format!(
                "{:08x}{:04x}{:04x}{:04x}{:012x}",
                rng.random::<u32>(),
                rng.random::<u16>(),
                rng.random::<u16>(),
                rng.random::<u16>(),
                rng.random::<u64>() & 0xffffffffffff
            )
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::detection_helpers::AppCharacteristics;
    use crate::http_client::HttpClient;
    use std::sync::Arc;

    fn create_test_scanner() -> XPathInjectionScanner {
        let http_client = Arc::new(HttpClient::new(30, 3).unwrap());
        XPathInjectionScanner::new(http_client)
    }

    #[test]
    fn test_detect_xpath_error() {
        let scanner = create_test_scanner();

        let errors = vec![
            "XPath syntax error at position 5",
            "Invalid XPath expression",
            "XPathEvalError: malformed query",
            "DOMXPath::query() error",
        ];

        for error in errors {
            assert!(scanner.detect_xpath_error(error));
        }
    }

    #[test]
    fn test_detect_auth_bypass() {
        let scanner = create_test_scanner();

        assert!(scanner.detect_auth_bypass("Welcome to dashboard", 200));
        assert!(scanner.detect_auth_bypass("Login successful", 200));
        assert!(scanner.detect_auth_bypass("Redirect", 302));
    }

    #[test]
    fn test_no_false_positives() {
        let scanner = create_test_scanner();

        assert!(!scanner.detect_xpath_error("Normal response"));
        assert!(!scanner.detect_auth_bypass("Login failed", 401));
        assert!(!scanner.detect_auth_bypass("Invalid credentials", 200));
    }

    #[test]
    fn test_create_vulnerability() {
        let scanner = create_test_scanner();

        let vuln = scanner.create_vulnerability(
            "http://example.com",
            "Boolean-based XPath Injection",
            "' or '1'='1",
            "XPath injection detected",
            "Test evidence",
            Severity::Critical,
            "q",
        );

        assert_eq!(
            vuln.vuln_type,
            "XPath Injection (Boolean-based XPath Injection)"
        );
        assert_eq!(vuln.severity, Severity::Critical);
        assert_eq!(vuln.cwe, "CWE-643");
        assert_eq!(vuln.cvss, 9.8);
        assert!(vuln.verified);
    }
}