8b38b19ffc
(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@
20 lines
627 B
Plaintext
20 lines
627 B
Plaintext
$OpenBSD: patch-Makefile,v 1.1.1.1 2008/09/23 20:59:40 jasper Exp $
|
|
|
|
Disable flare-check target, which in turn disables scanning Flash files.
|
|
|
|
--- Makefile.orig Tue Jun 10 13:44:28 2008
|
|
+++ Makefile Tue Sep 23 22:48:33 2008
|
|
@@ -20,10 +20,10 @@
|
|
#
|
|
|
|
PROGNAME = ratproxy
|
|
-CFLAGS = -Wall -O3 -Wno-pointer-sign -D_GNU_SOURCE
|
|
+CFLAGS += -Wall -D_GNU_SOURCE
|
|
LDFLAGS = -lcrypto -lssl
|
|
|
|
-all: $(PROGNAME) flare-check
|
|
+all: $(PROGNAME)
|
|
|
|
$(PROGNAME): $(PROGNAME).c http.c mime.c ssl.c http.h mime.h ssl.h nlist.h config.h debug.h types.h string-inl.h
|
|
$(CC) $(PROGNAME).c -o $(PROGNAME) $(CFLAGS) http.c mime.c ssl.c $(LDFLAGS)
|