Import claripy through the angr package - #14
Open
twizmwazin wants to merge 1 commit into
Open
Conversation
Follow-up to angr/angr#6550, which merges claripy (clarirs) into angr: claripy is no longer importable as a standalone top-level module -- it lives at angr.rustylib.claripy and is exposed as angr.claripy. Rewrite every `import claripy` / `from claripy...` to `from angr import claripy` / `from angr.claripy...` (34 files, mechanical). Also replace claripy.backends.concrete.convert(x).value with x.concrete_value in mma_howtouse: clarirs does not expose the claripy backends objects, and concrete_value reads the value of an already-concrete AST directly. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This was referenced Jul 8, 2026
Member
|
Corpus decompilation diffs can be found at angr/dec-snapshots@master...angr/angr-examples_14 |
This was referenced Jul 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Depends on angr/angr#6550, which merges claripy (clarirs) into the angr package: claripy is no longer importable as a standalone top-level module — it lives at
angr.rustylib.claripyand is exposed asangr.claripy.This PR rewrites every
import claripytofrom angr import claripyso the examples keep working (34 files, mechanical; the bound name staysclaripyso no call sites change). It also replaces the oneclaripy.backends.concrete.convert(x).valueinmma_howtousewithx.concrete_value: clarirs does not expose the claripy backend objects, andconcrete_valuereads an already-concrete AST's value directly (verified — the example still recovers the correct flag).Linked PRs (for angr CI cross-checkout):
🤖 Generated with Claude Code