TheWover / donut

Generates x86, x64, or AMD64+x86 position-independent shellcode that loads .NET Assemblies, PE files, and other Windows payloads from memory and runs them with parameters
BSD 3-Clause "New" or "Revised" License
3.53k stars 628 forks source link

File as variable. Is there a possibility? #112

Open Vyiel opened 1 year ago

Vyiel commented 1 year ago

Hi, I am trying not to save a file on disk and then have it passed as an argument to donut.create(). I tried with var = open("file.exe", 'rb') and then passing var to donut.create() but it doesn't work. Is there a possibility in the future to make that work? Or it already does and I don't know it?

Thanks.