summaryrefslogtreecommitdiff
path: root/security/bfbtester/files
diff options
context:
space:
mode:
authorWill Andrews <will@FreeBSD.org>2001-04-07 07:33:46 +0000
committerWill Andrews <will@FreeBSD.org>2001-04-07 07:33:46 +0000
commit8a44bfc3552b81f63284731a76ac04b170bc9466 (patch)
tree149967103da3d86772bf0e1e29c2df45b1bd8bac /security/bfbtester/files
parentAdd 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.c17
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;
+ }
+ {