3MPER0RR commited on
Commit
ab6cbdc
·
verified ·
1 Parent(s): 84b46f1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -5
README.md CHANGED
@@ -1,10 +1,40 @@
1
  ---
2
- title: AdvRB
3
- emoji: ⚡
4
- colorFrom: green
5
- colorTo: indigo
6
  sdk: static
7
  pinned: false
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.