I really need help with the hash value of the downloaded file

I amvery confused about the problem that the hash value of the file kali-linux -2024.4-installer-amd64.iso.torrent does not match the hash value of the official website for several time.I don’t know where the problem is,i don’t know the hash value has changed and hasn’t been updated or there is something wrong with my computer,and i really need help in this regard.Please help me!Thank you very much for your help!

Please share the command that you use to verify the hash.

2 Likes

Why are you posting the same question multiple times though?

1 Like

Win+R
cmd
cd
certutil -hashfile kali-linu-2024.4-installer-everything-amd64.iso.torrent SHA256

Sorry, I was too anxious when I encountered the problem. I hoped to be noticed and get help from others. But I didn’t expect that my plea for help would be seen so quickly, and kind-hearted and warm-hearted people were willing to assist me. Now I have a better understanding of the atmosphere here and feel less anxious. Because I have learned that there is a very good atmosphere and kind people here, and my problem was seen very quickly.

That’s not how to check SHA.
What you’re doing is checking SHA for the torrent file rather than downloaded ISO.

To get ISO file hash and check it, run this line in PowerShell:

(Get-FileHash -Algorithm SHA256 kali-linux-2024.4-installer-amd64.iso).Hash -eq "beca4f8fd7f58eda290812f538e1323d3ba1f1a34df4b203e85de4be42525bb6"

If the command says “True” the hash matches.
Note that you’re specifying ISO file, not torrent file.

2 Likes

Network participants download and share parts of files via torrent. This is how torrent works in general. It means that there is a possibility that someone redirected a modified part with malware inside. You need to check the file for malware.

3 Likes