DeepInstinct commited on
Commit
93e34c3
·
verified ·
1 Parent(s): b8a9b88

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +38 -11
README.md CHANGED
@@ -1,11 +1,38 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- task_categories:
4
- - text-classification
5
- language:
6
- - en
7
- tags:
8
- - URL-Classification
9
- size_categories:
10
- - 100M<n<1B
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")