WIPI commited on
Commit
aa3d883
β€’
1 Parent(s): 4b5c336

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -1
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
+ ```