Skip to content

Commit 31f1b6e

Browse files
committed
append each input with its generation method
1 parent 176ac1e commit 31f1b6e

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

Legion.py

+18-14
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def mutate(self):
362362
return results
363363
return self.random_fuzzing()
364364

365-
def app_fuzzing(self) -> List[bytes]:
365+
def app_fuzzing(self) -> List[Tuple[bytes, str]]:
366366
def byte_len() -> int:
367367
"""
368368
The number of bytes in the input
@@ -388,6 +388,9 @@ def byte_len() -> int:
388388
self.fully_explored = True
389389
return results
390390

391+
# Denotes the generation method for each input
392+
# S: constraint solving; F: fuzzing; R: random generation
393+
method = "S"
391394
while len(results) < MAX_SAMPLES:
392395
try:
393396
val = next(self.samples)
@@ -396,9 +399,11 @@ def byte_len() -> int:
396399
break
397400
if val is None and len(results) < MIN_SAMPLES:
398401
# requires constraint solving but not enough results
402+
method = "S"
399403
continue
400-
result = val.to_bytes(byte_len(), 'big')
404+
result = (val.to_bytes(byte_len(), 'big'), method)
401405
results.append(result)
406+
method = "F"
402407
except StopIteration:
403408
# NOTE: Insufficient results from APPFuzzing:
404409
# Case 1: break in the outside while:
@@ -440,7 +445,7 @@ def byte_len() -> int:
440445
return results
441446

442447
@staticmethod
443-
def random_fuzzing() -> List[bytes]:
448+
def random_fuzzing() -> List[Tuple[bytes, str]]:
444449
def random_bytes():
445450
LOGGER.debug("Generating random {} bytes".format(MAX_BYTES))
446451
# input_bytes = b''
@@ -449,7 +454,7 @@ def random_bytes():
449454
# return input_bytes
450455
# Or return end of file char?
451456
return os.urandom(MAX_BYTES)
452-
return [random_bytes() for _ in range(MIN_SAMPLES)]
457+
return [(random_bytes(), "R") for _ in range(MIN_SAMPLES)]
453458

454459
def add_child(self, key: str or int, new_child: 'TreeNode') -> None:
455460
debug_assertion((key == 'Simulation') ^ (key == new_child.addr))
@@ -1006,12 +1011,12 @@ def simulation(node: TreeNode = None) -> List[List[int]]:
10061011

10071012
global FOUND_BUG, MSGS, INPUTS, TIMES
10081013
mutants = node.mutate() if node else \
1009-
[bytes("".join(mutant), 'utf-8')
1014+
[(bytes("".join(mutant), 'utf-8'), "D")
10101015
# Note: Need to make sure the first binary execution must complete successfully
10111016
# Otherwise (e.g. timeout) the root address will be wrong
1012-
for mutant in SEEDS] if SEEDS else ([b'\x00'*MAX_BYTES]
1013-
+ [b'\x01\x00\x00\x00'*(MAX_BYTES//4)]
1014-
+ [b'\x0a'] + TreeNode.random_fuzzing())
1017+
for mutant in SEEDS] if SEEDS else ([(b'\x00'*MAX_BYTES, "D")]
1018+
+ [(b'\x01\x00\x00\x00'*(MAX_BYTES//4), "D")]
1019+
+ [(b'\x0a', "D")] + TreeNode.random_fuzzing())
10151020
# for mutant in SEEDS] if SEEDS else [b'\x0a']
10161021
# for mutant in SEEDS] if SEEDS else TreeNode.random_fuzzing()
10171022

@@ -1032,7 +1037,7 @@ def simulation(node: TreeNode = None) -> List[List[int]]:
10321037
return traces
10331038

10341039

1035-
def binary_execute_parallel(input_bytes: bytes):
1040+
def binary_execute_parallel(input_bytes: Tuple[bytes, str]):
10361041
"""
10371042
Execute the binary with an input in bytes
10381043
:param input_bytes: the input to feed the binary
@@ -1052,7 +1057,7 @@ def execute():
10521057
# 0: no timeout; 1: instrumented binary timeout; 2: uninstrumented binary timeout
10531058
timeout = False
10541059
try:
1055-
msg = instr.communicate(input_bytes, timeout=CONEX_TIMEOUT)
1060+
msg = instr.communicate(input_bytes[0], timeout=CONEX_TIMEOUT)
10561061
ret = instr.returncode
10571062
instr.terminate()
10581063
del instr
@@ -1069,7 +1074,7 @@ def execute():
10691074
try:
10701075
uninstr = sp.Popen(UNINSTR_BIN, stdin=sp.PIPE, stdout=sp.PIPE,
10711076
stderr=sp.PIPE, close_fds=True)
1072-
msg = uninstr.communicate(input_bytes, timeout=CONEX_TIMEOUT)
1077+
msg = uninstr.communicate(input_bytes[0], timeout=CONEX_TIMEOUT)
10731078
ret = uninstr.returncode
10741079
LOGGER.info("Uninstrumented binary execution completed")
10751080
uninstr.terminate()
@@ -1088,16 +1093,15 @@ def execute():
10881093
debug_assertion(bool(report))
10891094

10901095
report_msg, return_code, time_out = report
1091-
1092-
completed = report != (None, None)
1096+
completed = report != (None, None, True)
10931097
traced = completed and report_msg[1]
10941098
found_bug = False
10951099

10961100
if (SAVE_TESTCASES or SAVE_TESTINPUTS) and completed:
10971101
curr_time = time.time() - TIME_START
10981102
if SAVE_TESTCASES and (not time_out or SAVE_TESTCASES_TIMEOUT):
10991103
stdout = report_msg[0].decode('utf-8')
1100-
save_tests_to_file(curr_time, stdout, ("-T" if time_out else "-C"))
1104+
save_tests_to_file(curr_time, stdout, ("-T" if time_out else "-C")+("-"+input_bytes[1]))
11011105
if SAVE_TESTINPUTS:
11021106
save_input_to_file(curr_time, input_bytes)
11031107

0 commit comments

Comments
 (0)