diff options
author | Will Andrews <will@FreeBSD.org> | 2001-04-07 07:33:46 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-04-07 07:33:46 +0000 |
commit | 8a44bfc3552b81f63284731a76ac04b170bc9466 (patch) | |
tree | 149967103da3d86772bf0e1e29c2df45b1bd8bac /security/bfbtester/files | |
parent | Add urlendec 1.0, URL encoder and decoder. (diff) |
Add bfbtester 2.0, a security tool for testing binaries for overflows.
PR: 24774
Submitted by: Mike Heffner <mheffner@vt.edu>
Diffstat (limited to 'security/bfbtester/files')
-rw-r--r-- | security/bfbtester/files/patch-src::bfbt::exec.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/security/bfbtester/files/patch-src::bfbt::exec.c b/security/bfbtester/files/patch-src::bfbt::exec.c new file mode 100644 index 000000000000..de43066f9b9a --- /dev/null +++ b/security/bfbtester/files/patch-src::bfbt::exec.c @@ -0,0 +1,17 @@ +Index: src/bfbt/exec.c +=================================================================== +RCS file: /cvsroot/bfbtester/bfbtester/src/bfbt/exec.c,v +retrieving revision 1.5 +diff -u -r1.5 exec.c +--- src/bfbt/exec.c 2001/01/25 06:24:49 1.5 ++++ src/bfbt/exec.c 2001/02/01 03:35:37 +@@ -144,7 +144,8 @@ + else if( WIFSIGNALED(entry->status) ){ + /* we ignore SIGKILL and SIGPIPE */ + if( WTERMSIG(entry->status) == SIGKILL +- || WTERMSIG(entry->status) == SIGPIPE){ ++ || WTERMSIG(entry->status) == SIGPIPE ++ || WTERMSIG(entry->status) == SIGPROF){ + return; + } + { |