diff options
author | Tim Schumacher <timschumi@gmx.de> | 2022-05-05 18:30:24 +0200 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-07-08 22:27:38 +0000 |
commit | 5efa8e507b937d01fca88876205b395ed8c6e2c5 (patch) | |
tree | 087e20f0d69e905a373fd41c3e6b4116fdece760 /Base/usr/share/man | |
parent | 6187cf72cc3de15ed78b4457577dd7dfb60b34ea (diff) | |
download | serenity-5efa8e507b937d01fca88876205b395ed8c6e2c5.zip |
Kernel: Implement an `axallowed` mount option
Similar to `W^X` and `wxallowed`, this allows for anonymous executable
mappings.
Diffstat (limited to 'Base/usr/share/man')
-rw-r--r-- | Base/usr/share/man/man2/mount.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Base/usr/share/man/man2/mount.md b/Base/usr/share/man/man2/mount.md index 9953b2dbb4..0dd9c99a41 100644 --- a/Base/usr/share/man/man2/mount.md +++ b/Base/usr/share/man/man2/mount.md @@ -38,6 +38,7 @@ The following `flags` are supported: * `MS_RDONLY`: Mount the filesystem read-only. * `MS_REMOUNT`: Remount an already mounted filesystem (see below). * `MS_WXALLOWED`: Allow W^X protection circumvention for executables on this file system. +* `MS_AXALLOWED`: Allow anonymous executable mappings for executables on this file system. These flags can be used as a security measure to limit the possible abuses of the newly mounted file system. |