forked from bnagy/afl-trivia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
afl-resume
executable file
·77 lines (56 loc) · 1.53 KB
/
afl-resume
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#!/bin/sh
#
# american fuzzy lop - resume a set of fuzzers
# --------------------------------------
#
# By @rantyben, based on afl-whatsup, which is:
# Written and maintained by Michal Zalewski <lcamtuf@google.com>
#
# Copyright 2015 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# This resumes all live fuzzers in the given output directory using
# SIGCONT
echo "afl-resume - resume fuzzers"
echo
DIR="$1"
if [ "$DIR" = "" ]; then
echo "Usage: $0 afl_sync_dir" 1>&2
echo 1>&2
exit 1
fi
cd "$DIR" || exit 1
if [ -d queue ]; then
echo "[-] Error: parameter is an individual output directory, not a sync dir." 1>&2
exit 1
fi
TMP=`mktemp -t .afl-whatsup-XXXXXXXX` || exit 1
ALIVE_CNT=0
DEAD_CNT=0
for i in `find . -maxdepth 2 -iname fuzzer_stats`; do
sed 's/^command_line.*$/_skip:1/;s/[ ]*:[ ]*/="/;s/$/"/' "$i" >"$TMP"
. "$TMP"
if ! kill -0 "$fuzzer_pid" 2>/dev/null; then
echo "Instance is dead or running remotely, skipping."
echo
DEAD_CNT=$((DEAD_CNT + 1))
continue
fi
ALIVE_CNT=$((ALIVE_CNT + 1))
if ! kill -CONT "$fuzzer_pid" 2>/dev/null; then
echo "Unable to stop fuzzer pid $fuzzer_pid, aborting."
echo
exit 1
fi
done
rm -f "$TMP"
echo "Fuzzers resumed: $ALIVE_CNT"
if [ ! "$DEAD_CNT" = "0" ]; then
echo "Dead or remote: $DEAD_CNT (excluded from stats)"
fi
exit 0