{"id":16338167,"url":"https://github.com/rohaquinlop/immunipy","last_synced_at":"2025-10-17T23:14:57.111Z","repository":{"id":243603216,"uuid":"812085708","full_name":"rohaquinlop/immunipy","owner":"rohaquinlop","description":"A Python SCA tool that acts as a watchdog, keeping an eye out for security vulnerabilities and reporting them promptly, written in Rust.","archived":false,"fork":false,"pushed_at":"2024-07-28T04:35:32.000Z","size":36,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-17T18:48:46.501Z","etag":null,"topics":["cli","python","python-library","sca","security","vulnerability-detection","vulnerability-scanners"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/rohaquinlop.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"rohaquinlop"}},"created_at":"2024-06-07T23:40:05.000Z","updated_at":"2024-08-19T16:46:55.000Z","dependencies_parsed_at":"2024-06-10T05:34:43.708Z","dependency_job_id":"0b1be37a-8ffc-44fe-8b7f-c3f60abed36a","html_url":"https://github.com/rohaquinlop/immunipy","commit_stats":null,"previous_names":["rohaquinlop/pywatchdog","rohaquinlop/immunipy"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohaquinlop%2Fimmunipy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohaquinlop%2Fimmunipy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohaquinlop%2Fimmunipy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rohaquinlop%2Fimmunipy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rohaquinlop","download_url":"https://codeload.github.com/rohaquinlop/immunipy/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244710602,"owners_count":20497271,"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":["cli","python","python-library","sca","security","vulnerability-detection","vulnerability-scanners"],"created_at":"2024-10-10T23:49:49.416Z","updated_at":"2025-10-17T23:14:57.034Z","avatar_url":"https://github.com/rohaquinlop.png","language":"Rust","funding_links":["https://github.com/sponsors/rohaquinlop"],"categories":[],"sub_categories":[],"readme":"# 🐶 immunipy\n\n\u003cp align=\"center\"\u003e\n    \u003cem\u003eA Python SCA tool that acts as a watchdog, keeping an eye out for security vulnerabilities and reporting them promptly, written in Rust.\u003c/em\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://sonarcloud.io/summary/new_code?id=rohaquinlop_immunipy\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://sonarcloud.io/api/project_badges/measure?project=rohaquinlop_immunipy\u0026metric=alert_status\" alt=\"Quality Gate\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://pypi.org/project/immunipy\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://img.shields.io/pypi/v/immunipy?color=%2334D058\u0026label=pypi%20package\" alt=\"Package version\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n**immunipy** analyses the Python dependencies of your project and checks for security vulnerabilities.\n\n## Features\n\n- **Security Vulnerabilities**: immunipy checks for security vulnerabilities on real time in your Python dependencies.\n- **Fast and Lightweight**: immunipy is written in Rust, which makes it fast and lightweight.\n- **CI/CD Integration**: You can use immunipy in your CI/CD pipeline.\n- **Easy to Use**: immunipy is easy to use.\n\n## Requirements\n\n- Python \u003e= 3.7\n\n- It's necessary to have your Python dependencies in a `requirements.txt` file or a `poetry.lock` file.\n\n## Installation\n\nYou can install immunipy using pip:\n\n```bash\npip install immunipy\n```\n\n## Usage\n\n\nTo check for security vulnerabilities in your Python dependencies, run:\n\n**requirements.txt**\n\n```bash\nimmunipy /path/to/requirements.txt\n```\n\n**poetry.lock**\n\n```bash\nimmunipy /path/to/poetry.lock\n```\n\n**Project directory**\n\n```bash\nimmunipy /path/to/your/project/directory\n```\n\n**Git project URL**\n\n```bash\nimmunipy https://your-git-project\n```\n\n\n**Example:**\n\n```bash\n$ immunipy ./tests\n```\n\nOutput:\n```bash\n────────────────── 🐶 immunipy v0.0.1 ───────────────────\nChecking . for vulnerable packages...\n [00:00:01] ########################################       2/2       Done!\nFound 2 vulnerable packages in 1.4394s\n─────────────────────────────────────────────────────────\nPackage: jinja2 Version: 2.4.1\nFixed version: 3.1.4\nVuln ID: GHSA-h75v-3vvj-5mfj Aliases: ['CVE-2024-34064']\nLocation: ./tests/poetry.lock\n─────────────────────────────────────────────────────────\nPackage: jinja2 Version: 2.4.1\nFixed version: 3.1.4\nVuln ID: GHSA-h75v-3vvj-5mfj Aliases: ['CVE-2024-34064']\nLocation: ./tests/requirements.txt\n```\n\n### Options\n\n- `--dont-fail` or `-d`: Don't return a non-zero exit code if vulnerabilities are found.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohaquinlop%2Fimmunipy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frohaquinlop%2Fimmunipy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frohaquinlop%2Fimmunipy/lists"}