Linked Questions

0 votes
1 answer
79 views

I am trying to fopen a file into a file buffer and then create a new process with it. I was trying ASM to goto the start of the file but sadly because of windows it wouldn't actually do anything ...
Emma Skye's user avatar
10 votes
1 answer
5k views

Let's say I have included a binary into my program during compilation so, I keep it in a variable something like var myExec =[]byte{'s','o','m','e',' ','b','y','t','e','s'} So my question is whether ...
nikoss's user avatar
  • 3,739
6 votes
2 answers
4k views

Possible Duplicate: Load an EXE file and run it from memory using C# I am using the WebClient class to download a .exe from a web server. Is there a way that I can run the .exe without saving it ...
Jan Tacci's user avatar
  • 3,221
2 votes
2 answers
3k views

For example, I download an EXE or MSI file from dataBase as byte array. And I want to run it. I can save it in a file and then Process.Start(path). But if I don't want to create a real file, can I do ...
Artem Makarov's user avatar
16 votes
3 answers
1k views

I'm working in a project related with sandboxing technologies. Currently I'm writing a C program that gets a small assembly .exe binary (.NET) from a remote web server. This binary is stored in ...
Tomas Jeff's user avatar
5 votes
1 answer
4k views

I want to execute a program in memory on Windows. I do not want to write the file to disk. I just want to pass in a byte array (which is the program I want to execute) as a parameter. I am not ...
Thomas Nappo's user avatar
4 votes
1 answer
4k views

I'm making a specific program and i just wondered if I could do this: run a file whose contents are stored in a char array ON WINDOWS. this is the code that reads the executable and stores it in a ...
user avatar
1 vote
2 answers
2k views

I'm trying to run an exe file through filestream , but nothing is happens when I call the command. My code: string filePath = AppDomain.CurrentDomain.BaseDirectory + "OUT\\WAMServer.exe"; // read ...
user3571412's user avatar
1 vote
2 answers
3k views

I'm developing a simple video player in Visual Basic 2010 Express. The program that plays the videos is in the compiled resources, and I'm trying to find a way to run it without having to place the ...
GGG's user avatar
  • 670
6 votes
1 answer
1k views

I have found out that you can run a program from memory in Windows. But is this functionality considered to be a hack (that could one day not work anymore), or does Windows supports this functionality?...
user avatar
0 votes
1 answer
2k views

I was searching for awhile for how to read an exe into memory and execute it directly from memory. Then I've passed by this answer which was very useful CreateProcess from memory buffer. Fortunately ...
Islam Hassan's user avatar
  • 1,736
-1 votes
2 answers
1k views

Alright so i am pretty new to really anything in memory execution. I usually just write the bytes from the embedded resource into the file on the hard drive but for the program i am making for a work ...
Paintballer4lfe's user avatar
0 votes
2 answers
2k views

Which WinAPI functions should I use to make a program unlock its own executable file so I can update or recompile it at runtime even if it's running? Should I use the regular file unlocking functions, ...
alt.126's user avatar
  • 1,107
1 vote
0 answers
943 views

I am trying to write a java program which will receive an exe as byte stream and store it in a byte array and this byte array should be executed directly. The byte array cannot be written to a file ...
user avatar
2 votes
1 answer
766 views

Hello i have this code: # Note: This must be an executable or DLL compiled for .NET $Path = "C:\Users\sadettin\desktop\tok.exe" # Get Base64-encoded representation of the bytes that make up ...
NoobCoding's user avatar

15 30 50 per page