Windows run exe from memory

Run exe from memory (x64)

Run-time error ‘7’: Out of memory
Здравствуйте. Установил PIC Simulator IDE, при запуске Basic компилятора вылетает эта ошибка.

Run time error 7. Out of memory
Добрый день. Помогите пож-та с кодом, выдает ошибку run time error 7. out of memory Dim v As.

Как побороть ошибку Run-time error 7: Out of memory ?
Всем привет! В приложении возникает такая ошибка! Она возникает в момент, когда я открываю.

Run-time error ‘9’ на Windows x64
Есть дистрибутив некоего Проекта, создан в Visual Basic 6 под управлением Windows XP. Дистрибутив.

Это не совсем то, что я имел ввиду. На сколько я понял, там описано, как собрать проект под 64 бита, но те проекты, которые я находил не совместимы с х64, в частности из-за ассемблерных вставок.

Добавлено через 6 минут

Натыкался на этот проект, но он же на delphi, насколько я понял, перевести его в с++ не получится. Или я что-то не понимаю?

Что касается переписывания приложения под dll. Я находил 2 проекта, которые реализуют загрузку dll из памяти и собираются под х64, но я не уверен, что их получится переписать. Проблема в том, что при загрузке dll из памяти необходимо загрузить их в уже имеющийся процесс, а в случае с exe — процесс необходимо создать. А в тех проектах, где была реализована загрузка exe из памяти под Win32, именно с этой частью возникали проблемы при попытки собрать проект под x64.

что есть такого в delphi чего нет в c++? Перевести можно спокойно. Другое дело переводить с delphi на, например, c# или java.

что есть такого в delphi чего нет в c++? Перевести можно спокойно. Другое дело переводить с delphi на, например, c# или java.

не вижу никаких проблем. Вы пишите, что ваш проект будет использоваться в связке с другим проектом, инжектите вашу dll в этот другой проект и всё.

Нет, инжектировать dll в другой проект нельзя, так как это должно быть именно приложение, сейчас объясню поподробнее. Мне необходимо реализовать криптование exe, для этого, я беру исходной приложение и оборачиваю его специальным образом и на выходе получаю новое приложение. Это приложение запускается с диска, декриптует исходное приложения, которое зашито внутри нового приложения, делая при этом необходимые проверки и запускает исходное приложение из памяти. При этом исходное приложение может быть любым, но это должно быть именно приложение.

Добавлено через 2 минуты

Возьмите какой-нибудь хороший протектор типа VmProtect и будет криптование.
А делать все это вручную, не имея нужного опыта — гиблое дело.

Кстати, запуск процесса из памяти все равно не спасет от снятия дампа,
так что криптование как защита — идея не самая лучшая.

Возьмите какой-нибудь хороший протектор типа VmProtect и будет криптование.
А делать все это вручную, не имея нужного опыта — гиблое дело.

Кстати, запуск процесса из памяти все равно не спасет от снятия дампа,
так что криптование как защита — идея не самая лучшая.

Приведу две цитаты со StackOverflow:

It’s actually quite easy. Similar technique has been described in a paper I read like 3 years ago.

Windows allow you to call the CreateProcess function with CREATE_SUSPENDED flag, that tells the API to keep the process suspended until the ResumeThread function is called.

This gives us time to grab the suspended thread’s context using GetThreadContext function, then the EBX register will hold a pointer to the PBE(Process Enviroment Block) structure, which we need to determine the base address.

From the layout of the PBE structure we can see that the ImageBaseAddress is stored at the 8th byte, therefore [EBX+8] will give us actual base address of the process being suspended.

Now we need the in-memory EXE and do appropiate alignment if the alignment of memory and in-memory EXE differs.

If the base address of suspended process and in-memory exe matches, plus if the imageSize of the in-memory exe is lesser or equal to the suspended process’ we can simply use WriteProcessMemory to write in-memory exe into the memory space of the suspended process.

Читайте также:  Вне допустимого диапазона при запуске компьютера windows 10

But if the aforementioned conditions weren’t met, we need a little more magic. First, we need to unmap the original image using ZwUnmapViewOfSection, and then allocate enough memory using VirtualAllocEx within the memory space of the suspended process. Now we need to write the in-memory exe into the memory space of the suspended process using the WriteProcessMemory function.

Next, patch the BaseAddress of the in-memory exe into the PEB->ImageBaseAddress of the suspended process.

EAX register of the thread context holds EntryPoint address, which we need to rewrite with the EntryPoint address of the in-memory exe. Now we need to save the altered thread context using the SetThreadContext function.

Voila! We’re ready to call the ResumeThread function on the suspended process to execute it!

Windows run exe from memory

Tagged as

Stats

Comments and Discussions

First Prev Next
doesn’t work Wrangly 22-Feb-18 22:14
doesn’t work, nothing happens when I double clic on an item, the ballontip displays that the application has started corrected but nothing else happens, have created a simple hello world form and it ‘catches’ with ‘Exception has been thrown by the target of an invocation’ (VS2010)

Sign In· View Thread
Doesnt Work..

