mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-09 16:51:34 +00:00
add new test for frida_mode (please review)
This commit is contained in:
parent
e2e7f3f0b5
commit
361dd6e361
@ -14,6 +14,8 @@
|
||||
|
||||
. ./test-qemu-mode.sh
|
||||
|
||||
. ./test-frida-mode.sh
|
||||
|
||||
. ./test-unicorn-mode.sh
|
||||
|
||||
. ./test-custom-mutators.sh
|
||||
|
100
test/test-frida-mode.sh
Executable file
100
test/test-frida-mode.sh
Executable file
@ -0,0 +1,100 @@
|
||||
#!/bin/sh
|
||||
|
||||
. ./test-pre.sh
|
||||
|
||||
$ECHO "$BLUE[*] Testing: frida_mode"
|
||||
test -z "$AFL_CC" && {
|
||||
if type gcc >/dev/null; then
|
||||
export AFL_CC=gcc
|
||||
else
|
||||
if type clang >/dev/null; then
|
||||
export AFL_CC=clang
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
test -e ../afl-frida-trace.so && {
|
||||
cc -pie -fPIE -o test-instr ../test-instr.c
|
||||
cc -o test-compcov test-compcov.c
|
||||
test -e test-instr -a -e test-compcov && {
|
||||
{
|
||||
mkdir -p in
|
||||
echo 00000 > in/in
|
||||
$ECHO "$GREY[*] running afl-fuzz for frida_mode, this will take approx 10 seconds"
|
||||
{
|
||||
../afl-fuzz -m ${MEM_LIMIT} -V10 -O -i in -o out -- ./test-instr >>errors 2>&1
|
||||
} >>errors 2>&1
|
||||
test -n "$( ls out/default/queue/id:000002* 2>/dev/null )" && {
|
||||
$ECHO "$GREEN[+] afl-fuzz is working correctly with frida_mode"
|
||||
RUNTIME=`grep execs_done out/default/fuzzer_stats | awk '{print$3}'`
|
||||
} || {
|
||||
echo CUT------------------------------------------------------------------CUT
|
||||
cat errors
|
||||
echo CUT------------------------------------------------------------------CUT
|
||||
$ECHO "$RED[!] afl-fuzz is not working correctly with frida_mode"
|
||||
CODE=1
|
||||
}
|
||||
rm -f errors
|
||||
|
||||
test "$SYS" = "i686" -o "$SYS" = "x86_64" -o "$SYS" = "amd64" -o "$SYS" = "i86pc" -o "$SYS" = "aarch64" -o ! "${SYS%%arm*}" && {
|
||||
$ECHO "$GREY[*] running afl-fuzz for frida_mode cmplog, this will take approx 10 seconds"
|
||||
{
|
||||
../afl-fuzz -m none -V10 -O -c 0 -i in -o out -- ./test-compcov >>errors 2>&1
|
||||
} >>errors 2>&1
|
||||
test -n "$( ls out/default/queue/id:000001* 2>/dev/null )" && {
|
||||
$ECHO "$GREEN[+] afl-fuzz is working correctly with frida_mode cmplog"
|
||||
} || {
|
||||
echo CUT------------------------------------------------------------------CUT
|
||||
cat errors
|
||||
echo CUT------------------------------------------------------------------CUT
|
||||
$ECHO "$RED[!] afl-fuzz is not working correctly with frida_mode cmplog"
|
||||
CODE=1
|
||||
}
|
||||
rm -f errors
|
||||
} || {
|
||||
$ECHO "$YELLOW[-] not an intel or arm platform, cannot test frida_mode cmplog"
|
||||
}
|
||||
|
||||
test "$SYS" = "i686" -o "$SYS" = "x86_64" -o "$SYS" = "amd64" -o "$SYS" = "i86pc" -o "$SYS" = "aarch64" -o ! "${SYS%%arm*}" && {
|
||||
$ECHO "$GREY[*] running afl-fuzz for persistent frida_mode, this will take approx 10 seconds"
|
||||
{
|
||||
../afl-fuzz -m ${MEM_LIMIT} -V10 -O -i in -o out -- ./test-instr
|
||||
} >>errors 2>&1
|
||||
test -n "$( ls out/default/queue/id:000002* 2>/dev/null )" && {
|
||||
$ECHO "$GREEN[+] afl-fuzz is working correctly with persistent frida_mode"
|
||||
RUNTIMEP=`grep execs_done out/default/fuzzer_stats | awk '{print$3}'`
|
||||
test -n "$RUNTIME" -a -n "$RUNTIMEP" && {
|
||||
DIFF=`expr $RUNTIMEP / $RUNTIME`
|
||||
test "$DIFF" -gt 1 && { # must be at least twice as fast
|
||||
$ECHO "$GREEN[+] persistent frida_mode was noticeable faster than standard frida_mode"
|
||||
} || {
|
||||
$ECHO "$YELLOW[-] persistent frida_mode was not noticeable faster than standard frida_mode"
|
||||
}
|
||||
} || {
|
||||
$ECHO "$YELLOW[-] we got no data on executions performed? weird!"
|
||||
}
|
||||
} || {
|
||||
echo CUT------------------------------------------------------------------CUT
|
||||
cat errors
|
||||
echo CUT------------------------------------------------------------------CUT
|
||||
$ECHO "$RED[!] afl-fuzz is not working correctly with persistent frida_mode"
|
||||
CODE=1
|
||||
}
|
||||
rm -rf in out errors
|
||||
} || {
|
||||
$ECHO "$YELLOW[-] not an intel or arm platform, cannot test persistent frida_mode"
|
||||
}
|
||||
|
||||
}
|
||||
} || {
|
||||
$ECHO "$RED[!] gcc compilation of test targets failed - what is going on??"
|
||||
CODE=1
|
||||
}
|
||||
|
||||
rm -f test-instr test-compcov
|
||||
} || {
|
||||
$ECHO "$YELLOW[-] frida_mode is not compiled, cannot test"
|
||||
INCOMPLETE=1
|
||||
}
|
||||
|
||||
. ./test-post.sh
|
Loading…
x
Reference in New Issue
Block a user