{"id":22793554,"url":"https://github.com/royrusso/probus","last_synced_at":"2026-02-19T05:00:59.850Z","repository":{"id":260514123,"uuid":"878235330","full_name":"royrusso/probus","owner":"royrusso","description":"A FAST network scanner that identifies security vulnerabilities in your network and alerts you to new ones as they arise.","archived":false,"fork":false,"pushed_at":"2024-12-27T22:17:28.000Z","size":1462,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-13T14:44:11.846Z","etag":null,"topics":["network-analysis","network-scanner","nmap","nmap-scanning","nmap-ui","os-identifier","port-scanner","service-discovery","vulnerability-detection","vulnerability-scanners"],"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/royrusso.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2024-10-25T02:30:37.000Z","updated_at":"2025-02-01T23:18:16.000Z","dependencies_parsed_at":"2024-10-31T19:19:41.829Z","dependency_job_id":"9dd2e47d-8bfb-4392-91db-0d6b23638dbe","html_url":"https://github.com/royrusso/probus","commit_stats":null,"previous_names":["royrusso/net-pretzel","royrusso/probus","royrusso/minerva"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/royrusso/probus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royrusso%2Fprobus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royrusso%2Fprobus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royrusso%2Fprobus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royrusso%2Fprobus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/royrusso","download_url":"https://codeload.github.com/royrusso/probus/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/royrusso%2Fprobus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29604095,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T04:38:07.383Z","status":"ssl_error","status_checked_at":"2026-02-19T04:35:50.016Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["network-analysis","network-scanner","nmap","nmap-scanning","nmap-ui","os-identifier","port-scanner","service-discovery","vulnerability-detection","vulnerability-scanners"],"created_at":"2024-12-12T03:27:05.536Z","updated_at":"2026-02-19T05:00:59.835Z","avatar_url":"https://github.com/royrusso.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# Probus - Network Scanner\n\n[![codecov](https://codecov.io/github/royrusso/probus/graph/badge.svg?token=B972KDOOOB)](https://codecov.io/github/royrusso/probus)\n![Tests](https://img.shields.io/github/actions/workflow/status/royrusso/probus/pytests_codecov.yml?label=Tests)\n![License](https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square)\n\n**This project is in early development!**\n\nA network scanner with an attractive UI, that identifies security vulnerabilities in your network and alerts you to new ones as they arise. Scans are performed on a schedule or on-demand.\n\n[Introduction](#bulb-introduction) \\* [Key Features](#dart-key-features) \\* [Quickstart](#zap-quickstart) \\* [Development](#dizzy-development) \\* [Contributing](#+1-contributing) \\* [Contact](#incoming_envelope-contact)\n\n\u003c/div\u003e\n\n## :dart: Key Features:\n\n- **Network Scanner:** Asynchronously scans your network for hosts and open ports.\n- **Scheduled Scans:** Scans your network on a schedule.\n- **Vulnerability Scanner:** Identifies security vulnerabilities in your network on a per-device basis.\n- **Scan and Vulnerability History:** Keeps a history of scans and vulnerabilities identified.\n- **Alerting:** Alerts you to new vulnerabilities as they arise, new devices added to your network, given a network range.\n- **Platform agnostic**: Avilable as a docker container.\n\n## :zap: Quickstart\n\nIn order to run the commands described below, you need:\n\n- [Docker](https://www.docker.com/)\n- [Docker Compose](https://docs.docker.com/compose/)\n\n### Running\n\n1. Linux Installs: Run `docker compose up` to start the application.\n2. Mac and Windows Installs: Run `NETWORK_MODE=bridge docker compose up` to start the application.\n\nUI: [http://localhost:8080](http://localhost:8080)\n\nAPI: [http://localhost:8000/docs](http://localhost:8000/docs)\n\n\u003e **Note:** The `NETWORK_MODE=bridge` environment variable is required for Mac and Windows. This is because the default network mode for Docker Compose is `host`, which is not supported on Mac and Windows and Probus requires access to the host network to scan the network.\n\nAlternatively, you can create a `.env` file in the root of the project with the following content:\n\n```bash\nNETWORK_MODE=bridge\n```\n\n## :dizzy: Development\n\nPlease read the [DEVELOPMENT.md](DEVELOPMENT.md) file for more information on how to run this project locally and contribute.\n\n## :+1: Contributing\n\nPlease read the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information on how to contribute to this project.\n\n## :incoming_envelope: Contact\n\n- Use **GitHub Issues** for code-related issues.\n\n## :file_cabinet: License\n\nProbus is licensed under the [Apache License 2.0](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froyrusso%2Fprobus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froyrusso%2Fprobus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froyrusso%2Fprobus/lists"}