Update README.md
Browse files
README.md
CHANGED
@@ -6,7 +6,80 @@ tags:
|
|
6 |
- App Privacy Policies
|
7 |
- Data Safety Labels
|
8 |
---
|
9 |
-
|
10 |
# GoogleDataSafety
|
11 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
In this dataset you have the following data:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
- App Privacy Policies
|
7 |
- Data Safety Labels
|
8 |
---
|
|
|
9 |
# GoogleDataSafety
|
10 |
|
11 |
+
Data used in the papers:
|
12 |
+
- [Unpacking Privacy Labels: A Measurement and Developer Perspective on Google's Data Safety Section](https://www.usenix.org/conference/usenixsecurity24/presentation/khandelwal)
|
13 |
+
- [The Overview of Privacy Labels and their Compatibility with Privacy Policies](https://arxiv.org/abs/2303.08213)
|
14 |
+
- [Comparing Privacy Labels of Applications in Android and iOS](https://dl.acm.org/doi/10.1145/3603216.3624967)
|
15 |
+
|
16 |
+
****
|
17 |
+
|
18 |
+
## Getting Started
|
19 |
+
|
20 |
In this dataset you have the following data:
|
21 |
+
1. App Privacy Policies
|
22 |
+
2. Data Safety Sections Labels
|
23 |
+
|
24 |
+
The data is collected from the apps in Google Play Store over the period of 2022-2023.
|
25 |
+
|
26 |
+
****
|
27 |
+
|
28 |
+
### 1. Code Structure
|
29 |
+
```
|
30 |
+
βββ raw_policies/
|
31 |
+
β βββ policy_raw_0.zip
|
32 |
+
β βββ policy_raw_100000.zip
|
33 |
+
β βββ policy_raw_200000.zip
|
34 |
+
β βββ policy_raw_300000.zip
|
35 |
+
β βββ ...
|
36 |
+
βββ data_safety_sections/
|
37 |
+
β βββ 05_30/
|
38 |
+
β βββ 06_20/
|
39 |
+
β βββ 06_28/
|
40 |
+
β βββ 07_01/
|
41 |
+
β βββ ...
|
42 |
+
```
|
43 |
+
|
44 |
+
### 2. Using Privacy Policy Data
|
45 |
+
Unzip the zip file and you will see the following structure:
|
46 |
+
```
|
47 |
+
βββ policy_raw_0/
|
48 |
+
β βββ <app_id>
|
49 |
+
β β βββ <privacy_policy_timestamp>.txt # Raw HTML of the privacy policy
|
50 |
+
β β βββ site.txt # URL of the privacy policy
|
51 |
+
β βββ ...
|
52 |
+
```
|
53 |
+
|
54 |
+
### 3. Loading DSS Label Data
|
55 |
+
```python
|
56 |
+
import pandas as pd
|
57 |
+
|
58 |
+
# Load the data
|
59 |
+
# !pip install pyarrow
|
60 |
+
|
61 |
+
data = pd.read_parquet('data_safety_sections/05_30/all_data_05_30.brotli')
|
62 |
+
```
|
63 |
+
|
64 |
+
---------
|
65 |
+
|
66 |
+
## Contact
|
67 |
+
|
68 |
+
For any questions or feedback, feel free to contact [Asmit Nayak](mailto:[email protected]) and [Rishabh Khandelwal](mailto:[email protected]).
|
69 |
+
|
70 |
+
|
71 |
+
## Citation
|
72 |
+
|
73 |
+
If you find this dataset useful in your research or applications, please kindly cite:
|
74 |
+
```
|
75 |
+
@inproceedings {google_data_safety_section,
|
76 |
+
author = {Rishabh Khandelwal and Asmit Nayak and Paul Chung and Kassem Fawaz},
|
77 |
+
title = {Unpacking Privacy Labels: A Measurement and Developer Perspective on Google's Data Safety Section},
|
78 |
+
booktitle = {33rd USENIX Security Symposium (USENIX Security 24)},
|
79 |
+
year = {2024},
|
80 |
+
address = {Philadelphia, PA},
|
81 |
+
url = {https://www.usenix.org/conference/usenixsecurity24/presentation/khandelwal},
|
82 |
+
publisher = {USENIX Association},
|
83 |
+
month = aug
|
84 |
+
}
|
85 |
+
```
|