{"id":24228750,"url":"https://github.com/blacha/memoryscanner","last_synced_at":"2026-05-26T23:33:00.101Z","repository":{"id":37795353,"uuid":"490213667","full_name":"blacha/memoryscanner","owner":"blacha","description":"Multi threaded memory scanner for nodejs","archived":false,"fork":false,"pushed_at":"2023-03-06T18:12:20.000Z","size":267,"stargazers_count":1,"open_issues_count":6,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-16T01:57:26.726Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/blacha.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-05-09T09:19:14.000Z","updated_at":"2025-07-28T15:48:12.000Z","dependencies_parsed_at":"2024-10-22T23:51:35.039Z","dependency_job_id":null,"html_url":"https://github.com/blacha/memoryscanner","commit_stats":{"total_commits":21,"total_committers":1,"mean_commits":21.0,"dds":0.0,"last_synced_commit":"7df5f75f5cc4c2e6d52ab1ba920bbef4eb07e8e7"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/blacha/memoryscanner","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacha%2Fmemoryscanner","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacha%2Fmemoryscanner/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacha%2Fmemoryscanner/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacha%2Fmemoryscanner/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blacha","download_url":"https://codeload.github.com/blacha/memoryscanner/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blacha%2Fmemoryscanner/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33543973,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"ssl_error","status_checked_at":"2026-05-26T15:22:15.568Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2025-01-14T11:32:37.195Z","updated_at":"2026-05-26T23:33:00.078Z","avatar_url":"https://github.com/blacha.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# memoryscanner\n\n\nMultithreaded process memory scanner\n\n```typescript\nimport { findProcess } from 'memoryscanner';\n\nconst proc = findProcess('process_name');\n\n/* Scan a process with multiple threads looking for a pattern of bytes*/\nconst ret = await proc.scan('01 02 ?? f3 a4');\n/**\n * List of offsets for where the pattern occurs\n * [\n *   0x4bffa03d\n *   0x5f0763fa\n *   0x1030fa61\n * ]\n */\n\n```\n\nAdvanced usage, scan with byte criteria\n\n```typescript\nconst ret = await proc.scan('01 02 ?? f3 a4 ?? ?? ?? ?? ', [\n    // byte 2 '??' is a u8 between 0x01 and 0x20\n    { offset: 0x02, min: 1, max: 32, format: 'u8' },\n    // bytes 5-8 is a little endian 32bit number between 1000, and 5,000,000\n    { offset: 0x05, min: 1_000, max: 5_000_000, format: 'lu32' },\n])\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblacha%2Fmemoryscanner","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblacha%2Fmemoryscanner","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblacha%2Fmemoryscanner/lists"}