{"id":29795520,"url":"https://github.com/ubisoft/vulnmine","last_synced_at":"2025-07-28T04:11:27.067Z","repository":{"id":37070795,"uuid":"98057263","full_name":"ubisoft/vulnmine","owner":"ubisoft","description":"Vulnmine searches for vulnerable hosts using MS SCCM host / software inventory data with NIST NVD Vulnerability feed data.","archived":false,"fork":false,"pushed_at":"2023-07-06T21:15:16.000Z","size":42669,"stargazers_count":38,"open_issues_count":6,"forks_count":13,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-04-29T23:00:11.902Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/ubisoft.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.txt","contributing":"docs/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-07-22T20:52:11.000Z","updated_at":"2024-02-18T10:18:06.000Z","dependencies_parsed_at":"2023-07-13T18:17:20.213Z","dependency_job_id":null,"html_url":"https://github.com/ubisoft/vulnmine","commit_stats":null,"previous_names":["lorgor/vulnmine"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ubisoft/vulnmine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubisoft%2Fvulnmine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubisoft%2Fvulnmine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubisoft%2Fvulnmine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubisoft%2Fvulnmine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ubisoft","download_url":"https://codeload.github.com/ubisoft/vulnmine/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubisoft%2Fvulnmine/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267459983,"owners_count":24090794,"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","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"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":[],"created_at":"2025-07-28T04:11:19.343Z","updated_at":"2025-07-28T04:11:27.057Z","avatar_url":"https://github.com/ubisoft.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vulnmine\n\nVulnmine uses simple Machine Learning to mine Microsoft's **SCCM** host and software inventory data for **vulnerable 3rd-party software**.\n\n**NIST's NVD** vulnerability feeds are pulled in on a daily basis to determine the latest vulnerabilities to search for.\n\n## Running Vulnmine\n\nThere is a public container with test data ready for use on Docker Hub: [lorgor/vulnmine](https://hub.docker.com/r/lorgor/vulnmine)\n\nTo download and run the Vulnmine container:\n\n```bash\ndocker run -it --rm lorgor/vulnmine bash\n\npython vulnmine/__main__.py -a 'all'\n```\n\n### Commandline Start Options\n\nHere are the possible options when starting Vulnmine:\n\n    vulnmine.py  [-h] [--version] [-l Logging] [-a Action] [-y Years] [-w Workdir]\n\n| Parameter | Use |\n| --------- | --- |\n| -h | Help information |\n| -help |  |\n| | |\n| -l | Set desired verbosity for logging: |\n| --loglevel | _debug_ _info_ _warning_ _error_ _critical_ |\n| | |\n| -a | Desired action to perform: |\n| --action | _rd_sccm_hosts:_   Read SCCM host data|\n| | _rd_sccm_sft:_   Read SCCM software data |\n| | _rd_cpe:_   Download / input NIST CPE Vendor-Product dictionary |\n| | _rd_cve:_   Download / input NIST CVE Vulnerability feed data |\n| | _match_vendors:_ |\n| |    Match vendors from SCCM \"Add-Remove\" registry data to NVD CPE data |\n| | _match_sft:_ |\n| |    Match software from SCCM \"Add-Remove\"registry data to NVD CPE data |\n| | _upd_hosts_vulns:_  Determine vulnerabilities for each host in SCCM |\n| | _output_stats:_  Output the results |\n| | _all:_  Run all the above in sequence |\n| | |\n| -y | Number of years to download. There is one CVE feed file for each year's data.|\n| --years | |\n| | |\n| -w | Specifies work directory|\n| --workdir | |\n\n### Production mode\n\nIf no parameters are specified, then Vulnmine runs in *production mode*:\n\n* The main vulnmine.py starts and sets up an endless schedule loop.\n* The loop fires once daily by default.\n* Each day Vulnmine:\n    - Reads the SCCM inventory data files (UTF16 csv format) in the its CSV directory.\n    - Downloads updated NVD feed files.\n    - Processes the SCCM and NVD data.\n    - Produces output JSON files into the same csv directory.\n\n## Configuring Vulnmine\n\nVulnmine can be configured using .INI files. (This uses the standard python ConfigParser library.)\n\nThe default .INI file is in **vulnmine/vulnmine_data/vulnmine_defaults.ini**.\n\nUsers can override default values. Vulnmine looks for the following file: **data/vulnmine.ini**.\n\nHere is an example:\n\n```\n[User]\n# Section must start with \"[User]\"\n\n# Override Plugin default values\n# ===================================\n\n# Plugins will load from \"data/my_plugins\"\nPlugins: data/my_plugins/\n\n# Turn off plugin function completely\nActivate_plugins: No\n```\n\n## Where to get more information\n\nVulnmine is on Github: \u003chttps://github.com/ubisoftinc/vulnmine\u003e\n\nThe docs directory has the full Vulnmine documentation.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fubisoft%2Fvulnmine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fubisoft%2Fvulnmine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fubisoft%2Fvulnmine/lists"}