{"id":44911673,"url":"https://github.com/good-tools/jdserialize","last_synced_at":"2026-02-18T00:20:18.464Z","repository":{"id":65281214,"uuid":"588998844","full_name":"good-tools/jdserialize","owner":"good-tools","description":"Interpret Java serialized objects","archived":false,"fork":false,"pushed_at":"2023-01-14T18:37:25.000Z","size":71,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-14T02:57:21.990Z","etag":null,"topics":["analysis","deserialize","java","reverse-engineering","security"],"latest_commit_sha":null,"homepage":"","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/good-tools.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}},"created_at":"2023-01-14T18:25:32.000Z","updated_at":"2023-11-28T14:48:19.000Z","dependencies_parsed_at":"2023-01-16T05:45:16.598Z","dependency_job_id":null,"html_url":"https://github.com/good-tools/jdserialize","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/good-tools/jdserialize","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/good-tools%2Fjdserialize","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/good-tools%2Fjdserialize/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/good-tools%2Fjdserialize/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/good-tools%2Fjdserialize/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/good-tools","download_url":"https://codeload.github.com/good-tools/jdserialize/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/good-tools%2Fjdserialize/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29563462,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T21:50:49.831Z","status":"ssl_error","status_checked_at":"2026-02-17T21:46:15.313Z","response_time":100,"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":["analysis","deserialize","java","reverse-engineering","security"],"created_at":"2026-02-18T00:20:17.953Z","updated_at":"2026-02-18T00:20:18.459Z","avatar_url":"https://github.com/good-tools.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jdserialize\n\njdserialize is a JavaScript port of https://github.com/unsynchronized/jdeserialize with an added object normalizer for easier data interpretation.\n\nDemo it on [good.tools](https://good.tools/java-deserialize).\n\n## Usage\n\n```javascript\nimport { deserialize, normalize, print } from \"@goodtools/jdserialize\";\n\nconst buf = Buffer.from([\n  0xac, 0xed, 0x00, 0x05, 0x73, 0x72, 0x00, 0x1a, 0x74, 0x6f, 0x6f, 0x6c, 0x73,\n  0x2e, 0x67, 0x6f, 0x6f, 0x64, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x2e, 0x42,\n  0x79, 0x74, 0x65, 0x41, 0x72, 0x72, 0x61, 0x79, 0x42, 0xdd, 0xd3, 0x7e, 0xd6,\n  0xd6, 0xb2, 0x45, 0x02, 0x00, 0x01, 0x5b, 0x00, 0x05, 0x76, 0x61, 0x6c, 0x75,\n  0x65, 0x74, 0x00, 0x02, 0x5b, 0x42, 0x78, 0x70, 0x75, 0x72, 0x00, 0x02, 0x5b,\n  0x42, 0xac, 0xf3, 0x17, 0xf8, 0x06, 0x08, 0x54, 0xe0, 0x02, 0x00, 0x00, 0x78,\n  0x70, 0x00, 0x00, 0x00, 0x03, 0x01, 0x02, 0x03,\n]);\n\nconst deserialized = deserialize(buf);\n```\n\nThe example serialized object was created using\n```java\npackage tools.good.model;\n\nimport java.io.Serializable;\n\npublic class ByteArray implements Serializable {\n    public byte[] value;\n}\n```\n\n```java\nByteArray obj = new ByteArray();\nobj.value = new byte[]{ 0x01, 0x02, 0x03 };\n\n// serialize obj\n```\n\n### Normalization\n\n```javascript\nconst normalized = normalize(deserialized.objects);\nconst serialized = JSON.stringify(normalized); // [{\"value\": [1, 2, 3]}]\n```\n\n```json\n[\n  {\n    \"value\": [\n      1,\n      2,\n      3\n    ]\n  }\n]\n```\n\n### Class Dump\n```javascript\nconst classDump = print(deserialized.classes);\nconsole.log(classDump);\n```\n\n```java\n// handle: 7e0000\nclass tools.good.model.ByteArray implements java.io.Serializable {\n  static final long serialVersionUID = 4818239718080033349L;\n\n  byte[] value;\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgood-tools%2Fjdserialize","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgood-tools%2Fjdserialize","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgood-tools%2Fjdserialize/lists"}