Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
pwmt
zathura
Commits
47c67b53
Verified
Commit
47c67b53
authored
May 08, 2022
by
valoq
Browse files
update documentation
parent
076cec96
Changes
2
Show whitespace changes
Inline
Side-by-side
doc/man/zathurarc.5.rst
View file @
47c67b53
...
...
@@ -967,6 +967,9 @@ zathura
* printing
* bookmarks and history
The strict sandbox mode is still experimental with some libc implementations.
Currently supported and tested libc implementations: glibc
No feature regressions are expected when using normal sandbox mode.
When running under WSL, the default is "none" since seccomp is not supported in
...
...
zathura/seccomp-filters.c
View file @
47c67b53
...
...
@@ -106,13 +106,16 @@ seccomp_enable_basic_filter(void)
DENY_RULE
(
uselib
);
DENY_RULE
(
vmsplice
);
/*
TODO
/*
*
* In case this basic filter is actually triggered, print a clear error message to report this
* The syscalls here should never be executed by an unprivileged process
*
* */
girara_debug
(
"Using a basic seccomp filter to blacklist privileged system calls! \
Errors reporting 'bad system call' may be an indicator of compromise"
);
/* applying filter... */
if
(
seccomp_load
(
ctx
)
>=
0
)
{
/* free ctx after the filter has been loaded into the kernel */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment