-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2224 lines (2064 loc) · 125 KB
/
Copy pathindex.html
File metadata and controls
2224 lines (2064 loc) · 125 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PrivGuide — Best Privacy Apps & Personal Privacy Guide (Phone, Desktop, Life)</title>
<meta name="description" content="Ultimate privacy guide: find the best privacy apps (Signal, Bitwarden, Mullvad, Proton), harden Android & iOS, secure Windows/macOS/Linux, and protect personal privacy in everyday life. Hosted and owned by Vassbrekke AS — makers of PrivyDeck and PrivBeacon." />
<meta name="keywords" content="PrivyDeck, PrivBeacon, Vassbrekke AS, privacy apps, best privacy apps, personal privacy, phone privacy, android privacy, ios privacy, desktop privacy, linux privacy, password manager, vpn, signal, bitwarden, proton mail, mullvad, grapheneos, digital privacy guide, privacy checklist, degoogle, encrypted messaging, privacy tools 2026" />
<meta name="author" content="PrivGuide" />
<meta name="robots" content="index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1" />
<meta name="googlebot" content="index, follow" />
<meta name="theme-color" content="#05010d" />
<meta name="color-scheme" content="dark" />
<meta name="referrer" content="no-referrer" />
<meta name="format-detection" content="telephone=no" />
<link rel="canonical" href="https://www.privguide.com/" />
<link rel="alternate" hreflang="en" href="https://www.privguide.com/" />
<link rel="alternate" hreflang="no" href="https://www.privguide.com/no/" />
<link rel="alternate" hreflang="es" href="https://www.privguide.com/es/" />
<link rel="alternate" hreflang="de" href="https://www.privguide.com/de/" />
<link rel="alternate" hreflang="fr" href="https://www.privguide.com/fr/" />
<link rel="alternate" hreflang="x-default" href="https://www.privguide.com/" />
<!-- Open Graph -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="PrivGuide" />
<meta property="og:title" content="PrivGuide — Best Privacy Apps & Personal Privacy Guide (Phone, Desktop, Life)" />
<meta property="og:description" content="Ultimate privacy guide: find the best privacy apps (Signal, Bitwarden, Mullvad, Proton), harden Android & iOS, secure Windows/macOS/Linux, and protect personal privacy in everyday life. Hosted and owned by Vassbrekke AS — makers of PrivyDeck and PrivBeacon." />
<meta property="og:url" content="https://www.privguide.com/" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="https://www.privguide.com/assets/og-cover.svg" />
<meta property="og:image:alt" content="PrivGuide — privacy apps and personal privacy guide" />
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="PrivGuide — Best Privacy Apps & Personal Privacy Guide (Phone, Desktop, Life)" />
<meta name="twitter:description" content="Ultimate privacy guide: find the best privacy apps (Signal, Bitwarden, Mullvad, Proton), harden Android & iOS, secure Windows/macOS/Linux, and protect personal privacy in everyday life. Hosted and owned by Vassbrekke AS — makers of PrivyDeck and PrivBeacon." />
<meta name="twitter:image" content="https://www.privguide.com/assets/og-cover.svg" />
<link rel="icon" href="assets/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="assets/favicon.svg" />
<link rel="manifest" href="site.webmanifest" />
<!-- Fonts: system/UI stacks only — no Google Fonts or other third-party font CDNs -->
<link rel="stylesheet" href="css/styles.css" />
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "PrivGuide",
"url": "https://www.privguide.com/",
"description": "Ultimate privacy guide: find the best privacy apps (Signal, Bitwarden, Mullvad, Proton), harden Android & iOS, secure Windows/macOS/Linux, and protect personal privacy in everyday life. Hosted and owned by Vassbrekke AS — makers of PrivyDeck and PrivBeacon.",
"inLanguage": "en",
"potentialAction": {
"@type": "SearchAction",
"target": "https://www.privguide.com/#apps",
"query-input": "required name=search_term_string"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "PrivGuide — Best Privacy Apps & Personal Privacy Guide (Phone, Desktop, Life)",
"description": "Ultimate privacy guide: find the best privacy apps (Signal, Bitwarden, Mullvad, Proton), harden Android & iOS, secure Windows/macOS/Linux, and protect personal privacy in everyday life. Hosted and owned by Vassbrekke AS — makers of PrivyDeck and PrivBeacon.",
"url": "https://www.privguide.com/",
"inLanguage": "en",
"isPartOf": {
"@type": "WebSite",
"name": "PrivGuide",
"url": "https://www.privguide.com"
},
"publisher": {
"@type": "Organization",
"name": "Vassbrekke AS",
"url": "https://www.vassbrekke.no",
"sameAs": [
"https://www.vassbrekke.no",
"https://privydeck.com",
"https://www.privbeacon.com"
]
},
"copyrightHolder": {
"@type": "Organization",
"name": "Vassbrekke AS",
"url": "https://www.vassbrekke.no"
},
"about": {
"@type": "Thing",
"name": "Digital privacy",
"description": "Personal privacy apps, phone hardening, desktop security, and everyday privacy habits"
},
"primaryImageOfPage": "https://www.privguide.com/assets/og-cover.svg"
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "Best privacy apps — by category",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@type": "SoftwareApplication",
"name": "Signal",
"url": "https://signal.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Gold standard for private messaging. End-to-end encryption, disappearing messages, open source, and no ads."
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@type": "SoftwareApplication",
"name": "Session",
"url": "https://getsession.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "No phone number required. Onion-routed metadata resistance. Stronger anonymity model than mainstream chat apps."
}
},
{
"@type": "ListItem",
"position": 3,
"item": {
"@type": "SoftwareApplication",
"name": "SimpleX Chat",
"url": "https://simplex.chat",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "No phone, email, or persistent user IDs. One-time invite links and relays designed to resist metadata correlation. Data stays on-device."
}
},
{
"@type": "ListItem",
"position": 4,
"item": {
"@type": "SoftwareApplication",
"name": "Threema",
"url": "https://threema.ch",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Swiss messenger with a one-time purchase — no phone or email required. Full E2EE with forward secrecy; open-source apps and audited protocol."
}
},
{
"@type": "ListItem",
"position": 5,
"item": {
"@type": "SoftwareApplication",
"name": "Element (Matrix)",
"url": "https://element.io",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Federated, E2EE rooms, bridges to other networks. You can self-host and own the infrastructure."
}
},
{
"@type": "ListItem",
"position": 6,
"item": {
"@type": "SoftwareApplication",
"name": "Firefox",
"url": "https://www.mozilla.org/firefox/",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Best balance of usability and control. Pair with PrivyDeck and/or uBlock Origin, multi-account containers, and strict tracking protection."
}
},
{
"@type": "ListItem",
"position": 7,
"item": {
"@type": "SoftwareApplication",
"name": "Brave",
"url": "https://brave.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Chromium-based with aggressive built-in ad/tracker blocking and private windows with Tor option."
}
},
{
"@type": "ListItem",
"position": 8,
"item": {
"@type": "SoftwareApplication",
"name": "Tor Browser",
"url": "https://www.torproject.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Routes traffic through the Tor network. Essential for high-risk research and censorship circumvention. Not for everyday logins."
}
},
{
"@type": "ListItem",
"position": 9,
"item": {
"@type": "SoftwareApplication",
"name": "Mullvad Browser",
"url": "https://mullvad.net/browser",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Tor Browser technology without the Tor network — privacy-hardened Firefox build designed to reduce fingerprinting."
}
},
{
"@type": "ListItem",
"position": 10,
"item": {
"@type": "SoftwareApplication",
"name": "LibreWolf",
"url": "https://librewolf.net",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Hardened Firefox fork with telemetry stripped and strong anti-fingerprinting defaults out of the box. Excellent daily driver."
}
},
{
"@type": "ListItem",
"position": 11,
"item": {
"@type": "SoftwareApplication",
"name": "Mullvad VPN",
"url": "https://mullvad.net",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Anonymous accounts (no email), cash/crypto payment, audited, no-logs reputation. Privacy-first business model."
}
},
{
"@type": "ListItem",
"position": 12,
"item": {
"@type": "SoftwareApplication",
"name": "Proton VPN",
"url": "https://protonvpn.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Solid free tier, open-source apps, Secure Core, and ties into the Proton ecosystem. Good for beginners."
}
},
{
"@type": "ListItem",
"position": 13,
"item": {
"@type": "SoftwareApplication",
"name": "IVPN",
"url": "https://www.ivpn.net",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Transparent privacy company, no email signup, strong anti-tracking features, and clear ethics around marketing."
}
},
{
"@type": "ListItem",
"position": 14,
"item": {
"@type": "SoftwareApplication",
"name": "Bitwarden",
"url": "https://bitwarden.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Open source, audited, free for individuals, works everywhere. Self-host with Vaultwarden if you want full control."
}
},
{
"@type": "ListItem",
"position": 15,
"item": {
"@type": "SoftwareApplication",
"name": "KeePassXC",
"url": "https://keepassxc.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Local-first password database. You control the file, the backups, and the sync method. Zero cloud dependency by design."
}
},
{
"@type": "ListItem",
"position": 16,
"item": {
"@type": "SoftwareApplication",
"name": "Proton Pass",
"url": "https://proton.me/pass",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Integrated with Proton accounts. Clean UX, hide-my-email aliases, and open-source apps."
}
},
{
"@type": "ListItem",
"position": 17,
"item": {
"@type": "SoftwareApplication",
"name": "Proton Mail",
"url": "https://proton.me/mail",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Encrypted email based in Switzerland. Easy onboarding, calendar/drive ecosystem, strong brand for privacy email."
}
},
{
"@type": "ListItem",
"position": 18,
"item": {
"@type": "SoftwareApplication",
"name": "Tuta (Tutanota)",
"url": "https://tuta.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Encrypted email and calendar from Germany. Minimal tracking surface and transparent development."
}
},
{
"@type": "ListItem",
"position": 19,
"item": {
"@type": "SoftwareApplication",
"name": "Thunderbird",
"url": "https://www.thunderbird.net",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Desktop email client with OpenPGP support. Use with any provider — including your own domain and self-hosted mail."
}
},
{
"@type": "ListItem",
"position": 20,
"item": {
"@type": "SoftwareApplication",
"name": "DuckDuckGo",
"url": "https://duckduckgo.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "No search history profiling for ads. Simple switch from Google that immediately cuts a major tracking vector."
}
},
{
"@type": "ListItem",
"position": 21,
"item": {
"@type": "SoftwareApplication",
"name": "Brave Search / Startpage",
"url": "https://search.brave.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Independent indexes or privacy proxies for web results without building an ad profile around your queries."
}
},
{
"@type": "ListItem",
"position": 22,
"item": {
"@type": "SoftwareApplication",
"name": "SearXNG",
"url": "https://searxng.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Self-hostable metasearch. Aggregate engines without handing one company your entire curiosity graph."
}
},
{
"@type": "ListItem",
"position": 23,
"item": {
"@type": "SoftwareApplication",
"name": "Proton Drive / Tresorit",
"url": "https://proton.me/drive",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "End-to-end encrypted cloud storage. Better than trust-us consumer clouds for sensitive documents."
}
},
{
"@type": "ListItem",
"position": 24,
"item": {
"@type": "SoftwareApplication",
"name": "Cryptomator",
"url": "https://cryptomator.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Client-side vaults that sit on top of Dropbox, Google Drive, or any folder. Encrypt before upload."
}
},
{
"@type": "ListItem",
"position": 25,
"item": {
"@type": "SoftwareApplication",
"name": "VeraCrypt",
"url": "https://www.veracrypt.fr",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Open-source disk and container encryption for local drives and portable vaults. Encrypt whole volumes or create hidden volumes."
}
},
{
"@type": "ListItem",
"position": 26,
"item": {
"@type": "SoftwareApplication",
"name": "Nextcloud / Syncthing",
"url": "https://nextcloud.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Self-host files, photos, and calendars (Nextcloud) or peer-to-peer sync with no central server (Syncthing)."
}
},
{
"@type": "ListItem",
"position": 27,
"item": {
"@type": "SoftwareApplication",
"name": "Aegis Authenticator",
"url": "https://getaegis.app",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Open-source Android 2FA app with encrypted exports and no cloud lock-in. Prefer TOTP over SMS always."
}
},
{
"@type": "ListItem",
"position": 28,
"item": {
"@type": "SoftwareApplication",
"name": "Ente Auth",
"url": "https://ente.io/auth",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Cross-platform open-source authenticator with optional encrypted sync. Clean alternative to proprietary 2FA apps."
}
},
{
"@type": "ListItem",
"position": 29,
"item": {
"@type": "SoftwareApplication",
"name": "YubiKey / hardware keys",
"url": "https://www.yubico.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Phishing-resistant MFA. Use security keys for email, password manager, GitHub, and critical accounts."
}
},
{
"@type": "ListItem",
"position": 30,
"item": {
"@type": "SoftwareApplication",
"name": "GrapheneOS",
"url": "https://grapheneos.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Hardened Android for Pixel devices. Best mobile security/privacy posture available to consumers today."
}
},
{
"@type": "ListItem",
"position": 31,
"item": {
"@type": "SoftwareApplication",
"name": "LineageOS /e/OS",
"url": "https://lineageos.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Custom Android ROMs for non-Pixel devices. LineageOS (+ microG) or /e/OS cut Google services; not GrapheneOS-tier hardening."
}
},
{
"@type": "ListItem",
"position": 32,
"item": {
"@type": "SoftwareApplication",
"name": "Linux (Fedora / Debian / Qubes)",
"url": "https://fedoraproject.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Leave Windows telemetry behind. Fedora/Debian for daily driving; Qubes OS for serious compartmentalization."
}
},
{
"@type": "ListItem",
"position": 33,
"item": {
"@type": "SoftwareApplication",
"name": "iOS (hardened)",
"url": "https://support.apple.com/guide/iphone/protect-your-web-browsing-iph01f4a43a5/ios",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Strong sandboxing out of the box. Lock down with Lockdown Mode, limit iCloud, disable ad tracking, and review permissions."
}
},
{
"@type": "ListItem",
"position": 34,
"item": {
"@type": "SoftwareApplication",
"name": "Organic Maps / OsmAnd",
"url": "https://organicmaps.app",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Offline maps based on OpenStreetMap. Navigate without constantly broadcasting your location to Google."
}
},
{
"@type": "ListItem",
"position": 35,
"item": {
"@type": "SoftwareApplication",
"name": "Standard Notes / Joplin",
"url": "https://standardnotes.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Encrypted notes with cross-device sync. Keep journals and drafts out of plain-text cloud notes."
}
},
{
"@type": "ListItem",
"position": 36,
"item": {
"@type": "SoftwareApplication",
"name": "uBlock Origin",
"url": "https://ublockorigin.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "The classic open-source browser content blocker. Pair with Firefox for excellent ad and tracker filtering on desktop."
}
},
{
"@type": "ListItem",
"position": 37,
"item": {
"@type": "SoftwareApplication",
"name": "RethinkDNS",
"url": "https://rethinkdns.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "DNS + firewall style protection for Android. Block tracker domains system-wide beyond the browser."
}
},
{
"@type": "ListItem",
"position": 38,
"item": {
"@type": "SoftwareApplication",
"name": "Ente Photos / Immich",
"url": "https://ente.io",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Encrypted photo backup (Ente) or self-hosted Google Photos alternative (Immich)."
}
},
{
"@type": "ListItem",
"position": 39,
"item": {
"@type": "SoftwareApplication",
"name": "Signal calls · Jitsi",
"url": "https://signal.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Prefer E2EE voice/video. Avoid putting sensitive conversations on SMS or unencrypted defaults."
}
},
{
"@type": "ListItem",
"position": 40,
"item": {
"@type": "SoftwareApplication",
"name": "CryptPad",
"url": "https://cryptpad.org",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Zero-knowledge collaborative docs, sheets, and whiteboards — like Google Docs with E2EE. Self-hostable."
}
},
{
"@type": "ListItem",
"position": 41,
"item": {
"@type": "SoftwareApplication",
"name": "NewPipe / Aurora Store",
"url": "https://newpipe.net",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "NewPipe: YouTube frontend without ads, tracking, or a Google account. Aurora Store: install Play apps anonymously. Prefer F-Droid builds."
}
},
{
"@type": "ListItem",
"position": 42,
"item": {
"@type": "SoftwareApplication",
"name": "PrivyDeck",
"url": "https://privydeck.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Our personal privacy dashboard. Privacy score, one-tap tracker blocking on phone and browser, encrypted vault (with file sanitization and secure cleanup built in), and one-click data-access requests — no Raspberry Pi required."
}
},
{
"@type": "ListItem",
"position": 43,
"item": {
"@type": "SoftwareApplication",
"name": "PrivBeacon",
"url": "https://www.privbeacon.com",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Privacy compliance SaaS for websites. Scan trackers and consent gaps across 16 law frameworks, fix violations, and earn a verifiable Certified Private badge."
}
},
{
"@type": "ListItem",
"position": 44,
"item": {
"@type": "SoftwareApplication",
"name": "Windows 11 Privacy Tool",
"url": "https://github.com/Vassbrekke/Windows-11-Privacy-Enhancing-tool-GUI-and-CLI",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Enhance privacy on Windows 10 and 11 with GUI and CLI tooling — cut telemetry and tighten defaults (open source, VassDev)."
}
},
{
"@type": "ListItem",
"position": 45,
"item": {
"@type": "SoftwareApplication",
"name": "Security Hardening",
"url": "https://github.com/Vassbrekke/SecurityHardening",
"applicationCategory": "SecurityApplication",
"operatingSystem": "Android, iOS, Windows, macOS, Linux",
"description": "Practical security hardening scripts for a fresh install — a solid starting point for locking down a system (open source, VassDev)."
}
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do I need a VPN every day?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Not always. A VPN hides your traffic from local networks and your ISP, and can reduce location-based tracking — but it does not make you anonymous, and a bad VPN is worse than none. Use a reputable no-logs provider on hostile networks; combine with HTTPS, good browsers, and account hygiene."
}
},
{
"@type": "Question",
"name": "Is Signal really private if it needs my phone number?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Signal encrypts message content excellently. Your number is an identifier for discovery — a tradeoff for usability. If that matters for your threat model, look at Session or similar. For most people, Signal is still the best everyone-will-actually-use-it choice."
}
},
{
"@type": "Question",
"name": "What's the single highest-impact change?",
"acceptedAnswer": {
"@type": "Answer",
"text": "A password manager + unique passwords + authenticator 2FA on email. Most account takeovers are reused passwords and SIM swaps, not nation-state zero-days."
}
},
{
"@type": "Question",
"name": "Should I delete social media?",
"acceptedAnswer": {
"@type": "Answer",
"text": "If you can, it helps a lot. If you can't, lock down profiles, strip personal data, stop real-time location posts, and use a browser container so trackers don't follow you across the whole web."
}
},
{
"@type": "Question",
"name": "Is this site tracking me?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No analytics, no cookies for advertising, no third-party trackers for ads. Checklist progress stays in your browser's local storage only. Verify with your own blocker if you like — that's the point."
}
},
{
"@type": "Question",
"name": "Where should I go deeper?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Read project docs for tools you adopt (Signal, Bitwarden, GrapheneOS, Mullvad). Community resources like privacyguides.org and official security whitepapers beat random top-10 VPN lists."
}
},
{
"@type": "Question",
"name": "Is PrivGuide just marketing for PrivyDeck and PrivBeacon?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. The guide is owned by the same company, which we disclose upfront. Independent tools are listed first; Ours are labeled. We publish conflicts and methodology on the Trust page. If a listing feels unfair, open a GitHub issue."
}
},
{
"@type": "Question",
"name": "Do you get paid when I click an app link?",
"acceptedAnswer": {
"@type": "Answer",
"text": "No. PrivGuide does not use affiliate links. Tips via crypto donations are optional and do not buy rankings."
}
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "HowTo",
"name": "Privacy checklist",
"description": "Tick items as you complete them. Progress saves in this browser only — nothing is uploaded.",
"step": [
{
"@type": "HowToStep",
"position": 1,
"name": "Install a password manager and migrate critical accounts",
"text": "Install a password manager and migrate critical accounts"
},
{
"@type": "HowToStep",
"position": 2,
"name": "Turn on 2FA (authenticator app) for email and banking",
"text": "Turn on 2FA (authenticator app) for email and banking"
},
{
"@type": "HowToStep",
"position": 3,
"name": "Install Signal and move sensitive chats off SMS",
"text": "Install Signal and move sensitive chats off SMS"
},
{
"@type": "HowToStep",
"position": 4,
"name": "Install PrivyDeck and harden your browser (LibreWolf / Firefox + uBlock)",
"text": "Install PrivyDeck and harden your browser (LibreWolf / Firefox + uBlock)"
},
{
"@type": "HowToStep",
"position": 5,
"name": "Change search engine away from Google",
"text": "Change search engine away from Google"
},
{
"@type": "HowToStep",
"position": 6,
"name": "Review phone app permissions (location, mic, camera)",
"text": "Review phone app permissions (location, mic, camera)"
}
]
}
</script>
</head>
<body data-lang="en">
<div class="page-loader" id="pageLoader" aria-hidden="true">
<div class="loader-inner">
<div class="loader-brand">PRIVGUIDE</div>
<div class="loader-bar"><div class="loader-fill" id="loaderFill"></div></div>
<div class="loader-pct" id="loaderPct">0%</div>
<div class="loader-tag">jacking in…</div>
</div>
</div>
<div class="cursor" id="cursor" aria-hidden="true"></div>
<div class="cursor-dot" id="cursorDot" aria-hidden="true"></div>
<div class="scroll-progress" id="scrollProgress" aria-hidden="true"></div>
<canvas id="fx-canvas" aria-hidden="true"></canvas>
<div class="spotlight" aria-hidden="true"></div>
<div class="scanlines" aria-hidden="true"></div>
<a class="skip-link" href="#main">Skip to content</a>
<div class="bg-grid" aria-hidden="true"></div>
<div class="bg-glow" aria-hidden="true"></div>
<nav class="section-nav" aria-label="Sections">
<a href="#top" class="is-active"><span>Top</span></a>
<a href="#paths"><span>Paths</span></a>
<a href="#apps"><span>Apps</span></a>
<a href="#life"><span>Life</span></a>
<a href="#phone"><span>Phone</span></a>
<a href="#desktop"><span>Desktop</span></a>
<a href="#checklist"><span>List</span></a>
</nav>
<header class="site-header" id="top">
<nav class="nav container" aria-label="Primary">
<a href="#top" class="logo">
<span class="logo-mark" aria-hidden="true">
<svg width="28" height="28" viewBox="0 0 32 32" fill="none" aria-hidden="true">
<path d="M16 3L5 8v8c0 7.2 4.7 13.9 11 15.5C22.3 29.9 27 23.2 27 16V8L16 3z" stroke="currentColor" stroke-width="2" fill="none"/>
<path d="M12 16.5l2.5 2.5L20 13" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</span>
<span class="logo-text">Priv<span>Guide</span></span>
</a>
<ul class="nav-links" id="navLinks">
<li><a href="#apps">Apps</a></li>
<li><a href="trust/">Trust</a></li>
<li><a href="#life">Life</a></li>
<li><a href="#phone">Phone</a></li>
<li><a href="#desktop">Desktop</a></li>
<li><a href="#paths">Start here</a></li>
<li><a href="#donate">Donate</a></li>
<li><a href="#checklist" class="nav-cta">Checklist</a></li>
</ul>
<div class="nav-right">
<div class="lang-switcher" role="navigation" aria-label="Language">
<button type="button" class="lang-btn" id="langBtn" aria-haspopup="listbox" aria-expanded="false">
<span class="lang-globe" aria-hidden="true">🌐</span>
<span class="lang-btn-label">English</span>
<span class="lang-chevron" aria-hidden="true">▾</span>
</button>
<div class="lang-menu" id="langMenu" role="listbox" hidden>
<a href="index.html" hreflang="en" lang="en" class="lang-option active" data-lang="en" role="option" aria-selected="true">English</a><a href="no/index.html" hreflang="no" lang="no" class="lang-option" data-lang="no" role="option" aria-selected="false">Norsk</a><a href="es/index.html" hreflang="es" lang="es" class="lang-option" data-lang="es" role="option" aria-selected="false">Español</a><a href="de/index.html" hreflang="de" lang="de" class="lang-option" data-lang="de" role="option" aria-selected="false">Deutsch</a><a href="fr/index.html" hreflang="fr" lang="fr" class="lang-option" data-lang="fr" role="option" aria-selected="false">Français</a>
</div>
</div>
<button class="nav-toggle" id="navToggle" aria-label="Open menu" aria-expanded="false">
<span></span><span></span><span></span>
</button>
</div>
</nav>
</header>
<main id="main">
<section class="hero">
<div class="container hero-grid">
<div class="hero-copy" data-reveal="left">
<p class="eyebrow">
<span class="pulse"></span>
Owned by Vassbrekke AS · Mostly not our apps
</p>
<h1>
<span class="line">Your privacy is not optional.</span>
<span class="line gradient-text">This is your go-to map.</span>
</h1>
<p class="hero-lead">We build privacy tools. This guide exists so you’re not stuck with only ours — find the best apps, harden phone and desktop, and build habits that keep your life yours.</p>
<div class="hero-actions">
<a href="#apps" class="btn btn-primary">Browse privacy apps</a>
<a href="#paths" class="btn btn-ghost">Pick your path →</a>
<a href="trust/" class="btn btn-ghost">How we stay honest →</a>
</div>
<ul class="hero-stats" role="list">
<li><strong>40+</strong><span>curated tools</span></li>
<li><strong>3</strong><span>threat levels</span></li>
<li><strong>0</strong><span>trackers on this page</span></li>
</ul>
</div>
<div class="hero-card" aria-hidden="true" data-reveal="right">
<div class="terminal">
<div class="terminal-bar">
<span></span><span></span><span></span>
<em>privacy-stack.sh</em>
</div>
<pre class="terminal-body"><code><span class="cmt"># Everyday privacy stack · independent-first</span>
<span class="cmd">messenger</span> → Signal / Session
<span class="cmd">browser</span> → Firefox (+ uBlock)
<span class="cmd">search</span> → DuckDuckGo / Brave
<span class="cmd">passwords</span> → Bitwarden
<span class="cmd">email</span> → Proton Mail
<span class="cmd">vpn</span> → Mullvad / Proton
<span class="cmd">optional</span> → PrivyDeck <span class="cmt">(Ours)</span>
<span class="ok">✓</span> You own your data again.</code></pre>
</div>
</div>
</div>
</section>
<aside class="ownership-banner container" data-reveal aria-label="Ownership disclosure">
<div class="ownership-banner-inner">
<p class="ownership-banner-title">Built by Vassbrekke AS — this guide is not a catalog of only our products.</p>
<p>PrivyDeck, PrivBeacon and other VassDev tools are labeled Ours. Everything else is independent. Same criteria for everyone. No paid placements. No affiliate links.</p>
<a class="ownership-banner-link" href="trust/">Read ownership, conflicts & methodology →</a>
</div>
</aside>
<section class="trust-strip" aria-label="What this guide covers">
<div class="container trust-grid">
<div class="trust-item" data-reveal data-reveal-delay="1">
<span class="trust-icon">🛡️</span>
<div>
<strong>Apps that respect you</strong>
<p>Open-source first, audited when it matters, no dark patterns.</p>
</div>
</div>
<div class="trust-item" data-reveal data-reveal-delay="2">
<span class="trust-icon">📱</span>
<div>
<strong>Phone & desktop</strong>
<p>Android, iOS, Windows, macOS, and Linux — practical steps.</p>
</div>
</div>
<div class="trust-item" data-reveal data-reveal-delay="3">
<span class="trust-icon">🌍</span>
<div>
<strong>Life offline too</strong>
<p>Social, home, money, and physical privacy that actually sticks.</p>
</div>
</div>
</div>
</section>
<section class="section" id="paths">
<div class="container">
<header class="section-head" data-reveal>
<p class="eyebrow">Start here</p>
<h2>Choose your privacy path</h2>
<p class="section-lead">Not everyone needs a Faraday bag. Pick a level that matches your risk — then level up when you're ready.</p>
</header>
<div class="path-grid">
<article class="path-card path-beginner" data-level="01" data-reveal data-reveal-delay="1">
<div class="path-badge">Level 1</div>
<h3>Everyday privacy</h3>
<p>For normal people who want less tracking, fewer leaks, and better defaults.</p>
<ul>
<li>Password manager + unique passwords</li>
<li>Signal for private chats</li>
<li>Firefox + uBlock (PrivyDeck optional)</li>
<li>2FA on email & banking</li>
<li>Review phone app permissions</li>
</ul>
<a href="everyday/" class="path-link" data-level="beginner">Start checklist →</a>
</article>
<article class="path-card path-solid featured" data-level="02" data-reveal data-reveal-delay="2">
<div class="path-badge">Level 2 · Recommended</div>
<h3>Solid setup</h3>
<p>For freelancers, journalists-lite, and anyone who wants a real private stack.</p>
<ul>
<li>Proton or Tuta email</li>
<li>Mullvad / Proton VPN on public Wi‑Fi</li>
<li>Encrypted cloud, CryptPad docs, or local backups</li>
<li>LibreWolf or Mullvad Browser + uBlock</li>
<li>Separate work / personal accounts</li>
</ul>
<a href="solid/" class="path-link" data-level="solid">Explore the stack →</a>
</article>
<article class="path-card path-advanced" data-level="03" data-reveal data-reveal-delay="3">
<div class="path-badge">Level 3</div>
<h3>High threat</h3>
<p>For activists, whistleblowers, and high-risk targets. Assume skilled adversaries.</p>
<ul>
<li>GrapheneOS (Pixel) or LineageOS /e/OS</li>
<li>Tor Browser for research</li>
<li>SimpleX or Session for metadata-resistant chat</li>
<li>Hardware security keys</li>
<li>Opsec + compartmentalized devices & VMs</li>
</ul>
<a href="high-threat/" class="path-link" data-level="advanced">Phone hardening →</a>
</article>
</div>
</div>
</section>
<section class="section section-alt" id="apps">
<div class="container">
<header class="section-head" data-reveal>
<p class="eyebrow">App directory</p>
<h2>Best privacy apps — by category</h2>
<p class="section-lead">Independent tools first. Ours are labeled and listed after the open ecosystem — filter Ours if you want our stack.</p>
</header>
<aside class="ours-banner" id="vassbrekke" data-reveal="scale">
<div class="ours-banner-copy">
<p class="ours-banner-label">Conflict of interest — disclosed</p>
<h3>Our products (optional)</h3>
<p>We build these. They are not required to follow this guide. Use them if they fit your threat model; otherwise pick the independent tools above. Full conflict policy on the Trust page.</p>
<div class="ours-banner-links">
<a class="btn btn-ghost btn-sm" href="trust/">Trust & methodology</a>
<a class="btn btn-ghost btn-sm" href="https://privydeck.com" target="_blank" rel="noopener noreferrer">PrivyDeck ↗</a>
<a class="btn btn-ghost btn-sm" href="https://www.privbeacon.com" target="_blank" rel="noopener noreferrer">PrivBeacon ↗</a>
<a class="btn btn-ghost btn-sm" href="https://www.vassbrekke.no" target="_blank" rel="noopener noreferrer">vassbrekke.no ↗</a>
<a class="btn btn-ghost btn-sm" href="https://github.com/Vassbrekke/PrivGuide/issues" target="_blank" rel="noopener noreferrer">GitHub ↗</a>
</div>
</div>
</aside>
<div class="filter-bar" role="tablist" aria-label="App categories">
<button class="filter-btn active" data-filter="all" role="tab" aria-selected="true">All</button>
<button class="filter-btn" data-filter="messaging" role="tab" aria-selected="false">Messaging</button>
<button class="filter-btn" data-filter="browser" role="tab" aria-selected="false">Browsers</button>
<button class="filter-btn" data-filter="vpn" role="tab" aria-selected="false">VPN</button>
<button class="filter-btn" data-filter="passwords" role="tab" aria-selected="false">Passwords</button>
<button class="filter-btn" data-filter="email" role="tab" aria-selected="false">Email</button>
<button class="filter-btn" data-filter="search" role="tab" aria-selected="false">Search</button>
<button class="filter-btn" data-filter="storage" role="tab" aria-selected="false">Storage</button>
<button class="filter-btn" data-filter="auth" role="tab" aria-selected="false">2FA / Auth</button>
<button class="filter-btn" data-filter="os" role="tab" aria-selected="false">OS / ROM</button>
<button class="filter-btn" data-filter="extra" role="tab" aria-selected="false">More tools</button>
<button class="filter-btn" data-filter="ours" role="tab" aria-selected="false">Ours</button>
</div>