this post was submitted on 20 Sep 2023
27 points (93.5% liked)

Privacy

31173 readers
335 users here now

A place to discuss privacy and freedom in the digital world.

Privacy has become a very important issue in modern society, with companies and governments constantly abusing their power, more and more people are waking up to the importance of digital privacy.

In this community everyone is welcome to post links and discuss topics related to privacy.

Some Rules

Related communities

Chat rooms

much thanks to @gary_host_laptop for the logo design :)

founded 4 years ago
MODERATORS
27
submitted 11 months ago* (last edited 11 months ago) by badgrandpa@lemmy.world to c/privacy@lemmy.ml
 

Hi guys

What apps for security and privacy do you use?

you are viewing a single comment's thread
view the rest of the comments
[–] lustrum@sh.itjust.works 12 points 11 months ago* (last edited 11 months ago) (1 children)

Android:

  • Nexdns.io^1 - Open source DNS provider with DNSSEC and over TLS. Then can also block ads at the DNS level. I don't actually use the app, I apply it at the system level with the "private DNS" settings.
  • Bitwarden^2 - Open Source password manager with Yubikey auth and stores TOTP.
  • Imagepipe^3 - Quickly and easily strip exif data from image (open source too).
  • Markor^4 - Used to make local notes of things I don't want shared over a cloud or google connection. Just a .md note.
  • Wireguard^5 - Have my own VPN setup for when i'm on public wifi, also allows me to access my server/applications remotely.
  • URLCheck^6 - This app is fantastic, intercepts links to remove tracking parameters, unshorten them or even scan them with a virustotal API. I also use it to redirect twitter to nitter or apply a paywall remover.
[–] SecurityPro@lemmy.ml 3 points 11 months ago (1 children)

What do you use for paywall remover?

[–] lustrum@sh.itjust.works 2 points 11 months ago

I have 2 options that work most of the time: 12ft.io and archive.ph. The URLCheck rules are:

"proxy it with archive.is": {
    "regex1": "^(https?):\\\/\\\/([\\s\\S]*)$",
    "regex": "^(?!.*(archive\\.))(.*)",
    "replacement": "https:\/\/archive.is\/newest\/$2",
    "enabled": "true"
  },
  "12ft.io.": {
    "regex": "^.*$",
    "replacement": "https:\/\/12ft.io\/$0"
  },

This basically brings up 2 buttons on the urlcheck sheet an I can pick either to proxy it.