@BrideOfLinux I enjoyed your article – thanks. Discovered three months after publication via <https://vermaden.wordpress.com/2026/05/04/valuable-news-2026-05-04/>.

Just one thing:

"… Isn’t this exactly what the Open Source Security Foundation was established to handle in the wake of OpenSSL’s difficulties?"

I 'm not certain. The roadmap at <https://openssf.org/about/> begins:

"The OpenSSF strategy is outlined across three key areas:

We will be a Catalyst for Change, we will Educate and Empower the Modern Developer, and we will be an Ecosystem Leader. …"

There's much more than a roadmap – and I didn't attempt to digest the charter (it's difficult to read, with the watermark) – it's difficult to tell why the OSSF was established, and so on. I don't doubt that the Foundation does great work, there's just a lot to take in. @openssf

In the case of sudo: I imagine that the media was a catalyst for change. Some time between mid-February and 3rd March, the plea for sponsorship disappeared:

― <https://web.archive.org/web/20260215044031/https://www.millert.dev/>

― <https://web.archive.org/web/20260305141311/https://www.millert.dev/>.

(I recall reading the article in The Register, which was discussed in Reddit <https://old.reddit.com/r/programming/duplicates/1qwsvh9/sudos_maintainer_needs_resources_to_keep_utility/>, and so on.)

Cc @millert @governa

#sudo #OpenSSF

Valuable News – 2026/05/04

The Valuable News weekly series is dedicated to provide summary about news, articles and other interesting stuff mostly but not always related to the UNIX/BSD/Linux systems. Whenever I stumble upon…

𝚟𝚎𝚛𝚖𝚊𝚍𝚎𝚗

The truth about #sudo: https://security.stackexchange.com/questions/232924/is-sudo-almost-useless

> Sudo has no real security purpose against a malicious third-party. [...]

> In the past I believed it was actually a security control to prevent escalation of privilege and make attacks harder [...], but that's actually false. [...]

> The only purpose of sudo is to protect you from yourself, that is, to avoid messing up your system by mistake

One of sudo's co-author also gives his opinion, go check it out!

#linux #security #cybersecurity

Is `sudo` almost useless?

Once an attacker has a shell as your sudoer user (or just compromised a local process enough), he/she can use one of the many privilege escalation tool to even automatically put themselves for exam...

Information Security Stack Exchange

🔧 Otimize Sua Experiência no Linux com 3 Ajustes de Sudo! 🐧🔑

Descubra como pequenos ajustes no uso do comando sudo podem fazer uma grande diferença na administração do seu sistema Linux. Aumente sua eficiência e segurança com essas dicas práticas!

👉 Saiba mais no blog: https://nova.escolalinux.com.br/blog/3-ajustes-para-se-fazer-com-sudo-no-linux?utm_source=dlvr.it&utm_medium=mastodon

#Linux #Sudo #DicasLinux #Segurança #Administração

3 Ajustes para se fazer com Sudo no Linux

O Sudo é uma ferramenta essencial para usuários Linux, mas você sabia que ele pode ser personalizado de várias maneiras? Aprenda essas 3 dicas para melhorar a sua experiência de uso do Sudo.

Paulo Oliveira

While #NixOS should not be affected by #CopyFail as it uses recent kernels, here are additional fixes you can apply:

Disabling setuid does not mitigate it, but reduces the attack surfaces overall significantly.

Instead of #sudo, #su, #pkexec and other #setuid binaries you can use #run0 or a dedicated root account.

I have disabled setuid for a bunch of binaries I don't need, they still work when ran as root, with run0 or #sudo-rs.

```nix
boot.blacklistedKernelModules = [
"algif_aead"
];

security.sudo.enable = false;

security.wrappers = {
su.enable = false;
pkexec.enable = false;

# example setuid binary
chsh = {
source = "${pkgs.shadow}/bin/chsh";
setuid = lib.mkForce false;
owner = "root";
group = "root";
};
};
```

3 Sudo Commands That Will Impress Your Terminal (and Your Cat)

https://watch.linuxrenaissance.com/w/btNeoRxFp33DMYQRGSwv3W

3 Sudo Commands That Will Impress Your Terminal (and Your Cat)

PeerTube
ok guys this is a big one. while testing our infra for the copy fail thing we happened upon another even more severe vulnerability. there is no CVE yet but we expect this to land in the 9.8+ range. it is also a privilege escalation but does not require any python or an internet connection to abuse. why this matters and what you can do to secure your system
🧵 1/4
#CVE_2026_31431
#copyfail
#sudo
#linux
Ubuntu Is Replacing SUDO. Should You?

PeerTube

Думаем графами с IPAHound

Всем привет, меня зовут Михаил Сухов, я участник команды PT SWARM. Нам в команде все чаще встречается инфраструктура, построенная на базе альтернативных реализаций службы каталога Microsoft Active Directory. Одной из таких реализаций, заслуженно получившей большое распространение является FreeIPA. В ходе работы с FreeIPA стало очевидно, что можно изучать еще и архитектурные особенности, которые сильно отличаются от AD. Так появился IPAHound — наш аналог BloodHound для FreeIPA. За основу был взят проект BloodHound Legacy с поддержкой PKI. Мы неоднократно использовали IPAHound в своих проектах по поиску уязвимостей. В этой статье я расскажу о нашем инструменте. Также посмотрим на различные способы анализа связей, облегчающие продвижение в FreeIPA.

https://habr.com/ru/companies/pt/articles/1028412/

#ipahound #freeipa #ldap #sudo #selinux #kerberos #pentest #ald pro #bloodhound

Думаем графами с IPAHound

Всем привет, меня зовут Михаил Сухов, я участник команды PT SWARM. Нам в команде все чаще встречается инфраструктура, построенная на базе альтернативных реализаций службы каталога Microsoft Active...

Хабр

Title: P2: Doas instead of sudo [2025-05-04 Sun]

#dailyreport #linux #administration #permissions #secops #sudo #doas #network #bash #proc

Title: P1: Doas instead of sudo [2025-05-04 Sun]

permit setenv { WAYLAND_DISPLAY XDG_RUNTIME_DIR } nopass g
as ff
doas -u ff firefox
-----------------------------------------------------
With help of AI I have written a simple bash scrippt that
output average network bandwidth by reading directly
from /proc/net/dev

I think 70 lines is better than some special app with
writing output parser for it. #dailyreport #linux #administration #permissions #secops #sudo #doas #network #bash #proc