Initial dataset card
Browse files
README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-classification
|
| 5 |
+
- feature-extraction
|
| 6 |
+
tags:
|
| 7 |
+
- security
|
| 8 |
+
- reverse-engineering
|
| 9 |
+
- e2b
|
| 10 |
+
- sandbox
|
| 11 |
+
- ebpf
|
| 12 |
+
- ndpi
|
| 13 |
+
pretty_name: "pplx-e2b-re Research Data"
|
| 14 |
+
size_categories:
|
| 15 |
+
- 1K<n<10K
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# pplx-e2b-re Research Platform — Dataset
|
| 19 |
+
|
| 20 |
+
Research data from the Perplexity E2B sandbox reverse engineering project. Contains structured findings, probe results, embeddings, and configuration data collected across 12+ sessions.
|
| 21 |
+
|
| 22 |
+
## Dataset Structure
|
| 23 |
+
|
| 24 |
+
### Categories
|
| 25 |
+
|
| 26 |
+
| Category | Files | Rows | Description |
|
| 27 |
+
|----------|-------|------|-------------|
|
| 28 |
+
| **probes** | 18 | 931 | Sandbox environment probes: connectors, models, features, cookies, embeddings |
|
| 29 |
+
| **rundeck_probes** | 16 | 308 | Automated probe results: GitHub, Linear, HF, envd metrics, network peers |
|
| 30 |
+
| **overview** | 6 | 243 | Session overviews: master catalog, inventories, connectors list |
|
| 31 |
+
| **rundeck_state** | 7 | 163 | Rundeck operational state: manifests, compacts, toolkit, services |
|
| 32 |
+
| **rundeck_data** | 1 | 20 | Probe data: LLM API/SDK configurations |
|
| 33 |
+
|
| 34 |
+
### Key Datasets
|
| 35 |
+
|
| 36 |
+
- **findings_embeddings.parquet** — 162 research findings with 1536-dim HuggingFace embeddings for semantic search
|
| 37 |
+
- **eppo_idb_flags.parquet** — 395 feature flags from Perplexity's Eppo integration
|
| 38 |
+
- **models_config_v1.parquet** — 65 LLM model configurations (including unreleased models)
|
| 39 |
+
- **copilot_models.parquet** — 42 GitHub Copilot model definitions with capabilities
|
| 40 |
+
- **rootfs_scan.parquet** — Full sandbox root filesystem metadata (130 columns)
|
| 41 |
+
|
| 42 |
+
### Sandbox Context
|
| 43 |
+
|
| 44 |
+
| Field | Value |
|
| 45 |
+
|-------|-------|
|
| 46 |
+
| Platform | E2B Firecracker MicroVM |
|
| 47 |
+
| Kernel | 6.1.158 |
|
| 48 |
+
| OS | Debian 13 (trixie) |
|
| 49 |
+
| Template | `ij1plp1090o3fuzyuac0` |
|
| 50 |
+
|
| 51 |
+
## Usage
|
| 52 |
+
|
| 53 |
+
```python
|
| 54 |
+
import pyarrow.parquet as pq
|
| 55 |
+
import duckdb
|
| 56 |
+
|
| 57 |
+
# Load a parquet file
|
| 58 |
+
findings = pq.read_table("data/probes/findings_embeddings.parquet")
|
| 59 |
+
|
| 60 |
+
# Query with DuckDB
|
| 61 |
+
con = duckdb.connect()
|
| 62 |
+
result = con.sql("""
|
| 63 |
+
SELECT category, count(*) as n
|
| 64 |
+
FROM 'data/probes/findings_all.parquet'
|
| 65 |
+
GROUP BY category
|
| 66 |
+
ORDER BY n DESC
|
| 67 |
+
""").fetchall()
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
## License
|
| 71 |
+
|
| 72 |
+
MIT — see [repository](https://github.com/pv-udpv/pplx-e2b-re) for full details.
|