11 lines
284 B
C#
11 lines
284 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
class Program
|
|
{
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
MessageBox.Show("hello from .NET payload!\n\nIf you see this, the dropper worked.", "payload executed", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
|
}
|
|
} |