Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,105 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
task_categories:
|
4 |
+
- text-classification
|
5 |
+
tags:
|
6 |
+
- Network Intrusion Detection
|
7 |
+
- Cybersecurity
|
8 |
+
- Network Packets
|
9 |
+
pretty_name: Internet background noise
|
10 |
+
size_categories:
|
11 |
+
- 10M<n<100M
|
12 |
+
configs:
|
13 |
+
- config_name: default
|
14 |
+
data_files:
|
15 |
+
- split: http_2024
|
16 |
+
path: "http-2024-10m.parquet"
|
17 |
+
---
|
18 |
+
|
19 |
+
# Internet Background Noise Dataset (Unlabeled Raw Data)
|
20 |
+
|
21 |
+
This dataset contains HTTP internet noise data collected by an internet honeypot. It consists of raw, unlabeled network packets, including metadata, payloads, and header information. This data is suitable for training and evaluating machine learning models for network intrusion detection, cybersecurity, and traffic analysis.
|
22 |
+
|
23 |
+
HoneyPot repository: [hachimi on GitHub](https://github.com/burpheart/hachimi).
|
24 |
+
|
25 |
+
---
|
26 |
+
|
27 |
+
## Dataset Overview
|
28 |
+
|
29 |
+
The **Internet Background Noise** dataset captures raw HTTP traffic from a honeypot designed to simulate typical internet background noise. It includes various network characteristics such as source and destination IP addresses, ports, HTTP headers, payloads, and timestamps. The dataset is provided as raw, unlabeled data to support custom analysis, unsupervised learning, and anomaly detection.
|
30 |
+
|
31 |
+
---
|
32 |
+
|
33 |
+
## Dataset Schema
|
34 |
+
|
35 |
+
The dataset is stored in **Parquet** format and includes the following fields:
|
36 |
+
|
37 |
+
- **SrcIp**: Source IP address (`BYTE_ARRAY`, UTF-8)
|
38 |
+
- **SrcPort**: Source port (`INT32`)
|
39 |
+
- **DstIpTag**: Anonymized destination IP tag (`BYTE_ARRAY`, UTF-8)
|
40 |
+
- **DstPort**: Destination port (`INT32`)
|
41 |
+
- **Country**: Country or region name in Chinese (`BYTE_ARRAY`, UTF-8)
|
42 |
+
- **IsoCode**: Country ISO code (`BYTE_ARRAY`, UTF-8)
|
43 |
+
- **Asn**: Autonomous System Number (ASN) (`INT32`)
|
44 |
+
- **AsnOrg**: ASN organization (`BYTE_ARRAY`, UTF-8)
|
45 |
+
- **Body**: Request body, containing escaped, non-printable characters (may include corrupted binary data) (`BYTE_ARRAY`, UTF-8)
|
46 |
+
- **BodyParam**: Parsed body parameters in JSON format (`BYTE_ARRAY`, UTF-8)
|
47 |
+
- **Error**: Boolean flag indicating if an error occurred (`BOOLEAN`)
|
48 |
+
- **Method**: HTTP method (`BYTE_ARRAY`, UTF-8)
|
49 |
+
- **Path**: Request path (`BYTE_ARRAY`, UTF-8)
|
50 |
+
- **Header**: HTTP headers (`BYTE_ARRAY`, UTF-8) (JSON String Map)
|
51 |
+
- **TimeStamp**: Request timestamp in milliseconds (`INT64`, logical type: TIMESTAMP, unit: MILLIS)
|
52 |
+
- **UserAgent**: User-Agent string (`BYTE_ARRAY`, UTF-8)
|
53 |
+
- **UriParam**: Parsed URI parameters in JSON format (`BYTE_ARRAY`, UTF-8)
|
54 |
+
- **Data**: Complete HTTP request string (escaped binary data) (`BYTE_ARRAY`, UTF-8)
|
55 |
+
- **Body_hash**: Hash of the request body (SHA-1) (`BYTE_ARRAY`, UTF-8)
|
56 |
+
- **Data_hash**: Hash of the entire HTTP request data (SHA-1) (`BYTE_ARRAY`, UTF-8)
|
57 |
+
- **Path_hash**: Hash of the request path (SHA-1) (`BYTE_ARRAY`, UTF-8)
|
58 |
+
- **Header_hash**: Hash of the request headers (SHA-1) (`BYTE_ARRAY`, UTF-8)
|
59 |
+
|
60 |
+
---
|
61 |
+
|
62 |
+
## Example Data
|
63 |
+
|
64 |
+
Here is a sample of the dataset:
|
65 |
+
|
66 |
+
```json
|
67 |
+
{
|
68 |
+
"SrcIp": "125.227.119.215",
|
69 |
+
"SrcPort": 48898,
|
70 |
+
"DstIpTag": "3j5z5z5z",
|
71 |
+
"DstPort": 12345,
|
72 |
+
"Country": "台湾",
|
73 |
+
"IsoCode": "TW",
|
74 |
+
"Asn": 3462,
|
75 |
+
"AsnOrg": "Data Communication Business Group",
|
76 |
+
"Body": "\\x02\\x00\\x00\\v\\x00\\x00\\t\\x1f\\x01G\\x00\\x12attributes-charset\\x00\\x05utf-8H\\x00...",
|
77 |
+
"BodyParam": "{}",
|
78 |
+
"Error": false,
|
79 |
+
"Method": "POST",
|
80 |
+
"Path": "/printers/whatever",
|
81 |
+
"Header": {
|
82 |
+
"Date": "Fri, 27 Sep 2024 04:17:03 GMT",
|
83 |
+
"Host": "10.30.6.181:12345",
|
84 |
+
"Expect": "100-continue",
|
85 |
+
"User-Agent": "CUPS/2.2.7 (Linux 5.4.0-150-generic; x86_64) IPP/2.0",
|
86 |
+
"Content-Type": "application/ipp",
|
87 |
+
"Content-Length": "218"
|
88 |
+
},
|
89 |
+
"TimeStamp": "2024-09-27T04:17:04Z",
|
90 |
+
"UserAgent": "CUPS/2.2.7 (Linux 5.4.0-150-generic; x86_64) IPP/2.0",
|
91 |
+
"UriParam": "{}",
|
92 |
+
"Data": "POST /printers/whatever HTTP/1.1\\r\\nContent-Length: 218\\r\\nContent-Type: application/ipp...",
|
93 |
+
"Body_hash": "685b196d71888a2092bb574dae25d98466209033",
|
94 |
+
"Data_hash": "13aee0faf1ed4e3cc66c219cab8e415aae7e7c1c",
|
95 |
+
"Path_hash": "6edc601b36985a576387cd67841d0339a23e3c91",
|
96 |
+
"Header_hash": "1f0cc56ab844f1cbc137bf8b259c34d63654d553"
|
97 |
+
}
|
98 |
+
```
|
99 |
+
|
100 |
+
**Notes:**
|
101 |
+
- **All destination IP addresses** (`DstIpTag`) and **Host headers** have been anonymized and randomized into the `10.0.0.0/8` private IP address space. This ensures that no real-world destination IPs or hosts are included in the dataset.
|
102 |
+
- **Source IP addresses** (`SrcIp`) remain unchanged for analysis purposes but may include publicly visible IPs collected from internet background noise.
|
103 |
+
- The `Body` and `Data` fields contain escaped non-printable characters (including newlines and quotes). Some non-printable binary characters may be corrupted due to earlier honeypot design limitations.
|
104 |
+
- The dataset includes both raw binary and textual representations for analysis flexibility.
|
105 |
+
|