fuujinn 1-Nov-17 20:34
i am getting below error.

System.Reflection.TargetParameterCountException: ‘Parameter count mismatch.’

object o = a.CreateInstance(method.Name);

edit: found the problem.. need to remove Application.SetCompatibleTextRenderingDefault(false);

Sign In· View Thread
My vote of 5 GerVenson 11-Sep-16 22:12
Simple, Easy to use, good not perfect code(not nobody is). 5*
Sign In· View Thread
for VBNET IDE, use this; User 11061201 21-Jun-16 13:07

If your app is WinForms and not ConsoleApplication then follow the steps below

You Application needs to start from a Main() Sub to run this hack.
Otherwise change the solution property of you external app:
-Disable ApplicationFramework
-Add new module to your project (Module1)
-Add this code to Module1

Also do a research to see what ‘Disabling ApplicationFramework’ does.

Sign In· View Thread
Pass Paramete

Kishan Sojitra 25-Apr-16 21:45
Sign In· View Thread
It’s can’t load win32 exe and also not found entry point for .net assembly 🙁 Shohag_Ifas 12-Feb-15 15:07
Greetings..
i was looking for this for a long time and found your solution yesterday. i converted your code to vb.net.

but it doesn’t work.

can you help lease?

1. if i load non .net assembly like win32 application (like notepad etc) it shows error on «Assembly.Load(bin) line

2. if i try to run a .net assembly it shows errors on «a.EntryPoint» and the error saying the system can not file the file specified but of course file is there

any help please?

thanks in advance

best regards

Sign In· View Thread
My vote of 5

Paulo Zemek 1-Apr-13 9:36
I didn’t test, but it looks pretty interesting.
Sign In· View Thread
This doesn’t work with WPF projects clemsy 1-Apr-13 9:11
How could this be adjusted to allow a WPF .NET program to be run from memory?

Sign In· View Thread
it can not run a vb.net exe on-raptor 15-Jul-10 8:53
it use it to run a vb.net(2008) exe . it Will Receive a error.
the MethodInfo is:»method = »
no like Example programme:»method = »
if i Modify my vb.net programme to use sub main,it will be OK.
but new Problem is : the vb.net programme can’t be us the «My» Namespace.
and,i’am sorry of my Terrible english.
thank’s!
Sign In· View Thread
It’s posible in vb6 ?

dbonet 11-Nov-09 5:23
This is posible to implement in vb6?

It can be posible, with this method, load in memory Third party applications or may be builded in special form to run only in memory?

Sign In· View Thread
Ok, problem solved

Cryptonite 3-Feb-09 6:56
//NOTE: You have to invoke it on a newly created thread.

private void Form1_Load(object sender, EventArgs e)
<
System.Threading.Thread thd;
System.Threading.ThreadStart ts;

Assembly a = Assembly.Load(LoadEXE()); //load exe into byte array
method = a.EntryPoint;

ts = new System.Threading.ThreadStart(RunNewApp);
thd = new System.Threading.Thread(ts);
thd.Start();

private void RunNewApp()
<
if (method != null)
<
method.Invoke(null, null);
>
>

Sign In· View Thread
java

t3dysu 29-Nov-08 0:35
can this be done in java ?
Sign In· View Thread
Re: java Cryptonite 3-Feb-09 7:20

//this loads a jar from an http address and instantiates the class ‘classname’
//just put some code in the constructor of the class if you want to execute it
//when it’s instantiated

public void RunClass(String httpfileaddr, String classname) <
URLClassLoader clazzLoader ;
Class clazz = null;
URL url = null;
try <
url = new URL(httpfileaddr);
> catch (MalformedURLException ex) <
Logger.getLogger(cLoader.class.getName()).log(Level.SEVERE, null, ex);
>

clazzLoader = new URLClassLoader(new URL[]);
try <
clazz = clazzLoader.loadClass(classname);
Thread.currentThread().setContextClassLoader(clazzLoader);
> catch (ClassNotFoundException ex) <
Logger.getLogger(cLoader.class.getName()).log(Level.SEVERE, null, ex);
>
try <
clazz.newInstance();
> catch (InstantiationException ex) <
Logger.getLogger(cLoader.class.getName()).log(Level.SEVERE, null, ex);
> catch (IllegalAccessException ex) <
Logger.getLogger(cLoader.class.getName()).log(Level.SEVERE, null, ex);
>
>

Sign In· View Thread
«Could not load file or assembly»

njuneardave 31-Jul-08 9:28
I modified the code a bit to look into a different directory and pick out my .exe, but I’m getting an error that says:

«Could not load file or assembly ‘589312 bytes loaded from WinLauncher, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null’ or one of its dependencies. An attempt was made to load a program with an incorrect format.»

The posted code works with the included .exe and some other .exe that I have, so why would it bomb out on another .exe? Maybe .DLL files need to be loaded into memory as well? if so, how would i do this?

EDIT: i think this has to do with my executable being unmanaged code. is there another way to load unmanaged executables?

Sign In· View Thread
Re: «Could not load file or assembly» clemsy 30-Mar-13 5:49

