aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-08-13 22:58:37 -0400
committerMike Frysinger <vapier@gentoo.org>2015-08-20 10:38:35 -0400
commita743806ea4868371cf182f783fdcfbf1b1f98202 (patch)
treedcc780ac28414218d37628b599881d2683bd4cf7 /dumpelf.c
parentlddtree.sh: fix interp handling when doing a full listing (diff)
downloadpax-utils-a743806ea4868371cf182f783fdcfbf1b1f98202.tar.gz
pax-utils-a743806ea4868371cf182f783fdcfbf1b1f98202.tar.bz2
pax-utils-a743806ea4868371cf182f783fdcfbf1b1f98202.zip
security: leverage namespaces to restrict the runtime a bit
In practice this isn't terribly useful as people aren't attacking these tools, but might as well be paranoid. It'd be nice to use mount & net namespaces too, but they're way too slow.
Diffstat (limited to 'dumpelf.c')
-rw-r--r--dumpelf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dumpelf.c b/dumpelf.c
index 3035b24..e9b1771 100644
--- a/dumpelf.c
+++ b/dumpelf.c
@@ -384,6 +384,7 @@ static void parseargs(int argc, char *argv[])
int main(int argc, char *argv[])
{
+ security_init(false);
if (argc < 2)
usage(EXIT_FAILURE);
parseargs(argc, argv);