Datasets:
Tasks:
Text Classification
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10M - 100M
Tags:
cybersecurity
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,11 +1,38 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# DeepURLBench
|
| 2 |
+
|
| 3 |
+
**DeepURLBench** is a large-scale benchmark dataset for real-world URL classification, developed by Deep Instinct's research team.
|
| 4 |
+
|
| 5 |
+
## Dataset Overview
|
| 6 |
+
|
| 7 |
+
The dataset includes two subsets in Parquet format:
|
| 8 |
+
|
| 9 |
+
### 🟢 `urls_with_dns`
|
| 10 |
+
|
| 11 |
+
Contains additional DNS resolution data:
|
| 12 |
+
|
| 13 |
+
- `url`: The URL being analyzed.
|
| 14 |
+
- `first_seen`: The timestamp when the URL was first observed.
|
| 15 |
+
- `TTL` (Time to Live): DNS TTL value.
|
| 16 |
+
- `label`: The classification label (`malware`, `phishing`, or `benign`).
|
| 17 |
+
- `ip_address`: List of resolved IP addresses.
|
| 18 |
+
|
| 19 |
+
### 🔵 `urls_without_dns`
|
| 20 |
+
|
| 21 |
+
Contains only the core metadata:
|
| 22 |
+
|
| 23 |
+
- `url`: The URL being analyzed.
|
| 24 |
+
- `first_seen`: The timestamp when the URL was first observed.
|
| 25 |
+
- `label`: The classification label (`malware`, `phishing`, or `benign`).
|
| 26 |
+
|
| 27 |
+
## How to Load
|
| 28 |
+
|
| 29 |
+
You can load the dataset using the Hugging Face `datasets` library:
|
| 30 |
+
|
| 31 |
+
```python
|
| 32 |
+
from datasets import load_dataset
|
| 33 |
+
|
| 34 |
+
# Load the subset with DNS data
|
| 35 |
+
ds_dns = load_dataset("DeepInstinct/DeepURLBench", "with_dns")
|
| 36 |
+
|
| 37 |
+
# Load the subset without DNS data
|
| 38 |
+
ds_no_dns = load_dataset("DeepInstinct/DeepURLBench", "without_dns")
|