You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ ol --seccomp -e '(print "hello")'
hello
delivered
$ echo '(print "hello")' | ol -q --seccomp
hello
$ echo '(print "hello")' > /tmp/foo; ol --seccomp /tmp/foo
Killed
Technically this is correct, since the repl goes seccomp immediately after
parsing arguments if requested, but it would probably be better to read the
files to memory (sans parsing and eval) and only then go seccomp, so that only
disallowed things happening during later stages could cause a kill. This would
also make it possible to use #!/usr/bin/ol -Sr to make seccomp'd scripts that
take arguments.
Original issue reported on code.google.com by aohelin on 14 Dec 2011 at 10:31
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
aohelin
on 14 Dec 2011 at 10:31The text was updated successfully, but these errors were encountered: