vote up 2 vote down star

I have a compiler which compiles assembly language to machine language (in memory). My project is in c# .net. Is there any way to run the memory on a thread? How can DEP prevent it?

byte[] a:
01010101 10111010 00111010 10101011 ...

flag

4 Answers

vote up 2 vote down check

I doubt there's a supported way. I don't know and haven't researched it, but here are some guesses:

The easiest way might be to launch it as a process: write it into a *.com file and then tell the O/S to run that executable.

Alternatively, pass the memory as a parameter to the CreateThread function (but you'll need to wrorry about the code having the right calling conventions, expecting the specified parameters, preserving registers, and being in memory which is executable).

Another possibility is to write the opcodes into memory which is know is already going to be executed (e.g. overwrite existing code in a recently-loaded DLL).

link|flag
1  
A .com file is restricted to 16-bit DOS code, and while this may be sufficient for some purposes, it is not a general solution. It incurs the cost of loading NTVDM to execute the 16-bit code. – Greg Hewgill Oct 11 at 18:39
JulianR's answer looks good. – ChrisW Oct 11 at 19:04
vote up 6 vote down

The key is to put the executable code into a block of memory allocated with VirtualAlloc such that the buffer is marked as executable.

IntPtr pExecutableBuffer = VirtualAlloc(
  IntPtr.Zero,
  new IntPtr(byteCount),
  AllocationType.MEM_COMMIT | AllocationType.MEM_RESERVE,
  MemoryProtection.PAGE_EXECUTE_READWRITE);

(then use VirtualFree to clean up after yourself).

This tells Windows that the memory should be marked as executable code so that it won't trigger a DEP check.

link|flag
+1 Probably less hacky than my method :p – JulianR Oct 12 at 7:43
vote up 3 vote down

It's possible to execute bytes as code:

Inline x86 ASM in C#

It does require the use of unsafe code.

I thought that this was just a fun fact but useless in practice, but perhaps your application actually has a use for this :)

link|flag
1  
Not recommended - is not supported in x64 applications. – Danny Oct 11 at 21:28
In what way not? Is it inherently broken, or just that the example is not very portable? – JulianR Oct 11 at 21:36
Microsoft's C++ compiler just never did the work to support it for 64-bit. By the time 64-bit became popular, it just wasn't as important to people to program in assembly as it had been. – Drew Hoskins Oct 12 at 4:20
i wish i could vote twice. – behrooz Oct 12 at 12:36
vote up 1 vote down

You can whitelist your application from the control panel http://ask-leo.com/how%5Fdo%5Fi%5Fturn%5Foff%5Fdata%5Fexecution%5Fprevention%5Ferrors.html

I doubt you can whitelist it programattically, but certainly not without admin access - that would defeat the purpose of this security feature.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.