Datasets:
Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-4.0
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
pretty_name: DeepURLBench
|
6 |
+
---
|
7 |
+
# DeepURLBench Dataset
|
8 |
+
|
9 |
+
This repository contains the dataset **DeepURLBench**, introduced in the paper **"A New Dataset and Methodology for Malicious URL Classification"** by Deep Instinct's research team.
|
10 |
+
|
11 |
+
## Dataset Overview
|
12 |
+
|
13 |
+
The repository includes two parquet directories:
|
14 |
+
|
15 |
+
1. **`urls_with_dns`**:
|
16 |
+
- Contains the following fields:
|
17 |
+
- `url`: The URL being analyzed.
|
18 |
+
- `first_seen`: The timestamp when the URL was first observed.
|
19 |
+
- `TTL` (Time to Live): The time-to-live value of the DNS record.
|
20 |
+
- `label`: Indicates whether the URL is malware, phishing or benign.
|
21 |
+
- `IP addresses`: The associated IP addresses.
|
22 |
+
|
23 |
+
2. **`urls_without_dns`**:
|
24 |
+
- Contains the following fields:
|
25 |
+
- `url`: The URL being analyzed.
|
26 |
+
- `first_seen`: The timestamp when the URL was first observed.
|
27 |
+
- `label`: Indicates whether the URL is malware, phishing or benign.
|
28 |
+
|
29 |
+
## Usage Instructions
|
30 |
+
|
31 |
+
To load the dataset using Python and Pandas, follow these steps:
|
32 |
+
|
33 |
+
```python
|
34 |
+
import pandas as pd
|
35 |
+
|
36 |
+
# Replace 'directory' with the path to the parquet file or directory
|
37 |
+
df = pd.DataFrame.from_parquet("directory")
|
38 |
+
```
|
39 |
+
## License
|
40 |
+
|
41 |
+
This dataset is licensed under the [Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0)](https://creativecommons.org/licenses/by-nc/4.0/). You are free to use, share, and adapt the dataset for non-commercial purposes, with proper attribution.
|