{"id":13813205,"url":"https://github.com/SpriteOvO/sigmatch","last_synced_at":"2025-05-14T22:32:10.531Z","repository":{"id":39922391,"uuid":"393101694","full_name":"SpriteOvO/sigmatch","owner":"SpriteOvO","description":"✨ Modern C++ 20 signature match / search library","archived":false,"fork":false,"pushed_at":"2024-08-21T10:57:06.000Z","size":53,"stargazers_count":115,"open_issues_count":2,"forks_count":19,"subscribers_count":6,"default_branch":"dev","last_synced_at":"2025-05-07T09:54:21.644Z","etag":null,"topics":["assembler","binary","binary-analysis","compile-time","cpp","cpp-library","cpp20","cpp20-lib","cpp20-library","header-only","library","match","pattern","reverse-engineering","search","security","signature"],"latest_commit_sha":null,"homepage":"","language":"C++","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/SpriteOvO.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","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":"2021-08-05T16:01:25.000Z","updated_at":"2025-04-11T13:54:28.000Z","dependencies_parsed_at":"2024-03-07T11:30:27.625Z","dependency_job_id":"994deb2e-d1f7-479b-8287-bf9fe80037f9","html_url":"https://github.com/SpriteOvO/sigmatch","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpriteOvO%2Fsigmatch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpriteOvO%2Fsigmatch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpriteOvO%2Fsigmatch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SpriteOvO%2Fsigmatch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SpriteOvO","download_url":"https://codeload.github.com/SpriteOvO/sigmatch/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254239889,"owners_count":22037786,"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":["assembler","binary","binary-analysis","compile-time","cpp","cpp-library","cpp20","cpp20-lib","cpp20-library","header-only","library","match","pattern","reverse-engineering","search","security","signature"],"created_at":"2024-08-04T04:01:07.352Z","updated_at":"2025-05-14T22:32:05.468Z","avatar_url":"https://github.com/SpriteOvO.png","language":"C++","readme":"\u003ch1 align=\"center\"\u003e\n    \u003ca href=\"https://github.com/SpriteOvO/sigmatch\"\u003e\u003cimg src=\"/assets/logo.svg\" alt=\"logo\" width=\"128\"\u003e\u003c/a\u003e\n    \u003cbr\u003e\n    sigmatch\n\u003c/h1\u003e\n\u003cp align=\"center\"\u003eModern C++ 20 Signature Match / Search Library\u003c/p\u003e\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/SpriteOvO/sigmatch/actions/workflows/windows.yml\"\u003e\n        \u003cimg src=\"https://github.com/SpriteOvO/sigmatch/actions/workflows/windows.yml/badge.svg\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/SpriteOvO/sigmatch/releases\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/v/release/SpriteOvO/sigmatch?include_prereleases\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/SpriteOvO/sigmatch/compare\"\u003e\n        \u003cimg src=\"https://img.shields.io/badge/PRs-welcome-brightgreen.svg\"/\u003e\n    \u003c/a\u003e\n    \u003ca href=\"/LICENSE\"\u003e\n        \u003cimg src=\"https://img.shields.io/badge/license-Apache--2.0-yellow.svg\"/\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\n## ✨ Features\n\n- 🍃 Header-only, no dependencies, no exceptions.\n- ☕ Compile-time literal signature string parsing.\n- ❄️ Supports full-byte wildcards (`??` or `**`) and semi-byte wildcards (`1?` or `*B`).\n- 🚀 Supports blocking (chunking) and multi-threaded for fast search.\n- 🎯 Supports searching in the current process, external processes and files.\n- 🍄 Customizable `reader` and `target` allow you to search on more targets (e.g. network traffic packets).\n\n## 🌠 Examples\n\nA quick example:\n\n```cpp\nusing namespace sigmatch_literals;\n\nsigmatch::this_process_target target;\nsigmatch::search_result result = target.in_module(\"**module_name**\").search(\"1A ?? 3C ** 5* ?F\"_sig);\nfor (const std::byte *address : result.matches()) {\n    std::cout \u003c\u003c \"matched: \" \u003c\u003c address \u003c\u003c '\\n';\n}\n```\n\nSee [/examples](/examples) for more.\n\n## 🍰 Todo\n\n- [ ] Complete CI for testing and documentation deployment.\n- [ ] Host the documentation on GitHub Pages.\n- [ ] Statistical tests coverage.\n- [ ] Complete benchmarks.\n- [ ] Test compilers other than **MSVC**.\n- [ ] Implement class `executable_file_target`.\n- [ ] Port to **Linux**.\n\n## 📜 License\n\n**sigmatch** is licensed under the [Apache-2.0 License](/LICENSE).\n","funding_links":[],"categories":["C++"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSpriteOvO%2Fsigmatch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FSpriteOvO%2Fsigmatch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FSpriteOvO%2Fsigmatch/lists"}