With the provided SHA-256 hashes, the verification of the integrity of the downloaded files can be tested. Here is the list of the SHA-256 hashes of our new and depreciated files:
Filename | Content | SHA-256 value | Status |
---|---|---|---|
torbox052-20230102.zip | TorBox menu | 157C7EA694466576F006ABD29005F99DDDDD8F31668CEA62366EE8753F79FD65 | |
torbox-20230102-v052.gz | TorBox image | 8EFFC8219ACCE3DCADCF57D767746DA177BB4189F420FFB2F3993BCAB393E43F | |
torbox051-20221020.zip | TorBox menu | 8CAD67271D57DA67D4CD67D80A2B3FFA5482BC473AA3BF1EFDAF7EF7F87EBF35 | depreciated |
torbox-20221020-v051.gz | TorBox image | 7DD4901A73E92D9EB9602DB9FD10A680AB1B5B59DC33734EDC017BD97B4E6438 | depreciated |
torbox051-20220719.zip | TorBox menu | 1E3F358D2F97342198C3DE40C779784C374B958E0C548023EDE7E4776C86475E | depreciated |
torbox-20220719-v051.gz | TorBox image | 7BBFB4402B1EC6242544C901FDEE8DCF8C9AA1014B0945B65CF3DBA516118FD7 | depreciated |
torbox050-20220703.zip | TorBox menu | AC0C73B4CB7BE186D51B32648111B40545BDD2E2457A7E12D86E76B9163A8C5E | depreciated |
torbox-20220703-v050.gz | TorBox image | 436B614A8128B4ADAA26152880E1E375293DBF7466BE8DD88ACEACA0409AF9B6 | depreciated |
torbox050-20220102.zip | TorBox menu | 303209444E39ECB91A37E95218D5DB796173CEA4E92E76CEE970B89A42EA370D | depreciated |
torbox-20220102-v050.gz | TorBox image | 0E1BA7FFD14AAAE5F0462C8293D95B62C3BF1D9E726E26977BD04772C55680D3 | depreciated |
torbox042-20210802.zip | TorBox menu | 0DC214685C268377DDC6B07AF8FF2D412658B4118E4B04DB24203EA852666D58 | depreciated |
torbox-20210802-v042.gz | TorBox image | 45CBEC27959A2FB75BE813F6FE489E5B399606368ECB4020DD91109559F63C16 | depreciated |
torbox041-20210613.zip | TorBox menu | D2434D1D6E09855B832B9AA6496DE28FC68AF4B10ADEFB4AD0A4EF1BBA19BEA1 | depreciated |
torbox-20210613-v041.gz | TorBox image | 4A42186A272668996E5EB8944BD214058FF1452899B49F006FFFD20D798AFB90 | depreciated |
torbox040-20210410.zip | TorBox menu | 0de24ea34447dc241862681c6803f2a737a9bbb240992a800ef98cf5f6a96364 | depreciated |
torbox-20210410-v040.gz | TorBox image | 10e0d2b4ba16ce7df1c6c93bfb18f14448d8c822f95999a2ca53a48781e76253 | depreciated |
torbox032-20200824.zip | TorBox menu | 577362278857ce246aa80ac89d505b35c3c8da5335817a298f7e2ac55e631ecc | depreciated |
torbox-20200824-v032.gz | TorBox image | 43b0f563c98ec3ec9145b3c0cacbcc49e8e40ea160961570d506702ea05c115d | depreciated |
How can I check the integrity of the downloaded files with the SHA-256 value?
Using the command line, there are several ways to check the integrity of the downloaded files. The simplest way is to generate the SHA-256 value of the downloaded file on your computer and to compare the generated value with the value above. These two values have to match; otherwise, the file is altered or corrupted. Here are the most common commands to generate SHA-256 values:
Operating system | Command |
---|---|
macOS | shasum -a 256 ~/Downloads/some-file.zip |
Windows (cmd.exe) | bash CertUtil -hashfile ~/Downloads/some-file.zip SHA256 |
Windows (Powershell) | powershell Get-FileHash -Path ~/Downloads/some-file.zip -Algorithm SHA256 |
Linux | sha256sum ~/Downloads/some-file.zip |
If you prefer a graphical user interface, QuickHash offers a convenient way to create and check the hash values, and is available for macOS, Windows and Linux.