How to debug a firejail sandbox #5559
rusty-snake
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Really good article if you want to start to dig deeper with firejail and create/customize
profiles or troubleshoot:
cc @kmille
@netblue30 can you update the manpages on wordpress.
To answer the specific example:
net none
will isolate "namespaced protocols" (inet
,inet6
and abstract-unix
) in an own private, unshared namespacesSo if you want to disable all protocols, you want to disable all possible values for the first argument of
socket
. Therefore you can just disable the entire syscall usingseccomp socket
(which addssocket
to the seccomp drop list) orseccomp.drop socket
(if you really want to disable onlysocket
).See also: allow empty
--protocol=
list #639 (comment)Did I misunderstand something or do we realy return
EOPNOTSUPP
rather thanEAFNOSUPPORT
?Beta Was this translation helpful? Give feedback.
All reactions