ziadatalabs commited on
Commit
9380463
·
verified ·
1 Parent(s): a05abbc

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +40 -34
README.md CHANGED
@@ -2,55 +2,62 @@
2
  license: cc-by-nc-4.0
3
  task_categories:
4
  - tabular-classification
5
- - tabular-regression
6
  language:
7
  - en
8
  tags:
9
  - synthetic
10
  - test-data
11
- - mock-data
12
- - customer-data
 
 
13
  - tabular
14
- - faker
15
  size_categories:
16
  - 10M<n<100M
17
- pretty_name: Free Synthetic Customer Data (50M)
18
  ---
19
 
20
- # Free Synthetic Customer Data50M Rows
21
 
22
- A free, fully synthetic dataset of **50,000,000 customer/user records**, generated for developers and builders who need realistic-looking test data without touching any real personal information.
23
 
24
- Every value in this dataset is **artificially generated**. No real people, no scraped data, no real PII. It's built for seeding databases, load-testing APIs, prototyping apps, testing ETL pipelines, and demoing software with data that *looks* real but isn't.
25
 
26
  ## Schema
27
 
28
  | Column | Type | Description |
29
  |---|---|---|
30
- | `full_name` | string | Synthetic first + last name |
31
- | `email` | string | Synthetic email address (name-derived) |
32
- | `street_address` | string | Synthetic street number + name |
33
- | `city` | string | Synthetic city name |
34
- | `state` | string | US state abbreviation (2-letter) |
35
- | `zip_code` | string | 5-digit US-style postal code |
36
- | `phone` | string | US-style phone number, `(NXX) NXX-XXXX` format |
37
- | `signup_date` | string | ISO date (`YYYY-MM-DD`), spread across ~6 years |
38
- | `account_status` | string | One of: `active`, `inactive`, `trial`, `suspended` |
39
-
40
- **Account status distribution (approx):** active 65%, inactive 15%, trial 12%, suspended 8%.
 
 
 
 
 
 
 
 
41
 
42
  ## Format
43
 
44
- - **Apache Parquet**, Snappy compression
45
- - One file, ~2.8 GB, 50,000,000 rows
46
  - Loads cleanly with pandas, polars, DuckDB, PyArrow, or the `datasets` library
47
 
48
  ## Quick start
49
 
50
  ```python
51
  import pandas as pd
52
-
53
- df = pd.read_parquet("synthetic_users_50M.parquet")
54
  print(df.head())
55
  ```
56
 
@@ -58,28 +65,27 @@ Or with the `datasets` library:
58
 
59
  ```python
60
  from datasets import load_dataset
61
-
62
- ds = load_dataset("ziadatalabs/FreeSyntheticCustomerData50M")
63
  ```
64
 
65
  Or with DuckDB (great for querying without loading it all into memory):
66
 
67
  ```sql
68
- SELECT account_status, count(*)
69
- FROM 'synthetic_users_50M.parquet'
70
- GROUP BY account_status;
 
71
  ```
72
 
73
  ## Notes
74
 
75
- - All data is synthetic and generated programmatically. Any resemblance to real individuals is coincidental.
76
- - Emails, addresses, and phone numbers follow realistic *formats* but are not real, deliverable, or dialable.
77
- - This is the first of several free synthetic datasets planned for buildersmore types coming.
 
78
 
79
  ## License & Usage
80
 
