OP 11 February, 2021 - 03:00 AM
So I managed to rig up this special rat here
and I go to try and build then this happens
![[Image: fcc285a7.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Foguse.rs%2Ffcc285a7.png)
any ideas on how I could fix?
details here
System.NullReferenceException
HResult=0x80004003
Message=Object reference not set to an instance of an object.
Source=Remote Administration Tool
StackTrace:
at Remote_Administration_Tool.Form1.velyseButton5_Click(Object sender, EventArgs e) in C:\Users\Malwr\Desktop\New folder (7)\Remote Administration Tool\Remote Administration Tool\Forms\Form1.cs:line 3118
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.Run(Form mainForm)
at Remote_Administration_Tool.Program.Main() in C:\Users\Malwr\Desktop\New folder (7)\ Remote Administration Tool\Remote Administration Tool\Program.cs:line 17
program.cs line 17 is
Application.Run(new License());
calling this part to build the stub of the rat
case "RECVBUILD":
string path = cut[1];
File.WriteAllBytes(path, Convert.FromBase64String(cut[2]));
MessageBox.Show("The File has been successfully created!\nPath:" + path, "Building Server", MessageBoxButtons.OK, MessageBoxIcon.Information);
break;
and I go to try and build then this happens
![[Image: fcc285a7.png]](https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Foguse.rs%2Ffcc285a7.png)
any ideas on how I could fix?
details here
System.NullReferenceException
HResult=0x80004003
Message=Object reference not set to an instance of an object.
Source=Remote Administration Tool
StackTrace:
at Remote_Administration_Tool.Form1.velyseButton5_Click(Object sender, EventArgs e) in C:\Users\Malwr\Desktop\New folder (7)\Remote Administration Tool\Remote Administration Tool\Forms\Form1.cs:line 3118
at System.Windows.Forms.Control.OnClick(EventArgs e)
at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(IntPtr dwComponentID, Int32 reason, Int32 pvLoopData)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.Run(Form mainForm)
at Remote_Administration_Tool.Program.Main() in C:\Users\Malwr\Desktop\New folder (7)\ Remote Administration Tool\Remote Administration Tool\Program.cs:line 17
program.cs line 17 is
Application.Run(new License());
calling this part to build the stub of the rat
case "RECVBUILD":
string path = cut[1];
File.WriteAllBytes(path, Convert.FromBase64String(cut[2]));
MessageBox.Show("The File has been successfully created!\nPath:" + path, "Building Server", MessageBoxButtons.OK, MessageBoxIcon.Information);
break;