4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / Makefile
# clang for android
CC=~/Android/Sdk/ndk/26.2.11394342/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android26-clang

all:
	# 64 bit poc
	# static make for original c++ poc, change to clang++ if used,
	# and use original poc code
	# $(CC) adrenaline.cpp -o adrenaline -g -pthread -static -ffunction-sections -fdata-sections -Wl,--gc-sections
	
	# dynamic make for c version
	$(CC) adrenaline.c -o adrenaline -g -pthread 

clean:
	rm adrenaline