Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
odzhan committed Dec 21, 2019
1 parent 08f1255 commit ee38363
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DemoCreateProcess/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```
2 changes: 1 addition & 1 deletion DonutTest/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down

0 comments on commit ee38363

Please sign in to comment.