{"id":19098208,"url":"https://github.com/hydr0nium/mimir","last_synced_at":"2026-06-17T18:05:16.110Z","repository":{"id":257147412,"uuid":"857446131","full_name":"hydr0nium/mimir","owner":"hydr0nium","description":"mimir is a meta package manager for ethical hacking tools.","archived":false,"fork":false,"pushed_at":"2025-09-05T19:41:56.000Z","size":77,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-05T20:21:46.401Z","etag":null,"topics":["capture-the-flag","hacking","hacking-tool","hacking-tools","pentesting"],"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/hydr0nium.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-09-14T17:20:25.000Z","updated_at":"2025-09-05T19:41:59.000Z","dependencies_parsed_at":"2024-09-15T03:07:52.182Z","dependency_job_id":"6bf10b8e-d549-4cb2-8eb0-a48338325bbe","html_url":"https://github.com/hydr0nium/mimir","commit_stats":null,"previous_names":["hydr0nium/hacktools","hydr0nium/mimir"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hydr0nium/mimir","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydr0nium%2Fmimir","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydr0nium%2Fmimir/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydr0nium%2Fmimir/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydr0nium%2Fmimir/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hydr0nium","download_url":"https://codeload.github.com/hydr0nium/mimir/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hydr0nium%2Fmimir/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34459680,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-17T02:00:05.408Z","response_time":127,"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":["capture-the-flag","hacking","hacking-tool","hacking-tools","pentesting"],"created_at":"2024-11-09T03:44:29.628Z","updated_at":"2026-06-17T18:05:16.105Z","avatar_url":"https://github.com/hydr0nium.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# \\[+\\] ============ Mimir ============ \\[+\\]\n##        The hacking package manager\n\nmimir is package manager for pentesting or generally cybersecurity tools. It acts as a meta package manager and broker between\nthe installed package managers on that system. If a package is installed it automatically determins how the package can be installed\non that system and remembers how it was installed. It also features a rich search-engine-like search function that accounts for typos\nand 'tagged' search. \n\n## Installation\nmimir can easily be installed with pipx:\n```bash\npipx install git+https://github.com/hydr0nium/mimir.git\n```\n\n## Usage\n```\nusage: mimir [command]\n\nAvailable Commands:\n\n    install      Install a tool\n    uninstall    Uninstall a tool\n    search       Search-engine like tool search\n    help         Show help\n    version      Show version\n    list         List all installed packages\n    update       Update a tool\n    info         Info for a package\n    update-repo  Update the local packages.json file\n\noptions:\n  -h, --help     show this help message and exit\n\n```\nYou can get more help by running `mimir help [command]` or `mimir [command] --help`\n\n## TODO\n\n-   [X] Implement tool installer\n-   [X] Implement tool searcher\n-   [X] Implement list feature\n-   [X] Implement version feature\n-   [X] Implement package info feature\n-   [X] Implement updater\n-   [X] Implement update-repo\n-   [ ] Detect currently installed packages on first start\n-   [ ] Implement updater for all packages \n-   [ ] Add overwrite to package manager choice\n-   [ ] Finished info command\n-   [X] Implement better debug mode\n-   [X] Implement verbose mode\n-   [X] QoL package format change\n-   [X] Create config functionality\n-   [X] Create local sqlite backend for installed tools\n\n\n# Contribution:\n## How to add a package:\n1. Edit the package file in `packages/packages.json`. The `toolname` represents the name that is used to install the package with mimir:\n```json\n[...]\n\"toolname\": {\n                \"tags\":  [\"first_tag\", \"second_tag\", \"third_tag\", \"...\"],\n                \"description\": \"Here is some description ...\"\n            }\n[...]\n```\n2. Add a `toolname.toml` file. Note that the name in the `packages.json` and the name of the toml file (without the extension) need to be the same. You only need to add the sections that are usable:\n```toml\n[apt]\nname = \"toolname\" # Name of the apt package.\n\n[pacman]\nname = \"toolname\" # Name of the pacman package.\n\n[pipx]\nname = \"toolname\" # Name of the pipx package.\n# git = git+https://[...] # Use instead of name if you want 'pure' git installs\n\n[gem]\nname = \"toolname\" # Name of the gem package.\n\n[snap]\nname = \"toolname\" # Name of the snap package.\n\n[flatpak]\nname = \"toolname\" # Name of the flatpak package.\n\n[cargo]\nname = \"toolname\" # Name of the cargo package.\n\n[yay]\nname = \"toolname\" # Name of the yay package.\n\n[go]\nname = \"github.com/...\" # Path to the github of the package\n```\n3. Create a `pull request` for review. After the pull request is accepted your package should be good to go if people update their local `packages.json`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhydr0nium%2Fmimir","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhydr0nium%2Fmimir","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhydr0nium%2Fmimir/lists"}