{"id":13484180,"url":"https://github.com/angr/angr","last_synced_at":"2025-05-12T00:54:41.486Z","repository":{"id":36031932,"uuid":"40328394","full_name":"angr/angr","owner":"angr","description":"A powerful and user-friendly binary analysis platform!","archived":false,"fork":false,"pushed_at":"2025-05-10T23:07:38.000Z","size":66623,"stargazers_count":7949,"open_issues_count":550,"forks_count":1107,"subscribers_count":184,"default_branch":"master","last_synced_at":"2025-05-12T00:54:31.252Z","etag":null,"topics":["analysis","angr","binary","hacktoberfest"],"latest_commit_sha":null,"homepage":"http://angr.io","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/angr.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-08-06T21:46:55.000Z","updated_at":"2025-05-11T20:11:28.000Z","dependencies_parsed_at":"2023-09-22T19:31:54.846Z","dependency_job_id":"e419d6c9-897c-4fbc-ae87-517f8301b73d","html_url":"https://github.com/angr/angr","commit_stats":{"total_commits":10143,"total_committers":279,"mean_commits":"36.354838709677416","dds":0.7344966972296165,"last_synced_commit":"97d2a07655c326e4cccd27d488ad2d5c7bc87cc2"},"previous_names":[],"tags_count":221,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angr%2Fangr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angr%2Fangr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angr%2Fangr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/angr%2Fangr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/angr","download_url":"https://codeload.github.com/angr/angr/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253655955,"owners_count":21943081,"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","hacktoberfest"],"created_at":"2024-07-31T17:01:20.309Z","updated_at":"2025-05-12T00:54:41.464Z","avatar_url":"https://github.com/angr.png","language":"Python","readme":"# angr\n\n[![Latest Release](https://img.shields.io/pypi/v/angr.svg)](https://pypi.python.org/pypi/angr/)\n[![Python Version](https://img.shields.io/pypi/pyversions/angr)](https://pypi.python.org/pypi/angr/)\n[![PyPI Statistics](https://img.shields.io/pypi/dm/angr.svg)](https://pypistats.org/packages/angr)\n[![License](https://img.shields.io/github/license/angr/angr.svg)](https://github.com/angr/angr/blob/master/LICENSE)\n\nangr is a platform-agnostic binary analysis framework.\nIt is brought to you by [the Computer Security Lab at UC Santa Barbara](https://seclab.cs.ucsb.edu), [SEFCOM at Arizona State University](https://sefcom.asu.edu), their associated CTF team, [Shellphish](https://shellphish.net), the open source community, and **[@rhelmot](https://github.com/rhelmot)**.\n\n## Project Links\nHomepage: https://angr.io\n\nProject repository: https://github.com/angr/angr\n\nDocumentation: https://docs.angr.io\n\nAPI Documentation: https://api.angr.io/en/latest/\n\n## What is angr?\n\nangr is a suite of Python 3 libraries that let you load a binary and do a lot of cool things to it:\n\n- Disassembly and intermediate-representation lifting\n- Program instrumentation\n- Symbolic execution\n- Control-flow analysis\n- Data-dependency analysis\n- Value-set analysis (VSA)\n- Decompilation\n\nThe 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](https://docs.angr.io/docs/toplevel) and their docstrings.\n\nThe short version of \"how to install angr\" is `mkvirtualenv --python=$(which python3) angr \u0026\u0026 python -m pip install angr`.\n\n## Example\n\nangr does a lot of binary analysis stuff.\nTo get you started, here's a simple example of using symbolic execution to get a flag in a CTF challenge.\n\n```python\nimport angr\n\nproject = angr.Project(\"angr-doc/examples/defcamp_r100/r100\", auto_load_libs=False)\n\n@project.hook(0x400844)\ndef print_flag(state):\n    print(\"FLAG SHOULD BE:\", state.posix.dumps(0))\n    project.terminate_execution()\n\nproject.execute()\n```\n\n# Quick Start\n\n- [Install Instructions](https://docs.angr.io/introductory-errata/install)\n- Documentation as [HTML](https://docs.angr.io/) and sources in the angr [Github repository](https://github.com/angr/angr/tree/master/docs)\n- Dive right in: [top-level-accessible methods](https://docs.angr.io/core-concepts/toplevel)\n- [Examples using angr to solve CTF challenges](https://docs.angr.io/examples).\n- [API Reference](https://angr.io/api-doc/)\n- [awesome-angr repo](https://github.com/degrigis/awesome-angr)\n","funding_links":[],"categories":["Debugging and Reverse Engineering",":sun_with_face: Useful Python Libraries \u0026 Scripts","Python","Reversing","Python (144)","Tools","Resources",":wrench: Tools","hacktoberfest","Reverse Engine","Other","Software Tools","Binary Analysis","\u003ca id=\"1d9dec1320a5d774dc8e0e7604edfcd3\"\u003e\u003c/a\u003e工具-新添加的","Firmware Security","Project","Programming/Comp Sci/SE Things"],"sub_categories":["Other Resources","By Purpose","Before 2000","Disassemblers/Decompilers","\u003ca id=\"8f1b9c5c2737493524809684b934d49a\"\u003e\u003c/a\u003e文章\u0026\u0026视频","Reverse Engineering Tools","Program Analysis","Reversing/Binary Analysis"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fangr%2Fangr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fangr%2Fangr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fangr%2Fangr/lists"}