This always happens to me when I have accidentally noodled with the exe’s bytes before trying to execute it — e.g. you’ve converted it to a UTF8 string and back again (which would change the exe because it contains non-UTF8 characters).

Sign In· View Thread
Why is this necessary?

PIEBALDconsult 3-Apr-08 17:47
Once the program is loaded into memory and is running you can delete the EXE or remove the media with no problem. Don’t you remember shuffling floppies under DOS?

I even tested it with a .net program today.

This looks like the wrong solution to a non-existent problem.

Sign In· View Thread
THIS IS USEFUL! [modified]

sebastiannielsen 2-Jul-08 10:22

This is EXTREMELY useful.

Just think: Load the target EXE into a byte array. Then encrypt it with System.Security.Cryptography.Rijndaelmanaged using a sha256 of the password as key, and then convert the encrypted EXE to a base64 string.

Then you can make a new project, hard code the base64 string and have a password promt. Then the password decrypt the EXE, and run it from memory as described here. Everything is done in a Try. Catch. End Try block so if wrong password is supplied then it can «MsgBox» the user about it.

This can also be used to build a Anti-Piracy wrapper for a application by encrypting it with a key that is a result from a calculation on a valid CD-key. Incorrect CD-key = the application wont decrypt.

Also you can use this to fetch a encrypted EXE from a server and then decrypt it in-memory with a hard-coded key. Now updating has never been as easy as putting your updated EXE into your webspace and Voilá, the application is up2date for everyone that has previously downloaded your application.
This could also be used in Anti-Piracy situations, by just having a CGI script to encrypt your EXE with the supplied serial number as key, and then the target application who downloaded the encrypted EXE decryptes it using the serial as key.

Of course you have a hard coded «salt» value in the application so not anybody with the correct serial can decrypt for themselves.
Then if you see that a specific serial is used at multiple places, just ban that serial and your application can never be used by that serial any longer, since the client application can no longer download the encrypted EXE.

Another fun thing you can do if you let your client fetch the EXE from the internet, is that if the serial in question is marked as piracy, you could make your server send a encrypted variant of some software that install itself in startup and keylog, screenlog, and records sound from attached mic and take some snaps if theres a webcam. Then stuff everything in a packet and then into your server, that will log IP & time too.

Its s simple matter of prosecuting that person for piracy after that, since you both have IP evidence and *image evidence*.

Sign In· View Thread
CMD

Koushik 1-Sep-07 2:14
How can I load cmd.exe file and pass the «dir/p» as a argument? And after that I need to track the output.
Sign In· View Thread
Hi mezo_22 25-Mar-07 10:35
ur code is amazing and i downloaded ur program and it worked well but when i tried to create my own program that run exe file it gave me the error that u said in ur note could u help me to prevent this error plz (

Sign In· View Thread
Re: Hi Mike_Silver_A 20-Apr-09 5:41

not an author, but.

acutally, i use boxedapp to launch my exe secure, it can run any EXE (not only .net) from memory without additional temporary files on disk.

btw it also provide a simple function specific for .net (C++ / Delphi notation!):
execute .net from memory

Sign In· View Thread
VB Demo (Load an exe file and run it from memory)

Ulambayar 14-Jan-07 2:47
Hi Evereyone,

«Load an exe file and run it from memory» forum’s decision by Mr.Gianni Marzaloni (ZofM) is looking nice. Could you make it in VB, please?

Sign In· View Thread
Re: VB Demo (Load an exe file and run it from memory) uyalksouiwh 2-Apr-07 8:43

I have the same problem too. I need the answer. How to write that in VB .Net? I am looking around and the best I got was this:

using Reflection.Assembly.GetExecutingAssembly().GetMani festResourceStream(» «)
but I can’t get it working. Please Help.

Ash

Sign In· View Thread
Re: VB Demo (Load an exe file and run it from memory)

Macka007007 25-Jul-07 21:14

try changing
using Reflection.Assembly.GetExecutingAssembly().GetMani festResourceStream(» «)
to
using Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(» «)

Sign In· View Thread
Re: VB Demo (Load an exe file and run it from memory) Sheridan101 21-Nov-07 8:39

Here is the code which works in VB 2005.

But, unfortunately, I always got error about “Application.SetCompatibleTextRenderingDefault”

Does anybody have idea what to do about how to overcome this ?

Sign In· View Thread
How to load exe compiled with /clr?

martho2 10-Jan-07 3:14
Hello! Nice code! I tried a small demo-project, and it shows up that the .exe is only started, when it has been compiled with /clr:pure or /clr:save. When using an .exe compiled with /clr only, I got an exception in Assembly.Load: Unverifiable code failed policy check (exception from HRESULT: 0x80131402).

Has anyone a solution for this or is it just not possible to load an assembly compiled with /clr?

Sign In· View Thread
Last Visit: 31-Dec-99 18:00 Last Update: 19-Apr-21 2:43 Refresh 1 2 Next ᐅ

General News Suggestion Question Bug Answer Joke Praise Rant Admin

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Читайте также:  Периферийное устройство не подключено звук windows 10
Оцените статью