How to convert a x86 exe file to the Assembly language
objdump -D -M intel your_file.exe > output.asm
-D means to disassebmly the whole file
-M intel sets the format of the assembly to Intel
objdump -D -M intel your_file.exe > output.asm
-D means to disassebmly the whole file
-M intel sets the format of the assembly to Intel