From 4ad8e2c267b4f44223c82cbb1036a0996a1439b7 Mon Sep 17 00:00:00 2001 From: toni Date: Wed, 15 Jan 2014 19:49:37 +0100 Subject: added 32 bit ELF binary --- .gitignore | 4 ---- Makefile | 2 ++ overflow | Bin 0 -> 3344 bytes 3 files changed, 2 insertions(+), 4 deletions(-) delete mode 100644 .gitignore create mode 100755 overflow diff --git a/.gitignore b/.gitignore deleted file mode 100644 index ee4eb55..0000000 --- a/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -/exploit -/overflow -/overflow_minimal -/overflow_function diff --git a/Makefile b/Makefile index 70b068d..ebe82b5 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ RM := rm CC := gcc +STRIP := strip CFLAGS = -Wall -g3 OCFLAGS = -m32 -mpreferred-stack-boundary=2 -z execstack -fno-stack-protector TARGETS = $(patsubst %.c,%.o,$(wildcard *.c)) @@ -13,6 +14,7 @@ msg: %.o : %.c $(CC) $(CFLAGS) $(OCFLAGS) -o $(patsubst %.o,%,$@) $< + $(STRIP) $(patsubst %.o,%,$@) clean: $(RM) -f $(patsubst %.o,%,$(TARGETS)) diff --git a/overflow b/overflow new file mode 100755 index 0000000..1879d46 Binary files /dev/null and b/overflow differ -- cgit v1.2.3