7be30f44e7
* Reaction and payloads * Prepare for primetime merge into master * upload better source * right folder * Modify to .NET payload
13 lines
340 B
C#
13 lines
340 B
C#
using System;
|
|
|
|
// C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc.exe atomic-hello.cs
|
|
// Expected Output: Hello from Atomic Red Team! \n Press Enter To Close.
|
|
|
|
public class Program
|
|
{
|
|
public static void Main()
|
|
{
|
|
Console.WriteLine("Hello from Atomic Red Team! \n Press Enter To Close.");
|
|
Console.ReadLine();
|
|
}
|
|
} |