0

(To be honest, I don't know much about programming, please tell me if this is the wrong place to ask!)

My question is how to get a string dump like this out of an executable / dll. Everything I tried didn't get me a dump like the linked one with those hashes and the bit of help I got was not exactly helpful for someone like me... Which program should be used for this and how exactly do I have to do it?

I'd be grateful for every help I get!

cbrgmr
  • 21
  • 1
  • 3
  • 1
    is this what you are looking for ? https://stackoverflow.com/questions/1999923/best-dll-symbols-dump-utility – Mohamed Ali JAMAOUI Aug 20 '17 at 15:31
  • Not quiet :/ Basically I search for a way to get those CRC32 hashes connected to their strings out of an exe / dll – cbrgmr Aug 20 '17 at 15:40
  • do you already have a way on how to dump "the strings" out of the executables? if so, you then need to iterate on them line by line and compute the CRC32 hash using a programming/scripting language like python or bash. For instance in linux there is the command `crc32` that computes the crc32 hash for a file.. – Mohamed Ali JAMAOUI Aug 20 '17 at 15:51
  • here's a small python script that computes crc32 for a file: https://gist.github.com/matteomattei/160c1198682e92f6f2a0 – Mohamed Ali JAMAOUI Aug 20 '17 at 15:55

0 Answers0