Skip to content

Commit af405ee

Browse files
author
Brent Cook
committed
Land rapid7#4287, @timwr's exploit form CVS-2014-3153
2 parents 133ae4c + 0e4f3b0 commit af405ee

File tree

5 files changed

+944
-0
lines changed

5 files changed

+944
-0
lines changed

data/exploits/CVE-2014-3153.elf

17.3 KB
Binary file not shown.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
LOCAL_PATH := $(call my-dir)
3+
4+
include $(CLEAR_VARS)
5+
6+
LOCAL_MODULE := exploit
7+
LOCAL_SRC_FILES := exploit.c
8+
LOCAL_CFLAGS := -fno-stack-protector -O0
9+
include $(BUILD_EXECUTABLE)
10+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
all: install
3+
4+
build:
5+
ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk
6+
7+
install: build
8+
mv libs/armeabi/exploit ../../../../data/exploits/CVE-2014-3153.elf
9+
10+
test: build
11+
adb push libs/armeabi/exploit /data/local/tmp/exploit
12+
adb shell "cd /data/local/tmp; ./exploit id"
13+
14+
clean:
15+
rm -rf libs
16+
rm -rf obj
17+

0 commit comments

Comments
 (0)