From c9cbeced5b3f2bdd7407e29c0811e65954132540 Mon Sep 17 00:00:00 2001 From: Root THC Date: Tue, 24 Feb 2026 12:42:47 +0000 Subject: initial --- exploits/7350php/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 exploits/7350php/Makefile (limited to 'exploits/7350php/Makefile') diff --git a/exploits/7350php/Makefile b/exploits/7350php/Makefile new file mode 100644 index 0000000..20e19a4 --- /dev/null +++ b/exploits/7350php/Makefile @@ -0,0 +1,17 @@ + +DFLAGS=-O2 +#DFLAGS= -DDEBUG +CC=gcc +CFLAGS=$(DFLAGS) -Wall +OBJS= common.o network.o +LIBS= + + +all: 7350php + +clean: + rm -f *.o 7350php + +7350php: $(OBJS) 7350php.c + $(CC) $(CFLAGS) -o 7350php 7350php.c $(OBJS) $(LIBS) + -- cgit v1.3