jim3692

Results 26 comments of jim3692

Redmi Note 5 Pro has an LCD display, not an OLED. There is a disclaimer for this kind of displays, stating that the backlight may stay on.

I had developed this proxy as a workaround for this some time ago, so I don't know if it still works. The code can be found here: [piped-html-proxy](https://github.com/jim3692/piped-html-proxy) I have...

> > I had developed this proxy as a workaround for this some time ago, so I don't know if it still works. The code can be found here: [piped-html-proxy](https://github.com/jim3692/piped-html-proxy)...

Hello all. I just came to this issue as I would like to lock some apps on my system. If I understood the patch correctly, it mounts the encrypted filesystem...

I hadn't realized that /proc/$pid/root is accessible by anyone. I was only aware of `nsenter` requiring sudo and thought this idea is secure. Back to the drawing board...

My kernel (linux-zen on Arch) has unprivileged namespaces enabled (`CONFIG_USER_NS_UNPRIVILEGED=y`), but I need `sudo` to enter the mount namespace of a bubblejailed app. ``` $ nsenter --mount=/proc//ns/mnt bash > nsenter:...

Thank you for the explanation on `nsenter`. As it turns out, namespaces may not be a good option for implementing encryption at runtime. So, I came up with a completely...

Sorry @rusty-snake, at first I hadn't fully understood your security model comment. Now I get it. Also, I made a mistake. `proot` is based on `ptrace`, not `LD_PRELOAD`. Source: https://github.com/proot-me/proot/blob/master/doc/proot/manual.rst#description...

I solved the issue in Hyprland by running this on startup. `bash -c 'export XDG_CURRENT_DESKTOP=sway ; systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP ; dbus-update-activation-environment --all ; systemctl --user restart xdg-desktop-portal'`

> > I solved the issue in Hyprland by running this on startup. > > `bash -c 'export XDG_CURRENT_DESKTOP=sway ; systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP ; dbus-update-activation-environment --all ; systemctl...