Update README.md
Browse files
README.md
CHANGED
|
@@ -1,10 +1,40 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Robustness Dashboard Demo
|
| 3 |
+
emoji: 🤖
|
| 4 |
+
colorFrom: red
|
| 5 |
+
colorTo: gray
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
license: mit
|
| 9 |
---
|
| 10 |
|
| 11 |
+
# Unitree CVE Robustness Dashboard
|
| 12 |
+
|
| 13 |
+
Interactive dashboard for analyzing CVE exposure and robustness across Unitree robot models (Go1, Go2, H1, B1, B2, Z1).
|
| 14 |
+
|
| 15 |
+
## Features
|
| 16 |
+
|
| 17 |
+
- 📊 **Dashboard** — KPI cards, severity donut, timeline bar chart, attack vector breakdown, CVEs per model
|
| 18 |
+
- 🔍 **CVE Explorer** — searchable, filterable, sortable table with expandable CVE detail rows
|
| 19 |
+
- ⚔️ **Model Comparison** — robustness score bars, radar chart per attack vector, avg/max CVSS overlay
|
| 20 |
+
- 📂 **Load Data** — drag & drop support for **JSON, JSONL, CSV, Parquet** — merge or replace existing dataset
|
| 21 |
+
|
| 22 |
+
## Expected Data Schema
|
| 23 |
+
|
| 24 |
+
```json
|
| 25 |
+
{
|
| 26 |
+
"id": "CVE-2024-XXXXX",
|
| 27 |
+
"model": "Go2",
|
| 28 |
+
"component": "WebRTC Control",
|
| 29 |
+
"cvss": 9.8,
|
| 30 |
+
"severity": "CRITICAL",
|
| 31 |
+
"vector": "Network",
|
| 32 |
+
"description": "...",
|
| 33 |
+
"published": "2024-03-15",
|
| 34 |
+
"status": "Patch Available",
|
| 35 |
+
"cwe": "CWE-306",
|
| 36 |
+
"references": ["https://..."]
|
| 37 |
+
}
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
Ships with **20 demo CVEs** (clearly labeled). Replace with real NVD exports or custom research data.
|