81
- Released under **CC BY-NC 4.0** — free for personal, research, and educational use, with attribution, **no commercial use**. See [the license](https://creativecommons.org/licenses/by-nc/4.0/) for details.
82
-
83
- ---
84
 
85
  *Published by Zia Data Labs. We create synthetic data — and we give some of it away free, because good test data shouldn't be hard to find.*
 
2
  license: cc-by-nc-4.0
3
  task_categories:
4
  - tabular-classification
 
5
  language:
6
  - en
7
  tags:
8
  - synthetic
9
  - test-data
10
+ - cybersecurity
11
+ - network-traffic
12
+ - intrusion-detection
13
+ - incident-response
14
  - tabular
 
15
  size_categories:
16
  - 10M<n<100M
17
+ pretty_name: Free Synthetic Security Cascade (100M)
18
  ---
19
 
20
+ # Free Synthetic Security Cascade100M Rows
21
 
22
+ A free, fully synthetic dataset of 100,000,000 network flow records, generated for developers and builders working on intrusion detection, security analytics, and incident-response models realistic network traffic without touching any real network, host, or personal data.
23
 
24
+ Every value in this dataset is artificially generated. No real captures, no scraped traffic, no real IPs or PII. What makes it different: most rows are ordinary background traffic, but malicious activity arrives in **cascades** — dense bursts of correlated events where one intrusion triggers a chain of follow-on activity, separated by genuine calm stretches. This mirrors how real incidents actually unfold, so a model trained here has to handle both the quiet and the storm, not just uniformly-sprinkled anomalies.
25
 
26
  ## Schema
27
 
28
  | Column | Type | Description |
29
  |---|---|---|
30
+ | flow_id | string | Unique flow identifier |
31
+ | timestamp | timestamp[ms] | Flow start time |
32
+ | src_ip | string | Source IP address (synthetic) |
33
+ | dst_ip | string | Destination IP address (synthetic) |
34
+ | src_port | int32 | Source port |
35
+ | dst_port | int32 | Destination port |
36
+ | protocol | string | One of: TCP, UDP, ICMP |
37
+ | bytes_sent | int64 | Bytes sent in the flow |
38
+ | bytes_received | int64 | Bytes received in the flow |
39
+ | duration_ms | int64 | Flow duration in milliseconds |
40
+ | flag_pattern | string | TCP-style flag pattern (9 values, e.g. SYN-ACK-ACK, FIN-ACK, PSH-ACK) |
41
+ | cascade_id | string | ID linking flows in the same attack cascade (null for normal traffic) |
42
+ | cascade_type | string | Attack cascade type (null for normal traffic) |
43
+ | event_severity | string | One of: none, low, medium, high, critical |
44
+ | is_malicious_ground_truth | bool | Ground-truth label: true if the flow is part of an attack cascade |
45
+
46
+ **Cascade types:** `port_scan_to_bruteforce`, `ddos_burst`, `exfiltration_pattern`, `credential_stuffing_wave`, `lateral_movement`.
47
+
48
+ Normal background traffic has `cascade_id` and `cascade_type` null, `event_severity` of `none`, and `is_malicious_ground_truth` false. Malicious flows carry a shared `cascade_id` so you can group a full incident, a `cascade_type`, an elevated severity, and a true label.
49
 
50
  ## Format
51
 
52
+ - Apache Parquet, Snappy compression
53
+ - One file, ~4.25 GB, 100,000,000 rows
54
  - Loads cleanly with pandas, polars, DuckDB, PyArrow, or the `datasets` library
55
 
56
  ## Quick start
57
 
58
  ```python
59
  import pandas as pd
60
+ df = pd.read_parquet("security_cascade_100M.parquet")
 
61
  print(df.head())
62
  ```
63
 
 
65
 
66
  ```python
67
  from datasets import load_dataset
68
+ ds = load_dataset("ziadatalabs/FreeSyntheticSecurityCascade100M")
 
69
  ```
70
 
71
  Or with DuckDB (great for querying without loading it all into memory):
72
 
73
  ```sql
74
+ SELECT cascade_type, count(*)
75
+ FROM 'security_cascade_100M.parquet'
76
+ WHERE is_malicious_ground_truth
77
+ GROUP BY cascade_type;
78
  ```
79
 
80
  ## Notes
81
 
82
+ - All data is synthetic and generated programmatically. Any resemblance to real hosts, IPs, or traffic is coincidental.
83
+ - IPs, ports, and flow stats follow realistic formats and distributions but describe no real network.
84
+ - The cascade clustering is **by design**: malicious events cluster into correlated bursts with quiet periods between them, so models trained on this data are stress-tested for real-world emergencies and incident response ready for anything, not just evenly-spaced anomalies.
85
+ - `is_malicious_ground_truth` and `cascade_id` give you clean labels for both per-flow classification and full-incident grouping.
86
 
87
  ## License & Usage
88
 
89
+ Released under **CC BY-NC 4.0** — free for personal, research, and educational use, with attribution, no commercial use. See the license for details.
 
 
90
 
91
  *Published by Zia Data Labs. We create synthetic data — and we give some of it away free, because good test data shouldn't be hard to find.*