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 |
---|---|---|---|
torbox053-20231217.zip | TorBox menu | EB1182708DD423F6169E134A1E64960AF7F281C1AC1C4A2A3C63CAE1F4B18770 | Released on the 17.12.23 |
torbox-20231217-v053.gz | TorBox image | FD0F3EEC3CDEE33755C6B8AD8324444FB1D74188543E755D52608185D94A619E | Released on the 17.12.23 |
torbox053-20230709.zip | TorBox menu | DEE0B359DCCAEC23B2E063C6833661E3C5D6405DA678C72793724CF70AAF30B4 | depreciated |
torbox-20230709-v053.gz | TorBox image | FDF1F22424B3F41C0DBA2155D268A6A1E93E961E1C84C341BF732D749B53486E | depreciated |
torbox052-20230310.zip | TorBox menu | A63580B8CF94E76E821BC775F8411C17BADDF264B729338DC2CCB387DC331D6D | depreciated |
torbox-20230310-v052.gz | TorBox image | 6B536556C5B1C9C652CB5A02C0611B47DDDA5FB716368CF793F043BCCDD07C4A | Released on the 10.03.23 depreciated |
torbox052-20230102.zip | TorBox menu | 6A359792C96FD01F3CCE1D7113BAF4488A44457729D105662309BD6F9D8C9B8B | depreciated |
torbox-20230102-v052.gz | TorBox image | 53E8683EAECCC81F125E78BA176069914F83B4F0CCA1C56691814966C3A45318 | Updated on the 16.02.23 depreciated |
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 |
torbox-20220703-v050.gz | TorBox image | 436B614A8128B4ADAA26152880E1E375293DBF7466BE8DD88ACEACA0409AF9B6 | depreciated |
torbox-20210802-v042.gz | TorBox image | 45CBEC27959A2FB75BE813F6FE489E5B399606368ECB4020DD91109559F63C16 | 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.