1
mirror of https://github.com/rapid7/metasploit-payloads synced 2024-12-15 02:35:54 +01:00
metasploit-payloads/powershell/MSF.Powershell/MSF.Powershell.Sample/HelloWorld.cs

11 lines
173 B
C#
Raw Normal View History

namespace MSF.Powershell.Sample
{
public class HelloWorld
{
public string Run()
{
return "Hello, world!";
}
}
}