{"id":28210698,"url":"https://github.com/kakwa/cpe-search","last_synced_at":"2026-01-25T00:32:39.433Z","repository":{"id":285787588,"uuid":"959201624","full_name":"kakwa/cpe-search","owner":"kakwa","description":"Search Tool for CPE (Common Platform Enumeration) Filters","archived":false,"fork":false,"pushed_at":"2026-01-18T21:55:08.000Z","size":82,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-19T07:11:11.634Z","etag":null,"topics":["common-platform-enumeration","cpe","cve","cve-search","html","national-vulnerability-database","nist","nvd","perl","security","xslt"],"latest_commit_sha":null,"homepage":"https://kakwa.github.io/cpe-search/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kakwa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-04-02T12:26:46.000Z","updated_at":"2026-01-18T21:55:12.000Z","dependencies_parsed_at":"2025-08-07T02:13:49.468Z","dependency_job_id":"2d89f08a-c3ad-470c-b65d-4fac777fd2fc","html_url":"https://github.com/kakwa/cpe-search","commit_stats":null,"previous_names":["kakwa/cpe-search"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kakwa/cpe-search","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakwa%2Fcpe-search","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakwa%2Fcpe-search/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakwa%2Fcpe-search/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakwa%2Fcpe-search/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kakwa","download_url":"https://codeload.github.com/kakwa/cpe-search/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kakwa%2Fcpe-search/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28739876,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"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":["common-platform-enumeration","cpe","cve","cve-search","html","national-vulnerability-database","nist","nvd","perl","security","xslt"],"created_at":"2025-05-17T17:10:27.376Z","updated_at":"2026-01-25T00:32:39.428Z","avatar_url":"https://github.com/kakwa.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CPE Product Database Search\n\n[![CPE DB Update](https://github.com/kakwa/cpe-search/actions/workflows/publish.yml/badge.svg)](https://github.com/kakwa/cpe-search/actions/workflows/publish.yml)\n\n\nCommon Platform Enumeration search tool: [https://kakwa.github.io/cpe-search/](https://kakwa.github.io/cpe-search/)\n\nThis project is a basic web interface to search and browse the CPE (Common Platform Enumeration) database and easily find CPE filters.\n\nThe raw CSV/JSON files (gziped) are available here:\n* [cpe-product-db.csv.gz](https://kakwa.github.io/cpe-search/cpe-product-db.csv.gz)\n* [cpe-product-db.json.gz](https://kakwa.github.io/cpe-search/cpe-product-db.json.gz)\n\n\nThe CPE Database is updated daily.\n\n# Self-Hosting\n\n## Dependencies\n\nIf you want to self-host the DB:\n\nInstall dependencies:\n```\nsudo apt install libwww-perl libtext-csv-encoded-perl\n```\n\n## CPE DB generation\n\nBuild the csv \u0026 json DBs:\n\n```shell\n./cpe-processing-script-rest.pl\n\n# Result directory\nls html/ \ncpe-product-db.csv.gz  cpe-product-db.json.gz  favicon.ico  index.html\n```\n\n## Testing\n\nOnce the DB is generated, run:\n\n```shell\n# Using Python's built-in server\npython3 -m http.server -d html/ 8080\n\n# website available at http://127.0.0.1:8080\n```\n\n## Production\n\nOptionally, get a NVD `API_KEY`, go to https://nvd.nist.gov/developers/request-an-api-key to get one.\n\nCopy over the content of `html/` into `\u003cyour_static_webroot\u003e`.\n\nInitialize CPE DBs:\n\n```bash\n# API_KEY is optional\nAPI_KEY='\u003cnvd api key\u003e' \\\nOUTPUT_DIR='\u003cyour_static_webroot\u003e' \\\n./cpe-processing-script-rest.pl\n```\n\nPublish `\u003cyour_static_webroot\u003e` using static hosting (`nginx`, `apache` or any other server).\n\nAdd the following cron to update it daily, tweak the minutes/hours:\n\n```cron\n12 3 * * * API_KEY='\u003cnvd api key\u003e' OUTPUT_DIR='\u003cyour_static_webroot\u003e' /path/to/cpe-processing-script-rest.pl\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkakwa%2Fcpe-search","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkakwa%2Fcpe-search","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkakwa%2Fcpe-search/lists"}