summaryrefslogtreecommitdiff
path: root/Base
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2020-07-27 06:33:48 +0200
committerAndreas Kling <kling@serenityos.org>2020-07-29 01:34:22 +0200
commiteccf96b703d52aa0b392afe92eb4aef859ef1776 (patch)
tree2dc07d132ef54b970af5ca041afe75e132706f85 /Base
parent5692fa6c3938d8e49c3ad4b5c82d0eabead1f419 (diff)
downloadserenity-eccf96b703d52aa0b392afe92eb4aef859ef1776.zip
Meta: Find potentially missing resources
Diffstat (limited to 'Base')
-rw-r--r--Base/res/welcome.txt2
-rw-r--r--Base/usr/share/man/man7/setuid_overview.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/Base/res/welcome.txt b/Base/res/welcome.txt
index 5d1986db70..8e4a900055 100644
--- a/Base/res/welcome.txt
+++ b/Base/res/welcome.txt
@@ -55,7 +55,7 @@ This is all possibly by using HackStudio, Visual Builder, Terminal, and the
(optional) GNU tools.
* Multimedia
-$ /res/icons/audio-unmuted.png
+$ /res/icons/audio-volume-medium.png
> Draw while playing your favorite songs!
Serenity includes the Piano, which allows you to create your own tunes by
simply pressing keys on the keyboard. You can pick the wavetype, octave, and
diff --git a/Base/usr/share/man/man7/setuid_overview.md b/Base/usr/share/man/man7/setuid_overview.md
index 55ce424be5..aa7829598a 100644
--- a/Base/usr/share/man/man7/setuid_overview.md
+++ b/Base/usr/share/man/man7/setuid_overview.md
@@ -12,7 +12,7 @@ In addition to the access permissions bits, executables may have the "Set User I
The motivation behind SUID binaries is that they allow users to do tasks that would normally require elevated permissions, without having to give users these permissions fully.
-For example, `/usr/ping` has the Set User ID bit set and is owned by user root in group root. So if any process executes `/usr/ping`, it will run as root, which means it will be able to send network packets, even if the current process doesn't normally have network access.
+For example, `/bin/ping` has the Set User ID bit set and is owned by user root in group root. So if any process executes `/bin/ping`, it will run as root, which means it will be able to send network packets, even if the current process doesn't normally have network access.
For another example, many other Unix systems contain a utility `passwd` that changes the password of the current user. To store the password, it has to write to `/etc/shadow` -- but the current user is not supposed to have write access to `/etc/shadow` so that they cannot change passwords of other users. The solution is to make `passwd` a SUID binary. (SerenityOS currently doesn't have support for user passwords.)