diff --git a/DemoCreateProcess/Readme.md b/DemoCreateProcess/Readme.md index fdd34ac..20f1d2a 100644 --- a/DemoCreateProcess/Readme.md +++ b/DemoCreateProcess/Readme.md @@ -5,11 +5,11 @@ A simple C# program to use as a demo for testing shellcode. It takes two program 64-bit: ``` -.\donut.exe -f .\DemoCreateProcess\bin\Release\DemoCreateProcess.dll -c TestClass -m RunProcess -p notepad.exe,calc.exe +.\donut.exe .\DemoCreateProcess\bin\Release\DemoCreateProcess.dll -c TestClass -m RunProcess -p "notepad.exe calc.exe" ``` 32-bit: ``` -.\donut.exe -a 1 -f .\DemoCreateProcess\bin\Release\DemoCreateProcess.dll -c TestClass -m RunProcess -p notepad.exe,calc.exe +.\donut.exe -a 1 .\DemoCreateProcess\bin\Release\DemoCreateProcess.dll -c TestClass -m RunProcess -p "notepad.exe calc.exe" ``` \ No newline at end of file diff --git a/DonutTest/Readme.md b/DonutTest/Readme.md index 2fbb12a..4a6ecb1 100644 --- a/DonutTest/Readme.md +++ b/DonutTest/Readme.md @@ -5,7 +5,7 @@ A simple C# shellcode remote injector to use in testing donut. It contains both You may Base64-encode your shellcode and copy it to your clipboard with the PowerShell below: ```powershell -$filename = "C:\\Test\donut\\payload.bin" +$filename = "C:\\Test\donut\\loader.bin" [Convert]::ToBase64String([IO.File]::ReadAllBytes($filename)) | clip ```