Is there a specific way to know if the file that we download through a web server (e.g.: Java) can be verified through Wireshark?
I want to check if the file is working perfectly from internal and external site.
Is there a specific way to know if the file that we download through a web server (e.g.: Java) can be verified through Wireshark?
I want to check if the file is working perfectly from internal and external site.
If you want to check that file is the same on the server and on the client, you'd better use some hashing function and compare hashes. You may use md5sum
or sha1sum
from coreutils
package on linux to get MD5 or SHA-1 hashes respectively or use this answer to get them on Windows.