Skip to content

Commit

Permalink
Merge 4fe1b8d into 796109c
Browse files Browse the repository at this point in the history
  • Loading branch information
tnek committed Aug 17, 2021
2 parents 796109c + 4fe1b8d commit 4a0d208
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
Binary file added Source/santad/testdata/binaryrules/badcert
Binary file not shown.
6 changes: 6 additions & 0 deletions Source/santad/testdata/binaryrules/badcert.c
@@ -0,0 +1,6 @@
#include <stdio.h>

int main(int argc, char* argv[]) {
printf("Hello world, this binary's execution should be blocked");
return 0;
}
Binary file added Source/santad/testdata/binaryrules/goodcert
Binary file not shown.
6 changes: 6 additions & 0 deletions Source/santad/testdata/binaryrules/goodcert.c
@@ -0,0 +1,6 @@
#include <stdio.h>

int main(int argc, char* argv[]) {
printf("Hello world, this binary's execution is okay");
return 0;
}

0 comments on commit 4a0d208

Please sign in to comment.