{"id":20696366,"url":"https://github.com/pascalvault/lazarus_unpacker","last_synced_at":"2026-02-11T01:03:27.797Z","repository":{"id":197039356,"uuid":"697875964","full_name":"PascalVault/Lazarus_Unpacker","owner":"PascalVault","description":"PV_Unpacker - simple pure Pascal library to unpack various archives (ZIP, RAR, LZMA, TAR...)","archived":false,"fork":false,"pushed_at":"2023-11-20T12:29:37.000Z","size":296,"stargazers_count":17,"open_issues_count":0,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-08-04T06:54:33.239Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Pascal","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/PascalVault.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,"zenodo":null}},"created_at":"2023-09-28T16:47:07.000Z","updated_at":"2024-10-15T08:36:37.000Z","dependencies_parsed_at":"2025-06-09T09:44:09.100Z","dependency_job_id":null,"html_url":"https://github.com/PascalVault/Lazarus_Unpacker","commit_stats":null,"previous_names":["pascalvault/lazarus_unpacker"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/PascalVault/Lazarus_Unpacker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PascalVault%2FLazarus_Unpacker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PascalVault%2FLazarus_Unpacker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PascalVault%2FLazarus_Unpacker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PascalVault%2FLazarus_Unpacker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PascalVault","download_url":"https://codeload.github.com/PascalVault/Lazarus_Unpacker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PascalVault%2FLazarus_Unpacker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29323968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T00:34:26.354Z","status":"ssl_error","status_checked_at":"2026-02-11T00:34:09.494Z","response_time":65,"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":"2024-11-17T00:13:41.932Z","updated_at":"2026-02-11T01:03:27.768Z","avatar_url":"https://github.com/PascalVault.png","language":"Pascal","readme":"# Lazarus_Unpacker\nPV_Unpacker - simple pure Pascal library to unpack various archives (ZIP, RAR, LZMA, TAR...)\n\nSee also:\nhttps://github.com/PascalVault/Lazarus_Packer\n\n## Demo application ##\n![image info](./demo.png)\n\n## Supported formats (46+) ##\n- .ZIP, .JAR, .CBZ, .DOCX (store, deflate, lzma, bzip2)\n- .RAR, .CBR (version 4 and 5; store)\n- .TAR, .CBT\n- .ARJ (store, methods: 1-3)\n- .LZH, .LHA (store, lh1, lh4, lh5, lh6, lh7, lhx)\n- .ZOO (store, lzh)\n- .AR (store, lh4, lh5)\n- BlackHole .BH (store, deflate)\n- .BIG\n- BGA .BZA/.GZA\n- .CPIO\n- .DPK\n- .DRS\n- .FTG\n- .GZIP, .GZ\n- .BZIP2, .BZ2\n- .HA\n- .LBR\n- .LZ, .LZMA\n- .PCK\n- Homm3 .LOD\n- Quake .PAK\n- Doom .WAD\n- Quake .WAD\nand more!\n\n## Unsupported ###\n- encrypted ZIP, RAR archives\n- RAR files that use method different than \"store\"\n- ARJ files that use method \"fastest\"\n\n## Comming soon ##\n- progress bar\n- integrity verification\n\n## Usage ###\n    use PV_Unpacker;\n    ...\n    var Unp: TUnpacker;\n    begin\n      Unp := TUnpacker.Create(OpenDialog1.Filename);\n    \n      if Unp.GetFormat = '' then ShowMessage('Unsupported');\n    \n      for i:=0 to Unp.Count-1 do begin\n        Memo1.Lines.Add('name ' + Unp.GetName(i) + ', crc ' + IntToHex( Unp.GetCRC(i)) + ', date ' +  DateToStr(Unp.GetDate(i)) + ', packed size ' + IntToStr(Unp.GetPackedSize(i)) );\n        if Unp.CanUnpack(i) then Unp.Extract(i, Unp.GetName(i) );        \n      end;\n      Unp.Free;\n    end;  \n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpascalvault%2Flazarus_unpacker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpascalvault%2Flazarus_unpacker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpascalvault%2Flazarus_unpacker/lists"}