initial commit

This commit is contained in:
i2p
2026-08-27 11:04:42 -06:00
commit 5ab7731f12
33 changed files with 1794 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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);
}
}