openbsd-ports/www/ratproxy/patches/patch-ratproxy_c
jasper 8b38b19ffc import ratproxy 1.51
(buzz word alert!)
Semi-automated, largely passive web application security audit tool,
optimized for an accurate and sensitive detection, and automatic
annotation, of potential problems and security-relevant design patterns
based on the observation of existing, user-initiated traffic in complex
web 2.0 environments.
Detects and prioritizes broad classes of security problems, such as
dynamic cross-site trust model considerations, script inclusion issues,
content serving problems, insufficient XSRF and XSS defenses, and much
more.

testing and ok kili@
2008-09-23 20:59:40 +00:00

15 lines
520 B
Plaintext

$OpenBSD: patch-ratproxy_c,v 1.1.1.1 2008/09/23 20:59:40 jasper Exp $
--- ratproxy.c.orig Tue Sep 23 21:09:25 2008
+++ ratproxy.c Tue Sep 23 21:09:29 2008
@@ -618,8 +618,8 @@ static void decode_flash(struct http_response* res) {
if (!(pid = fork())) {
/* Flare is way too noisy, let's close stderr. */
close(2);
- execl("./flare","flare",tmp,NULL);
- execlp("flare","flare",tmp,NULL);
+ execl("./flare","flare",tmp,(void *)NULL);
+ execlp("flare","flare",tmp,(void *)NULL);
exit(1);
}