Googler

通过HttpListener实现Web远程桌面

http://download.csdn.net/detail/w395115323/4216841

                    var client = new HttpClient("http://localhost/Backdoor/");
                    client.Form["action"] = "2";

                    client.Form["entry"] = "Rocky.WebTool.Backdoor.Main";
                    byte[] fileData = File.ReadAllBytes(@"D:\Desktop\War3\Work\Rocky3.5\Backdoor\bin\Debug\BackdoorClient.dll");
                    client.Form["raw"] = System.Web.HttpUtility.UrlEncode(fileData);
                    client.Form["arg"] = DateTime.Now.ToString();

                    Console.WriteLine(client.GetResponseText());

 

PS:win7 + 的系统需要admin权限才能运行~

分类:

技术点:

相关文章:

  • 2021-08-19
  • 2021-09-07
  • 2022-12-23
  • 2021-06-08
  • 2021-12-10
  • 2021-07-05
  • 2021-09-21
猜你喜欢
  • 2021-12-24
  • 2021-10-19
  • 2021-05-16
  • 2021-09-20
  • 2022-12-23
  • 2022-12-23
  • 2021-05-27
相关资源
相似解决方案