Skip to content

Commit

Permalink
update for the claripy backend changes
Browse files Browse the repository at this point in the history
  • Loading branch information
zardus committed Dec 16, 2015
1 parent ae11fcc commit b499a0a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
This lists the *major* changes in angr.
Tracking minor changes are left as an excercise for the reader :-)

## angr 4.5.12.?

Claripy has a new manager for backends, allowing external backends (i.e., those implemented by other modules) to be used.
The result is that `claripy.backend_concrete` is now `claripy.backends.concrete`, `claripy.backend_vsa` is now `claripy.backends.vsa`, and so on.

## angr 4.5.12.12

Improved the ability to recover from failures in instruction decoding.
Expand Down
2 changes: 1 addition & 1 deletion examples/mma_howtouse/solve.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def main():

# In this binary, the result is a concrete char, so we don't need a symbolic
# state or a solver to get its value.
getch = lambda i: chr(claripy.backend_concrete.convert(howtouse(i)).value)
getch = lambda i: chr(claripy.backends.concrete.convert(howtouse(i)).value)

# Let's call this 45 times, and that's the result!
return ''.join(getch(i) for i in xrange(45))
Expand Down

0 comments on commit b499a0a

Please sign in to comment.