Ubuntu Pastebin

Paste from seccomp-db at Wed, 13 Sep 2017 14:01:11 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sergio-j-cazzolato@localhost:~$ SNAP_SECCOMP_DEBUG=1 /usr/lib/snapd/snap-seccomp compile <(echo mknod) /tmp/xxx
#
# pseudo filter code start
#
# filter for arch aarch64 (3221225655)
if ($arch == 3221225655)
  # filter for syscall "mknod" (-10165) [priority: 65535]
  if ($syscall == -10165)
    action ALLOW;
  # default action
  action KILL;
# filter for arch arm (1073741864)
if ($arch == 1073741864)
  # filter for syscall "mknod" (14) [priority: 65535]
  if ($syscall == 14)
    action ALLOW;
  # default action
  action KILL;
# invalid architecture action
action KILL;
#
# pseudo filter code end
#
Download as text