{"id":17263397,"url":"https://github.com/0vercl0k/udmp-parser-rs","last_synced_at":"2025-08-04T06:13:56.842Z","repository":{"id":187344584,"uuid":"676751782","full_name":"0vercl0k/udmp-parser-rs","owner":"0vercl0k","description":"A Rust crate for parsing Windows user minidumps.","archived":false,"fork":false,"pushed_at":"2024-05-01T23:44:50.000Z","size":1904,"stargazers_count":40,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-15T01:24:14.801Z","etag":null,"topics":["crate","minidump","rust","rust-lang"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/0vercl0k.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2023-08-09T23:47:56.000Z","updated_at":"2024-12-30T17:44:52.000Z","dependencies_parsed_at":"2024-10-15T07:56:42.020Z","dependency_job_id":"ba8fbb57-3e18-4299-9825-6b7d78a4005a","html_url":"https://github.com/0vercl0k/udmp-parser-rs","commit_stats":null,"previous_names":["0vercl0k/udmp-parser-rs"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/0vercl0k/udmp-parser-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0vercl0k%2Fudmp-parser-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0vercl0k%2Fudmp-parser-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0vercl0k%2Fudmp-parser-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0vercl0k%2Fudmp-parser-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0vercl0k","download_url":"https://codeload.github.com/0vercl0k/udmp-parser-rs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0vercl0k%2Fudmp-parser-rs/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268657452,"owners_count":24285506,"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-08-04T02:00:09.867Z","response_time":79,"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":["crate","minidump","rust","rust-lang"],"created_at":"2024-10-15T07:56:25.017Z","updated_at":"2025-08-04T06:13:56.799Z","avatar_url":"https://github.com/0vercl0k.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# udmp-parser: A Rust crate for parsing Windows user minidumps\n[![Crates.io](https://img.shields.io/crates/v/udmp-parser.svg)](https://crates.io/crates/udmp-parser)\n[![Documentation](https://docs.rs/udmp-parser/badge.svg)](https://docs.rs/udmp-parser/)\n![Build status](https://github.com/0vercl0k/udmp-parser-rs/workflows/Builds/badge.svg)\n\nThis is a cross-platform crate that parses Windows user [minidump](https://docs.microsoft.com/en-us/windows/win32/debug/minidump-files) dumps that you can generate via WinDbg or via right-click **Create memory dump file** in the Windows task manager.\n\n![parser](https://github.com/0vercl0k/udmp-parser-rs/raw/main/pics/parser.gif)\n\nThe library supports Intel 32-bit / 64-bit dumps and provides read access to things like:\n\n- The thread list and their context records,\n- The virtual memory,\n- The loaded modules.\n\nCompiled binaries are available in the [releases](https://github.com/0vercl0k/udmp-parser-rs/releases) section.\n\n## Parser\nThe [parser](src/examples/parser.rs) application is a small utility to show-case how to use the library and demonstrate its features. You can use it to dump memory, list the loaded modules, dump thread contexts, dump a memory map various, etc.\n\n![parser-usage](https://github.com/0vercl0k/udmp-parser-rs/raw/main/pics/parser-usage.gif)\n\nHere are the options supported:\n```text\nparser.exe [-a] [-mods] [-mem] [-t [\u003cTID\u003e|main]] [-dump \u003caddr\u003e] \u003cdump path\u003e\n\nExamples:\n  Show all:\n    parser.exe -a user.dmp\n  Show loaded modules:\n    parser.exe -mods user.dmp\n  Show memory map:\n    parser.exe -mem user.dmp\n  Show all threads:\n    parser.exe -t user.dmp\n  Show thread w/ specific TID:\n    parser.exe -t 1337 user.dmp\n  Show foreground thread:\n    parser.exe -t main user.dmp\n  Show a memory page at a specific address:\n    parser.exe -dump 0x7ff00 user.dmp\n```\n\n# Authors\n\n* Axel '[@0vercl0k](https://twitter.com/0vercl0k)' Souchet\n\n# Contributors\n\n[ ![contributors-img](https://contrib.rocks/image?repo=0vercl0k/udmp-parser-rs) ](https://github.com/0vercl0k/udmp-parser-rs/graphs/contributors)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0vercl0k%2Fudmp-parser-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0vercl0k%2Fudmp-parser-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0vercl0k%2Fudmp-parser-rs/lists"}