metasploit-framework/external/source/exploits/CVE-2014-3153/Makefile

20 lines
323 B
Makefile
Raw Normal View History

2014-12-01 03:49:22 +00:00
all: install
build:
ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./Android.mk
install: build
mv libs/armeabi/libexploit.so ../../../../data/exploits/CVE-2014-3153.so
2014-12-01 03:49:22 +00:00
push: build
adb push libs/armeabi/debugexploit /data/local/tmp/futex
run: push
adb shell "/data/local/tmp/futex"
2014-12-01 03:49:22 +00:00
clean:
rm -rf libs
rm -rf obj