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

Small fix on params example #71

Closed physics-sec closed 3 years ago

physics-sec commented 3 years ago

If you provide "arg1 arg2" as the param value, you will only have one parameter and it will be "arg1 arg2" If on the other hand you specify "arg1,arg2" you will have two parameters: "arg1" and "arg2" Note that "arg1, arg2" will create the parameters: "arg1" and " arg2" (an unwanted space in the second param) hope this helps, thank you for this amazing tool 😄

physics-sec commented 3 years ago

this is no longer the case with the latest commits on the master branch