{"id":13422843,"url":"https://github.com/avast/retdec-idaplugin","last_synced_at":"2025-05-15T03:05:45.404Z","repository":{"id":41284404,"uuid":"114011005","full_name":"avast/retdec-idaplugin","owner":"avast","description":"RetDec plugin for IDA","archived":false,"fork":false,"pushed_at":"2025-02-03T08:39:42.000Z","size":6713,"stargazers_count":770,"open_issues_count":14,"forks_count":127,"subscribers_count":38,"default_branch":"master","last_synced_at":"2025-04-15T01:58:02.700Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://retdec.com/","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/avast.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-12T16:07:18.000Z","updated_at":"2025-04-12T09:38:58.000Z","dependencies_parsed_at":"2024-12-29T23:34:56.161Z","dependency_job_id":"5c451eb7-ae3f-4e7d-9aac-caea166bfd57","html_url":"https://github.com/avast/retdec-idaplugin","commit_stats":{"total_commits":170,"total_committers":14,"mean_commits":"12.142857142857142","dds":"0.21764705882352942","last_synced_commit":"20bc72cea119e2e2020be377831d6c5a28f83145"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avast%2Fretdec-idaplugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avast%2Fretdec-idaplugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avast%2Fretdec-idaplugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/avast%2Fretdec-idaplugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/avast","download_url":"https://codeload.github.com/avast/retdec-idaplugin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254264765,"owners_count":22041793,"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":[],"created_at":"2024-07-30T23:00:58.817Z","updated_at":"2025-05-15T03:05:45.381Z","avatar_url":"https://github.com/avast.png","language":"C++","funding_links":[],"categories":["IDA Plugins","C++","\u003ca id=\"d2166f4dac4eab7fadfe0fd06467fbc9\"\u003e\u003c/a\u003e反编译器\u0026\u0026AST","使用"],"sub_categories":["\u003ca id=\"b31acf6c84a9506066d497af4e702bf5\"\u003e\u003c/a\u003e调试数据","\u003ca id=\"d2166f4dac4eab7fadfe0fd06467fbc9\"\u003e\u003c/a\u003e反编译器\u0026\u0026AST"],"readme":"# RetDec IDA plugin\n\nRetDec plugin for IDA (Interactive Disassembler).\n\nThe plugin is compatible with the IDA 7.5+ versions.\nThe plugin does NOT work with IDA 6.x, IDA 7.0-7.4, or freeware version of IDA 7.0.\nThe plugin comes at both 32-bit and 64-bit address space variants (both are 64-bit binaries). I.e. it works in both `ida` and `ida64`.\nAt the moment, it can decompile the following architectures:\n* 32-bit: x86, arm, mips, and powerpc.\n* 64-bit: x86-64, arm64.\n\n## Installation and Use\n\nCurrently, we officially support only Windows and Linux. It may be possible to build macOS version from the sources, but since we do not own a macOS version of IDA, we cannot create a pre-built package, or continually make sure the macOS build is not broken.\n\n1. Either download and unpack a pre-built package from the [latest release](https://github.com/avast/retdec-idaplugin/releases/latest), or build and install the RetDec IDA plugin by yourself (the process is described below).\n2. Follow the user guide (`user_guide.pdf`) that is part of the downloaded package, or use the [current version](https://github.com/avast/retdec-idaplugin/blob/master/doc/user_guide/user_guide.pdf) from this repository.\n3. Don't forget to install the required dependencies mentioned in the user guide.\n\n## Build and Installation\n\n### Requirements\n\n**Note: These are requirements to build the RetDec IDA plugin, not to run it. See our [User Guide](https://github.com/avast/retdec-idaplugin/blob/master/doc/user_guide/user_guide.pdf) for information on plugin installation, configuration, and use.**\n\n* A compiler supporting C++17\n  * On Windows, only Microsoft Visual C++ is supported (version \u003e= Visual Studio 2017).\n* CMake (version \u003e= 3.6)\n* IDA SDK (version \u003e= 7.7)\n\n### Process\n\n* Clone the repository:\n  * `git clone https://github.com/avast/retdec-idaplugin.git`\n* Linux:\n  * `cd retdec-idaplugin`\n  * `mkdir build \u0026\u0026 cd build`\n  * `cmake .. -DIDA_SDK_DIR=\u003cpath\u003e`\n  * `make`\n  * `make install` (if `IDA_DIR` was set, see below)\n* Windows:\n  * Open a command prompt (e.g. `C:\\msys64\\msys2_shell.cmd` from [MSYS2](https://github.com/avast/retdec/wiki/Windows-Environment))\n  * `cd retdec-idaplugin`\n  * `mkdir build \u0026\u0026 cd build`\n  * `cmake .. -DIDA_SDK_DIR=\u003cpath\u003e -G\u003cgenerator\u003e`\n  * `cmake --build . --config Release -- -m`\n  * `cmake --build . --config Release --target install` (if `IDA_DIR` was set, see below)\n  * Alternatively, you can open `retdec-idaplugin.sln` generated by `cmake` in Visual Studio IDE.\n\nYou must pass the following parameters to `cmake`:\n* `-DIDA_SDK_DIR=\u003c/path/to/idasdk\u003e` to tell `cmake` where the IDA SDK directory is located.\n* (Windows only) `-G\u003cgenerator\u003e` is `-G\"Visual Studio 15 2017 Win64\"` for 64-bit build using Visual Studio 2017. Later versions of Visual Studio may be used. Only 64-bit build is supported.\n\nYou can pass the following additional parameters to `cmake`:\n* `-DIDA_DIR=\u003c/path/to/ida\u003e` to tell `cmake` where to install the plugin. If specified, installation will copy plugin binaries into `IDA_DIR/plugins`, and content of `scripts/idc` directory into `IDA_DIR/idc`. If not set, installation step does nothing.\n* `-DRETDEC_IDAPLUGIN_DOC=ON` to enable the `user-guide` target which generates the user guide document (disabled by default, the target needs to be explicitly invoked).\n\n## User Guide\n\nThe [User Guide](https://github.com/avast/retdec-idaplugin/blob/master/doc/user_guide/user_guide.pdf) in a PDF form is located in `doc/user_guide/user_guide.pdf`.\n\nYou can build your own guide by enabling and invoking the `user-guide` target:\n* `cmake .. -DRETDEC_IDAPLUGIN_DOC=ON`\n* Linux: `make user-guide`\n* Windows: `cmake --build . --config Release --target user-guide`\n* Requires [LaTeX](https://www.latex-project.org/), LaTeX packages, and related tools.\n* The resulting PDF will overwrite the original `user_guide.pdf` in `doc/user_guide`.\n\n## License\n\nCopyright (c) 2020 Avast Software, licensed under the MIT license. See the `LICENSE` file for more details.\n\nRetDec IDA plugin uses third-party libraries or other resources listed, along with their licenses, in the `LICENSE-THIRD-PARTY` file.\n\n## Contributing\n\nSee [RetDec contribution guidelines](https://github.com/avast/retdec/wiki/Contribution-Guidelines).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favast%2Fretdec-idaplugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Favast%2Fretdec-idaplugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Favast%2Fretdec-idaplugin/lists"}