{"id":13642308,"url":"https://github.com/axt/angr-utils","last_synced_at":"2026-04-09T00:02:32.969Z","repository":{"id":42233102,"uuid":"54428733","full_name":"axt/angr-utils","owner":"axt","description":"Handy utilities for the angr binary analysis framework, most notably CFG visualization","archived":false,"fork":false,"pushed_at":"2019-03-15T18:41:47.000Z","size":17367,"stargazers_count":269,"open_issues_count":1,"forks_count":43,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-08-03T01:26:07.427Z","etag":null,"topics":["analysis","angr","binary","cfg","visualisation"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/axt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-03-21T22:54:25.000Z","updated_at":"2024-07-22T17:23:46.000Z","dependencies_parsed_at":"2022-08-12T09:51:13.489Z","dependency_job_id":null,"html_url":"https://github.com/axt/angr-utils","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axt%2Fangr-utils","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axt%2Fangr-utils/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axt%2Fangr-utils/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/axt%2Fangr-utils/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/axt","download_url":"https://codeload.github.com/axt/angr-utils/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223832943,"owners_count":17210754,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["analysis","angr","binary","cfg","visualisation"],"created_at":"2024-08-02T01:01:29.738Z","updated_at":"2025-12-14T15:12:54.800Z","avatar_url":"https://github.com/axt.png","language":"Python","readme":"# angr-utils\n\nAngr-utils is a collection of utilities for [angr](https://github.com/angr/angr) binary analysis framework.\n\n## Note\n\nVisualisation for various graphs (currently supported: CFG, CG; planned: DFG, CDG, DDG) has been moved to [bingraphvis](https://github.com/axt/bingraphvis).\n\nThe API of the facade functions in `visualize.py` are considered stable (except marked otherwise in comment), and should not break between releases, although they provide only a limited subset of [bingraphvis](https://github.com/axt/bingraphvis) functionalities.\n\nThis tool is not designed to support interactive CFGs. For full interactivity, check out [angr-management](https://github.com/angr/angr-management), for navigable static CFGs check out [cfg-explorer](https://github.com/axt/cfg-explorer).\n\n## Main functionality\n* CFG visualisation\n* Pretty printers\n* Utility functions\n\n## Install\n```\ncd angr-dev\ngit clone https://github.com/axt/bingraphvis\npip install -e ./bingraphvis\ngit clone https://github.com/axt/angr-utils\npip install -e ./angr-utils\n```\n## Usage\n\n**See [examples][examples] for more details.**\n\nPlot fancy cfg-s:\n\n```python\nimport angr\nfrom angrutils import *\nproj = angr.Project(\"\u003c...\u003e/ais3_crackme\", load_options={'auto_load_libs':False})\nmain = proj.loader.main_object.get_symbol(\"main\")\nstart_state = proj.factory.blank_state(addr=main.rebased_addr)\ncfg = proj.analyses.CFGEmulated(fail_fast=True, starts=[main.rebased_addr], initial_state=start_state)\nplot_cfg(cfg, \"ais3_cfg\", asminst=True, remove_imports=True, remove_path_terminator=True)  \n```\n\n![cfg][cfg]\n\n[cfg]: https://i.imgur.com/QnxZzSF.png\n[examples]: https://github.com/axt/angr-utils/tree/master/examples\n","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxt%2Fangr-utils","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faxt%2Fangr-utils","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faxt%2Fangr-utils/lists"}