No description
Find a file
2026-03-10 17:22:37 +00:00
.github Use pytest-forked (#6219) 2026-03-09 17:38:59 -07:00
angr Update version to 9.2.205 2026-03-10 17:22:37 +00:00
corpus_tests Remove many sources of decompiler nondeterminism (#5486) 2025-05-20 00:21:16 -07:00
docs Remove symbion remnants (#5649) 2025-09-08 17:10:47 -07:00
native Update libafl to 0.15.4 (#6217) 2026-03-09 14:59:07 -07:00
tests Improve fuzzer test time (#6215) 2026-03-09 12:04:16 -07:00
.git-blame-ignore-revs .git-blame-ignore-revs: Fix reference 2025-11-26 17:44:09 -07:00
.gitignore Add Rust SegmnentList implementation (#5434) 2025-05-12 20:48:17 -07:00
.pre-commit-config.yaml [pre-commit.ci] pre-commit autoupdate (#6213) 2026-03-09 11:19:47 -07:00
.readthedocs.yml Add Rust SegmnentList implementation (#5434) 2025-05-12 20:48:17 -07:00
Cargo.lock Update libafl to 0.15.4 (#6217) 2026-03-09 14:59:07 -07:00
Cargo.toml Update to Rust 1.88 (#5561) 2025-06-26 21:00:49 -07:00
COPYRIGHT Update LICENSE and COPYRIGHT. (#5376) 2025-03-27 23:58:21 -07:00
LICENSE Update LICENSE and COPYRIGHT. (#5376) 2025-03-27 23:58:21 -07:00
MANIFEST.in Definitions: JSONify the data; Create protos on-demand. (#5640) 2025-09-08 17:26:31 -07:00
pyproject.toml Update version to 9.2.205 2026-03-10 17:22:37 +00:00
README.md README: Update some links 2025-10-13 13:57:08 -07:00
rust-toolchain.toml Update to Rust 1.88 (#5561) 2025-06-26 21:00:49 -07:00
SECURITY.md Draft security and reporting advisory (#3072) 2022-01-09 19:49:40 -07:00
setup.py Remove linux platform tag override in setup.py (#5596) 2025-07-09 17:41:36 -07:00

angr

Latest Release Python Version PyPI Statistics License

angr is a platform-agnostic binary analysis framework. It is brought to you by the Computer Security Lab at UC Santa Barbara, SEFCOM at Arizona State University, their associated CTF team, Shellphish, the open source community, and @rhelmot.

Homepage: https://angr.io

Project repository: https://github.com/angr/angr

Documentation: https://docs.angr.io

API Documentation: https://docs.angr.io/en/latest/api.html

What is angr?

angr is a suite of Python 3 libraries that let you load a binary and do a lot of cool things to it:

  • Disassembly and intermediate-representation lifting
  • Program instrumentation
  • Symbolic execution
  • Control-flow analysis
  • Data-dependency analysis
  • Value-set analysis (VSA)
  • Decompilation

The most common angr operation is loading a binary: p = angr.Project('/bin/bash') If you do this in an enhanced REPL like IPython, you can use tab-autocomplete to browse the top-level-accessible methods and their docstrings.

The short version of "how to install angr" is mkvirtualenv --python=$(which python3) angr && python -m pip install angr.

Example

angr does a lot of binary analysis stuff. To get you started, here's a simple example of using symbolic execution to get a flag in a CTF challenge.

import angr

project = angr.Project("angr-doc/examples/defcamp_r100/r100", auto_load_libs=False)

@project.hook(0x400844)
def print_flag(state):
    print("FLAG SHOULD BE:", state.posix.dumps(0))
    project.terminate_execution()

project.execute()

Quick Start