Interactive Lab

Exercise 1 of 3 | Points: 0 / 80

Multi-Scanner Result Correlation

intermediate

Correlate findings from two vulnerability scanners with different results.

20
points

Instructions

Initial Data

{
  "scanner_a_results": [
    {
      "id": "SA-001",
      "type": "sql_injection",
      "severity": "high",
      "confidence": 0.9
    },
    {
      "id": "SA-002",
      "type": "xss_reflected",
      "severity": "high",
      "confidence": 0.7
    },
    {
      "id": "SA-003",
      "type": "xss_stored",
      "severity": "high",
      "confidence": 0.6
    },
    {
      "id": "SA-004",
      "type": "csrf",
      "severity": "high",
      "confidence": 0.85
    }
  ],
  "scanner_b_results": [
    {
      "id": "SB-001",
      "type": "sql_injection",
      "severity": "medium",
      "confidence": 0.8
    },
    {
      "id": "SB-002",
      "type": "outdated_software",
      "severity": "medium",
      "confidence": 0.95
    },
    {
      "id": "SB-003",
      "type": "weak_tls",
      "severity": "medium",
      "confidence": 0.9
    }
  ]
}

Your Submission

Exercises

Available Tools

Vulnerability Scanner
Cve Database

Score

0
of 80 points