{"id":28437020,"url":"https://github.com/ronin-rb/ronin-repos","last_synced_at":"2025-06-27T20:31:57.153Z","repository":{"id":65104209,"uuid":"432110033","full_name":"ronin-rb/ronin-repos","owner":"ronin-rb","description":"Third-party git repository support for ronin.","archived":false,"fork":false,"pushed_at":"2025-02-12T06:49:40.000Z","size":132,"stargazers_count":7,"open_issues_count":2,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-14T05:24:05.012Z","etag":null,"topics":["repository-management","repository-manager","ronin-rb","third-party"],"latest_commit_sha":null,"homepage":"https://ronin-rb.dev","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ronin-rb.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.md","contributing":null,"funding":null,"license":"COPYING.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"open_collective":"ronin-rb","patreon":"roninrb"}},"created_at":"2021-11-26T08:45:01.000Z","updated_at":"2025-02-12T06:49:26.000Z","dependencies_parsed_at":"2023-02-17T10:15:34.490Z","dependency_job_id":"18691210-62db-4110-8c39-7648ecfa2407","html_url":"https://github.com/ronin-rb/ronin-repos","commit_stats":{"total_commits":153,"total_committers":1,"mean_commits":153.0,"dds":0.0,"last_synced_commit":"81d2677ec94bfd7f22d47bd08bb93b450476cf28"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ronin-rb/ronin-repos","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-repos","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-repos/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-repos/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-repos/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ronin-rb","download_url":"https://codeload.github.com/ronin-rb/ronin-repos/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-repos/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260577870,"owners_count":23030817,"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":["repository-management","repository-manager","ronin-rb","third-party"],"created_at":"2025-06-05T23:08:29.802Z","updated_at":"2025-06-27T20:31:57.129Z","avatar_url":"https://github.com/ronin-rb.png","language":"Ruby","funding_links":["https://opencollective.com/ronin-rb","https://patreon.com/roninrb"],"categories":[],"sub_categories":[],"readme":"# ronin-repos\n\n[![CI](https://github.com/ronin-rb/ronin-repos/actions/workflows/ruby.yml/badge.svg)](https://github.com/ronin-rb/ronin-repos/actions/workflows/ruby.yml)\n[![Code Climate](https://codeclimate.com/github/ronin-rb/ronin-repos.svg)](https://codeclimate.com/github/ronin-rb/ronin-repos)\n[![Gem Version](https://badge.fury.io/rb/ronin-repos.svg)](https://badge.fury.io/rb/ronin-repos)\n\n* [Website](https://ronin-rb.dev)\n* [Source](https://github.com/ronin-rb/ronin-repos)\n* [Issues](https://github.com/ronin-rb/ronin-repos/issues)\n* [Documentation](https://ronin-rb.dev/docs/ronin-repos/frames)\n* [Discord](https://discord.gg/6WAb3PsVX9) |\n  [Mastodon](https://infosec.exchange/@ronin_rb)\n\n## Description\n\nronin-repos provides a repository system for installing, managing, and accessing\nthird-party git repositories, that can contain additional Ruby code or other\ndata.\n\nThird-party git repositories can be used to extend parts of Ronin. Other Ronin\nlibraries can then list and load additional third-party Ruby classes from\nspecific directories within the installed third-party repos:\n\n* `exploits/` - may contain additional exploits for [ronin-exploits].\n* `payloads/` - may contain additional payloads for [ronin-payloads].\n\n**tl;dr** ronin-repos is essentially a decentralized plugin system for Ronin\nusing git repos.\n\nronin-repos is part of the [ronin-rb] project, a toolkit for security research\nand development.\n\n## Features\n\n* Supports installing any [Git][git] repository.\n* Manages installed repositories.\n* Has 85% documentation coverage.\n* Has 100% test coverage.\n\n## Synopsis\n\n```\nUsage: ronin-repos [options] [COMMAND [ARGS...]]\n\nOptions:\n    -h, --help                       Print help information\n\nArguments:\n    [COMMAND]                        The command name to run\n    [ARGS ...]                       Additional arguments for the command\n\nCommands:\n    completion\n    help\n    install\n    list, ls\n    new\n    purge\n    remove, rm\n    show, info\n    update, up\n```\n\nInstall a repository:\n\n```shell\n$ ronin-repos install https://github.com/...\n```\n\nList installed Repositories:\n\n```shell\n$ ronin-repos ls\n```\n\nUpdate all installed Repositories:\n\n```shell\n$ ronin-repos update\n```\n\nUpdate a specific Repositories:\n\n```shell\n$ ronin-repos update NAME\n```\n\nUninstall a specific Repositories:\n\n```shell\n$ ronin-repos rm repo-name\n```\n\nDelete all repositories:\n\n```shell\n$ ronin-repos purge\n```\n\nGenerate your own repo:\n\n```shell\n$ ronin-repos new my-repo\n$ git remote add origin git@github.com:user/my-repo.git\n$ git push -u origin main\n```\n\n## Examples\n\n```ruby\nrequire 'ronin/repos'\n\nRonin::Repos.find_file('wordlists/wordlist.txt')\n# =\u003e \"/home/user/.cache/ronin-repos/foo-repo/wordlists/wordlist.txt\"\n\nRnnin::Repos.glob(\"wordlists/*.txt\")\n# =\u003e [\"/home/user/.cache/ronin-repos/foo-repo/wordlists/cities.txt\",\n#     \"/home/user/.cache/ronin-repos/foo-repo/wordlists/states.txt\",\n#     \"/home/user/.cache/ronin-repos/bar-repo/wordlists/bands.txt\",\n#     \"/home/user/.cache/ronin-repos/bar-repo/wordlists/beers.txt\"]\n```\n\n## Requirements\n\n* [Ruby] \u003e= 3.0.0\n* [ronin-core] ~\u003e 0.2\n\n## Install\n\n```shell\n$ gem install ronin-repos\n```\n\n### Gemfile\n\n```ruby\ngem 'ronin-repos', '~\u003e 0.1'\n```\n\n## Development\n\n1. [Fork It!](https://github.com/ronin-rb/ronin-repos/fork)\n2. Clone It!\n3. `cd ronin-repos`\n4. `./scripts/server`\n5. `git checkout -b my_feature`\n6. Code It!\n7. `bundle exec rake spec`\n8. `git push origin my_feature`\n\n## License\n\nCopyright (c) 2021-2024 Hal Brodigan (postmodern.mod3 at gmail.com)\n\nronin-repos is free software: you can redistribute it and/or modify\nit under the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nronin-repos is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with ronin-repos.  If not, see \u003chttps://www.gnu.org/licenses/\u003e.\n\n[ronin-rb]: https://ronin-rb.dev/\n\n[Ruby]: https://www.ruby-lang.org\n[git]: https://git-scm.com/\n[ronin-core]: https://github.com/ronin-rb/ronin-core#readme\n[ronin-exploits]: https://github.com/ronin-rb/ronin-exploits#readme\n[ronin-payloads]: https://github.com/ronin-rb/ronin-payloads#readme\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronin-rb%2Fronin-repos","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fronin-rb%2Fronin-repos","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronin-rb%2Fronin-repos/lists"}