{"id":24782300,"url":"https://github.com/mateofumis/fridadownloader","last_synced_at":"2025-04-10T04:11:44.457Z","repository":{"id":273871588,"uuid":"921139633","full_name":"mateofumis/fridaDownloader","owner":"mateofumis","description":"fridaDownloader is a command-line tool that streamlines downloading the Frida Gadget or Server for Android, enabling developers and security researchers to quickly access the components needed for dynamic instrumentation.","archived":false,"fork":false,"pushed_at":"2025-02-19T14:22:55.000Z","size":29,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-19T15:17:08.824Z","etag":null,"topics":["android-pentesting","androidhacking","frida","frida-gadget","frida-server","frida-setup","hacking-tool","pentesting","python3","pythontools"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mateofumis.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}},"created_at":"2025-01-23T12:13:49.000Z","updated_at":"2025-02-19T14:15:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"1f1d5cff-434a-42c5-a277-b594382bd356","html_url":"https://github.com/mateofumis/fridaDownloader","commit_stats":null,"previous_names":["mateofumis/fridadownloader"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mateofumis%2FfridaDownloader","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mateofumis%2FfridaDownloader/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mateofumis%2FfridaDownloader/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mateofumis%2FfridaDownloader/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mateofumis","download_url":"https://codeload.github.com/mateofumis/fridaDownloader/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248154994,"owners_count":21056543,"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":["android-pentesting","androidhacking","frida","frida-gadget","frida-server","frida-setup","hacking-tool","pentesting","python3","pythontools"],"created_at":"2025-01-29T11:16:44.891Z","updated_at":"2025-04-10T04:11:44.426Z","avatar_url":"https://github.com/mateofumis.png","language":"Python","funding_links":["https://ko-fi.com/hackermater"],"categories":[],"sub_categories":[],"readme":"# 🛠️ fridaDownloader\n\nfridaDownloader is a command-line tool that streamlines downloading the Frida Gadget or Server for Android, enabling developers and security researchers to quickly access the components needed for dynamic instrumentation.\n\n![GitHub Release](https://img.shields.io/github/v/release/mateofumis/FridaDownloader)\n![PyPI - Version](https://img.shields.io/pypi/v/fridaDownloader)\n![PyPI - Downloads](https://img.shields.io/pypi/dm/fridaDownloader)\n\n## Features\n\n- **Download Options**: Easily download either the Frida Gadget or Server for Android.\n- **Specific Version**: Specify a particular version of Frida to download using the `--version VERSION` option or it will download the latest version by default.\n- **Target Selection**: Choose the target for download with the `--target` option, allowing you to select either `gadget` or `server`.\n- **Architecture Support**: Select the appropriate Android architecture with the `--architecture` option. Supported architectures include:\n  - `arm`\n  - `arm64`\n  - `x86`\n  - `x86_64`\n- **Custom Output Directory**: Use the `--output` option to specify a directory for saving the downloaded file, with a default location of `~/Downloads`.\n\n## Installation\n\n### Manual:\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/mateofumis/fridaDownloader.git\ncd fridaDownloader\n```\n\n2. Set up a virtual environment (optional but recommended):\n\n```bash\npython3 -m venv env\nsource env/bin/activate  # On Windows use `.\\env\\Scripts\\activate`\n```\n\n3. Install dependencies:\n\n```bash\npip3 install -r requirements.txt\n```\n\n### Using pip (or pipx) install\n\n- Install fridaDownloader with pip3\n\n```bash\npip3 install fridaDownloader \n```\n- Install fridaDownloader with pipx\n\n```bash\npipx install fridaDownloader \n```\n\n## Usage\n\n```bash\n$: fridaDownloader -h\n\n*********************************************\n*  Welcome to the Frida Downloader          *\n*                           by hackermater  *\n*********************************************\n\nusage: fridaDownloader.py [-h] [-v VERSION] -t {gadget,server} [-a ARCHITECTURE] [-o OUTPUT]\n\nDownload Frida Gadget or Server for Android\n\noptions:\n  -h, --help            show this help message and exit\n  -v, --version VERSION     Download a specific version of Frida\n  -t, --target {gadget,server}\n                        Specify the target to download: gadget or server\n  -a, --architecture ARCHITECTURE\n                        Android architecture (default: arm). Options: arm, arm64, x86, x86_64\n  -o, --output OUTPUT       Directory to save the downloaded file (default: ~/Downloads)\n```\n\n## Examples\n\n- Download the last version of Frida Server for x86 architecture:\n\n```bash\npython3 fridaDownloader.py -t server -a x86\n```\n\n- Download a specific version of Frida Gadget for arm64 architecture with specific output:\n\n```bash\npython3 fridaDownloader.py -t gadget -a arm64 -v 15.2.0 -o ~/Frida/Gadget/frida-gadget-arm64\n```\n\n## License\n\nThis project is licensed under the Apache License 2.0 - see the LICENSE file for details.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a pull request or open an issue.\n\n## Support me with a virtual Coffee! ❤️\n\n\u003ca href=\"https://ko-fi.com/hackermater\"\u003e\n    \u003cimg src=\"https://storage.ko-fi.com/cdn/brandasset/kofi_button_stroke.png\" alt=\"Ko-Fi\" width=\"400\" /\u003e\n\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmateofumis%2Ffridadownloader","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmateofumis%2Ffridadownloader","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmateofumis%2Ffridadownloader/lists"}