Heres a File Comparison Tool i wrote to compare two different programs. Its does a byte by byte and char by char comparison. It also checks the two files md5 and sha512 hashes and displays them in base64. As well as checking the programs entry points and checks for EOF data. I still need to add an entropy check. A trim nulls option an extract overlay option and a trim nulls option. As well as various other odds and ends.
Any comments, criticism, or suggestions would be nice.
Its to compare two files to see how similar they are. Say you are writing a hack that gets detected and you wanna see how similar your new hack is. It will tell you. Once the entropy check is in it will be able to tell you if a file is packed as well.
It didnt take to long. Its about 500 lines of code right now.
Originally Posted by wtfiwantthatname
Its to compare two files to see how similar they are. Say you are writing a hack that gets detected and you wanna see how similar your new hack is. It will tell you. Once the entropy check is in it will be able to tell you if a file is packed.
Okay thanks! Now i get it!
++++
mmhmm ok ill test
No sorry! Always get a error when i choose a .exe file........
U need this in your code to prevent errors:
Code:
Try
msgbox("SUCCESS")
Catch ex As Exception
Msgbox("Sorry error")
End Try
Originally Posted by hejsan1
No sorry! Always get a error when i choose a .exe file........
U need this in your code to prevent errors:
Code:
Try
msgbox("SUCCESS")
Catch ex As Exception
Msgbox("Sorry error")
End Try
Did you select two exe's? Before you clicked compare?
What OS and what frame work do you have installed?
Edit: You need the .net framework 3.5 SP 1 for this to work.
hmm this could come in handy sometime
Originally Posted by wtfiwantthatname
Did you select two exe's? Before you clicked compare?
What OS and what frame work do you have installed?
Edit: You need the .net framework 3.5 SP 1 for this to work.
Everything installed! But when I choose first exe i got a error!
lol, can u PM me the code plz, i wanna add this to my multitool (with creds to you of course)
Very nice, how did you make this iv been trying but i can never get it to work.