this post was submitted on 30 Mar 2022
1 points (100.0% liked)

Emacs

2310 readers
3 users here now

Our infinitely powerful editor.

founded 5 years ago
MODERATORS
 

I don't know how I would pull it off though.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 2 years ago (2 children)

Client for what? What are you talking about?

[–] [email protected] 1 points 2 years ago (1 children)

Emacs client tailored to privacy. I was thinking about making a package that added some utilities for privacy:

  • Browsing eww through tor.
  • When writing into forms, automatically open a temporary buffer to prevent keylogging.
  • A copy wrapper that destroys the kill ring after yanking. (For sensitive data, like passwords.)
[–] [email protected] 5 points 2 years ago
Browsing eww through tor.

I suppose, but it seems rather niche.

When writing into forms, automatically open a temporary buffer to prevent keylogging.

Pointless. A keylogger is most likely to run at the OS level, so it doesn't matter what program you type into.

A copy wrapper that destroys the kill ring after yanking. (For sensitive data, like passwords.)

Generally not needed. auth handles storing many credentials without needing to use the kill ring at all. password-store has password-store-copy, which wipes out the kill-ring contents after 45 seconds.

In general, Emacs is not the right level to solve any of the problems you seem to care about; the OS is. You'd be better served by starting with a hardened Linux, like Skulls or Qubes, and customizing from there.