{"id":17348743,"url":"https://github.com/tkmru/idapm","last_synced_at":"2025-10-30T15:45:46.463Z","repository":{"id":37487747,"uuid":"286166101","full_name":"tkmru/idapm","owner":"tkmru","description":"idapm is IDA Plugin Manager via GitHub Repository.","archived":false,"fork":false,"pushed_at":"2020-09-05T16:12:53.000Z","size":7474,"stargazers_count":59,"open_issues_count":0,"forks_count":9,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-14T20:55:39.657Z","etag":null,"topics":["ida","ida-plugin","ida-pro"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tkmru.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-08-09T04:26:07.000Z","updated_at":"2025-02-03T07:50:44.000Z","dependencies_parsed_at":"2022-09-15T14:51:48.991Z","dependency_job_id":null,"html_url":"https://github.com/tkmru/idapm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tkmru/idapm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkmru%2Fidapm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkmru%2Fidapm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkmru%2Fidapm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkmru%2Fidapm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tkmru","download_url":"https://codeload.github.com/tkmru/idapm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tkmru%2Fidapm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281834991,"owners_count":26569853,"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","status":"online","status_checked_at":"2025-10-30T02:00:06.501Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["ida","ida-plugin","ida-pro"],"created_at":"2024-10-15T16:53:22.264Z","updated_at":"2025-10-30T15:45:46.430Z","avatar_url":"https://github.com/tkmru.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# idapm\n\n`idapm` is IDA Plugin Manager. It works perfectly on macOS, it probably works on Windows and Linux. \nThis is because I only have the macOS version of IDA Pro.\n\n\u003cimg src=\"screenshots/terminal.gif\"\u003e\n\n## Motivation\n\nManaging the IDA Plugin is inconvenient. There is no official package manager and you have to copy files to the plugin directory manually. \nSo I developed a plugin manager inspired by `go get` that allows you to install plugins from GitHub repositories without API server, and also allows you to import plugins from different directories on your PC with a single command.\n\n## Installation\n\n```\n$ pip install git+ssh://git@github.com/tkmru/idapm.git\n```\n\n## Usage\n\n### init\n\n`init` command creates `~/idapm.json`. \nIt contains information about the plugins you have installed.\n\n```\n$ idapm init\n~/idapm.json was created successfully!\n```\n\nIf `~/idapm.json` already exists, you can install the plugins listed in `~/idapm.json`.\n\n```\n$ idapm init\n~/idapm.json already exists...\nDo you want to install a plugin written in ~/idapm.json? [Y/n]: y\n----------------------\nTry: git clone https://github.com/L4ys/LazyIDA.git\nCloning into '/Applications/IDA Pro 7.5/ida.app/Contents/MacOS/plugins/idapm/L4ys/LazyIDA'...\nSymbolic link(/Applications/IDA Pro 7.5/ida.app/Contents/MacOS/plugins/LazyIDA.py) has been created\nInstalled successfully!\n```\n\n### install\n\n`install` command install plugin from GitHub repository or local.\n\n#### from GitHub\n\nYou can install from the specified GitHub repository.\n\n```\n$ idapm install L4ys/LazyIDA\n----------------------\nTry: git clone https://github.com/L4ys/LazyIDA.git\nCloning into '/Applications/IDA Pro 7.5/ida.app/Contents/MacOS/plugins/idapm/L4ys/LazyIDA'...\nSymbolic link(/Applications/IDA Pro 7.5/ida.app/Contents/MacOS/plugins/LazyIDA.py) has been created.\nInstalled successfully!\n```\n\nThe installed plug-ins are marked in the config.\n\n```\n$ cat /Users/tkmru/idapm.json\n{\n  \"plugins\": [\n    \"keystone-engine/keypatch\",\n    \"L4ys/LazyIDA\"\n  ]\n}\n```\n\n#### from local\n\nYou can copy a Python script from the specified directory.\n\n```\n$ idapm install --local ./\nCopy to /Applications/IDA Pro 7.5/ida.app/Contents/MacOS/plugins/test.py from ./test.py\nInstalled successfully!\n```\n\n### list\n\n`list` command displays a list of installed plugins.\n\n```\n$ idapm list\nList of scripts in IDA plugin directory\nLazyIDA.py\n\nList of plugins in config\nL4ys/LazyIDA\n```\n\n### check\n\n```\n$ idapm check\nIDA plugin dir:    /Applications/IDA Pro 7.5/ida.app/Contents/MacOS/plugins\nidapm config path: /Users/tkmru/idapm.json\n```\n\n## License\n\nGPLv3 - GNU General Public License, version 3\n\nCopyright (C) 2020 tkmru\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkmru%2Fidapm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftkmru%2Fidapm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftkmru%2Fidapm/lists"}