Hi, is there a way to see or classify the NIM version in a NIM executable (binary) which was compiled without debugging symbols. With or without stripped linker option.
e.g. nim c -d:release --opt:size [--passL:-s] .hello_world.nim
thx, Holger
Use magic NimVersion constant.
echo(NimVersion)
I am working on an IDA plugin to help malware researchers to analyze NIM based malware and wondering if there is an easier way than profiling certain features to find the version of a NIM binary.
@gabbhack nope, that only works at compile time afaik, but pls correct me.