about summary refs log tree commit diff
path: root/frida_mode/src/entry.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2021-08-28 11:10:09 +0200
committerGitHub <noreply@github.com>2021-08-28 11:10:09 +0200
commitfe5b2c355f097705bf0bd7b35b0484b16f87964f (patch)
tree95b66fa3fe4afde786a7ec7567388a53eccccaaa /frida_mode/src/entry.c
parent7a2f81e0d992cf0f20d8d2fed26310c03c8b4fa9 (diff)
parent5559dd9c244848a1dbb19981f0295774f4e176d9 (diff)
downloadafl++-fe5b2c355f097705bf0bd7b35b0484b16f87964f.tar.gz
Merge pull request #1080 from WorksButNotTested/seccomp
Added seccomp support
Diffstat (limited to 'frida_mode/src/entry.c')
-rw-r--r--frida_mode/src/entry.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/frida_mode/src/entry.c b/frida_mode/src/entry.c
index 3ec8f5be..186ddd3a 100644
--- a/frida_mode/src/entry.c
+++ b/frida_mode/src/entry.c
@@ -8,6 +8,7 @@
 #include "instrument.h"
 #include "persistent.h"
 #include "ranges.h"
+#include "seccomp.h"
 #include "stalker.h"
 #include "stats.h"
 #include "util.h"
@@ -26,6 +27,7 @@ static void entry_launch(void) {
   /* Child here */
   entry_run = TRUE;
   instrument_on_fork();
+  seccomp_on_fork();
   stats_on_fork();
 
 }