mvelazc0 / defcon27_csharp_workshop

Writing custom backdoor payloads with C# - Defcon 27 Workshop

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

defcon27_csharp_workshop + invoke-obfuscate

joker8989 opened this issue · comments

Hey i have tested your tool in different payloads and applications and it all went pretty well.. love your work...
so i went one step forward and i used invoke-obfuscate to obfuscate my powershell payload or script... i encoded it to base64 myself (cause its not encoded its only obfuscated)
and i put it into 2.cs "string script = 'encodedblabla' and no errors were displayed while creating and running the exe but no session was created
Like u said i did not specify the "powershell -nop -w 1 -enc ......." only the "......"

wanna say i used venom to create powershell payload and it worked :) but when tried to obfuscate it no session was created :(

if i could use your help thankx you very much :)

Thanks! hope you enjoyed the workshop.

Have you tried your obfuscated payload by itself ? ( without wrapping in C#) ? Does that work ?

@mvelazc0 Yes it does work i execute it on powershell ISE it looks like this:
powershell.exe -enc "obfuscated code" (because powershell.exe -nop -w 1 -enc need to be removed)
after all yes the obfuscated powershell payload does work :)
can u help me resolve the issue?