Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion colorguard/harvester/harvester.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def get_largest_consecutive(self):
# extra work here because we need to be confident about the bytes

ss = self.state.copy()
ss.add_constraints(self.minimized_ast == ss.solver.BVV(ss.solver.eval(self.minimized_ast, cast_to=bytes)))
ss.add_constraints(self.minimized_ast == claripy.BVV(ss.solver.eval(self.minimized_ast, cast_to=bytes)))

leaked_bytes = [ ]
for byte in self.possibly_leaked_bytes:
Expand Down