Reader small image

You're reading from  Windows Malware Analysis Essentials

Product typeBook
Published inSep 2015
Reading LevelIntermediate
Publisher
ISBN-139781785281518
Edition1st Edition
Languages
Right arrow
Author (1)
Victor Marak
Victor Marak
author image
Victor Marak

Victor Marak is a security researcher, an electronic musician, and a world backpacker. He is a college dropout and an autodidact, and he loves working on interesting subjects such as medieval music composition, demonology, DSP electronics, and psychology. He has worked for start-ups, mid-tier, and fortune 500 companies with 5 years of experience in anti-virus technologies and malware research. He was into music production prior to joining the anti-malware industry, and his solo projects are on the world's largest electronic dance music market— Beatport, as well as other major retailers like iTunes, Amazon and Traxxsource. He is in perpetual backpacking mode, set to globe-trotting, especially to his favorite countries in Europe and Russia. He can be found hanging around in the wrong social networks - LinkedIn and Quora. This is his first book.
Read more about Victor Marak

Right arrow

Preparing the alter


Using the inline assembler in VC++ 2008 is simple and convenient enough. However, the caveats are that certain conditional commands such as .IF, .WHILE, and .REPEAT, as well as macros cannot be utilized. Let us look at the three described methods of working with assembly code with your regular toolkit. Visual Studio can be configured to compile assembly code using the MASM assembler in the C code. The C runtime library can be integrated during linking to facilitate this. Create a Win32 project as usual and add a new item.

From the Visual C++ menu, choose the Code and CPP file, and name your file with a .asm extension.

Right-click the project name in the Solution Explorer, and choose Properties | Configuration Properties | Linker | Input.

Type mscvrt.lib in the Additional Dependencies box, and click OK. Then, set Ignore All Default Libraries to Yes.

Right-click on the .asm extension assembly file and choose Properties. Open Custom Build Step | Command Line and type: ml -c...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Windows Malware Analysis Essentials
Published in: Sep 2015Publisher: ISBN-13: 9781785281518

Author (1)

author image
Victor Marak

Victor Marak is a security researcher, an electronic musician, and a world backpacker. He is a college dropout and an autodidact, and he loves working on interesting subjects such as medieval music composition, demonology, DSP electronics, and psychology. He has worked for start-ups, mid-tier, and fortune 500 companies with 5 years of experience in anti-virus technologies and malware research. He was into music production prior to joining the anti-malware industry, and his solo projects are on the world's largest electronic dance music market— Beatport, as well as other major retailers like iTunes, Amazon and Traxxsource. He is in perpetual backpacking mode, set to globe-trotting, especially to his favorite countries in Europe and Russia. He can be found hanging around in the wrong social networks - LinkedIn and Quora. This is his first book.
Read more about Victor Marak