ar bg de en es fr id it nl pl pt sv tr zh

selinux

Why doesn’t SELinux log a denied message?

Rhys Campbell

If you’re wondering why SELinux is not printing a “denied” message in /var/log/audit/audit.log it’s probably because somebody wanted to hide it! Yes, it’s possible to prevent an SELinux module from logging a denied message. Disable this behaviour by executing the following command: semodule...

I hate SELinux

www.benjamin-schieder.de

I hate SELinux. Hate hate hate hate it. Why? This is why. #!/bin/bash tmp="$(mktemp -d)" echo "Some content" > "${tmp}/file.txt" echo "Please find the report attached." | /bin/mailx -s "Daily report" -a "${tmp}/file.txt" "user@domain.local" rm "${tmp}/file.txt" rmdir "${tmp}" If you run this...