-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprivacy.html
More file actions
215 lines (206 loc) · 8.6 KB
/
privacy.html
File metadata and controls
215 lines (206 loc) · 8.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Privacy Notice for the Free Open Source IP Leak Test, explaining data collection and usage." />
<meta name="keywords" content="privacy policy, IP geolocation, WebRTC, data collection, open source" />
<meta name="author" content="sircryptic" />
<meta property="og:title" content="Privacy Notice - Free Open Source IP Leak Test" />
<meta property="og:description" content="Learn how the Free Open Source IP Leak Test handles your data." />
<meta property="og:image" content="https://img.icons8.com/?size=100&id=j2D-17SBxXAJ&format=png&color=000000" />
<meta property="og:url" content="https://sircryptic.github.io/Basic-Websites-Portfolio/IP%20Leak%20Test/privacy.html" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Privacy Notice - Free Open Source IP Leak Test" />
<meta name="twitter:description" content="Learn how the Free Open Source IP Leak Test handles your data." />
<meta name="twitter:image" content="https://img.icons8.com/?size=100&id=j2D-17SBxXAJ&format=png&color=000000" />
<title>Privacy Notice - IP Leak Test</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet" />
<link rel="icon" type="image/png" href="https://img.icons8.com/?size=100&id=j2D-17SBxXAJ&format=png&color=000000" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet" />
<style>
body {
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
min-height: 100vh;
font-family: 'Inter', sans-serif;
margin: 0;
}
.container {
max-width: 48rem;
margin: 0 auto;
padding: 1rem;
}
main {
opacity: 0;
transition: opacity 0.5s ease;
}
main.loaded {
opacity: 1;
}
.card {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 1rem;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.btn-primary {
background-color: #2563eb;
transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
background-color: #1d4ed8;
transform: scale(1.05);
}
#loading-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
opacity: 1;
transition: opacity 0.5s ease;
pointer-events: none;
}
#loading-overlay.hidden {
opacity: 0;
}
#loading-overlay .loading-text {
color: white;
font-size: 1.5rem;
font-weight: 600;
display: flex;
align-items: center;
gap: 8px;
}
.pulse-loader {
display: inline-flex;
align-items: center;
gap: 4px;
}
.pulse-loader span {
display: inline-block;
width: 8px;
height: 8px;
background-color: #2563eb;
border-radius: 50%;
animation: pulse 1.2s ease-in-out infinite;
}
.pulse-loader span:nth-child(2) {
animation-delay: 0.4s;
}
.pulse-loader span:nth-child(3) {
animation-delay: 0.8s;
}
@keyframes pulse {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.5); opacity: 0.7; }
}
footer {
display: flex;
justify-content: space-between;
align-items: center;
color: white;
padding: 1rem;
font-size: 0.9rem;
flex-wrap: wrap;
gap: 1rem;
}
footer .footer-text {
flex-grow: 1;
text-align: center;
}
footer a:hover {
opacity: 0.8;
}
</style>
</head>
<body class="font-sans text-gray-800">
<div id="loading-overlay">
<div class="loading-text">
<span class="pulse-loader"><span></span><span></span><span></span></span>
</div>
</div>
<main class="container py-6 sm:py-12">
<div class="card p-6 sm:p-8 space-y-6">
<h1 class="text-2xl sm:text-3xl font-bold text-indigo-700 flex items-center gap-2">
🔒 Privacy Notice
</h1>
<div class="space-y-4 text-base sm:text-lg leading-relaxed">
<p>This Privacy Notice explains how the Free Open Source IP Leak Test handles your data.</p>
<h2 class="text-lg sm:text-xl font-semibold text-indigo-600">Data Collection</h2>
<p>The tool collects the following to provide geolocation and leak testing:</p>
<ul class="list-disc pl-5">
<li><strong>IP Address</strong>: Used to fetch location details (e.g., city, country) via third-party APIs (<a href="https://ipapi.co" class="underline text-indigo-600 hover:text-indigo-800" target="_blank">ipapi.co</a>, <a href="http://ip-api.com" class="underline text-indigo-600 hover:text-indigo-800" target="_blank">ip-api.com</a>).</li>
<li><strong>User Agent</strong>: Identifies your browser and device type.</li>
<li><strong>WebRTC Data</strong>: Checks for IP or device name (mDNS) leaks via WebRTC, if enabled.</li>
<li><strong>Geolocation</strong>: Uses device coordinates for real-time location on the map, if you enable it.</li>
</ul>
<h2 class="text-lg sm:text-xl font-semibold text-indigo-600">Data Usage</h2>
<p>Your data is used only to:</p>
<ul class="list-disc pl-5">
<li>Display IP-based location, ISP, and VPN/Tor status.</li>
<li>Detect WebRTC leaks (IP or mDNS identifiers).</li>
<li>Show real-time location on the map, if enabled.</li>
</ul>
<h2 class="text-lg sm:text-xl font-semibold text-indigo-600">Data Storage</h2>
<p>No data is stored. All processing is client-side, with API requests sent directly to third-party services.</p>
<h2 class="text-lg sm:text-xl font-semibold text-indigo-600">Third-Party Services</h2>
<p>The tool uses:</p>
<ul class="list-disc pl-5">
<li><strong>ipapi.co</strong> and <strong>ip-api.com</strong> (<a href="https://ipapi.co" class="underline text-indigo-600 hover:text-indigo-800" target="_blank">ipapi.co</a>, <a href="http://ip-api.com" class="underline text-indigo-600 hover:text-indigo-800" target="_blank">ip-api.com</a>): For IP geolocation. Review their privacy policies.</li>
<li><strong>FlagCDN</strong> (<a href="https://flagcdn.com" class="underline text-indigo-600 hover:text-indigo-800" target="_blank">flagcdn.com</a>): For country flag images.</li>
<li><strong>OpenStreetMap</strong> (<a href="https://www.openstreetmap.org" class="underline text-indigo-600 hover:text-indigo-800" target="_blank">OpenStreetMap</a>) via Leaflet: For maps.</li>
</ul>
<h2 class="text-lg sm:text-xl font-semibold text-indigo-600">Contact</h2>
<p>For questions, contact me via <a href="https://github.com/sircryptic" class="underline text-indigo-600 hover:text-indigo-800" target="_blank">GitHub</a>.</p>
<p class="text-sm text-gray-500">Last updated: May 27, 2025</p>
</div>
<a href="index.html" class="inline-block btn-primary px-5 py-2 text-white rounded-lg shadow hover:shadow-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
Back to Home
</a>
</div>
</main>
<footer>
<span class="footer-text">Free Open Source IP Leak Test | <a href="privacy.html" class="underline">Privacy Notice</a></span>
<a href="https://github.com/sircryptic" target="_blank">
<img src="https://img.icons8.com/fluency/24/github.png" alt="GitHub" />
</a>
</footer>
<script>
// Fade in content and hide overlay
function fadeInContent() {
try {
const mainElement = document.querySelector('main');
const overlayElement = document.getElementById('loading-overlay');
if (mainElement) mainElement.classList.add('loaded');
if (overlayElement) {
overlayElement.classList.add('hidden');
setTimeout(() => {
overlayElement.style.display = 'none';
}, 500);
}
} catch (e) {}
}
// Start fade-in with timeout
try {
setTimeout(() => {
if (!document.querySelector('main').classList.contains('loaded')) {
fadeInContent();
}
}, 5000);
setTimeout(fadeInContent, 1000);
} catch (e) {}
</script>
</body>
</html>