# Please install radare2 from git to use this makefile
# git clone https://github.com/radare/radare2
# cd radare2
# ./sys/install.sh

pwn:
	./a.out `perl ./pwn.pl`

search_exc:
	# Call radare2, and ask it to search for call ecx
	# Filter on lines that match "call"
	# Show only uniques lines
	r2 -qc '/R call ecx~call' ./a.out | uniq
