Files
toxiRE/testexe and outputs/testpayload.cs
T

11 lines
284 B
C#
Raw Normal View History

2026-08-27 11:04:42 -06:00
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);
}
}