From f504b1c0c3bb14ff4f38ab01b4bd035c02425c68 Mon Sep 17 00:00:00 2001 From: Lee Christensen Date: Thu, 31 Jan 2019 16:34:02 -0500 Subject: [PATCH] Increased the response buffer size --- Rubeus/lib/Networking.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rubeus/lib/Networking.cs b/Rubeus/lib/Networking.cs index ca61c9f..1644adb 100755 --- a/Rubeus/lib/Networking.cs +++ b/Rubeus/lib/Networking.cs @@ -125,7 +125,7 @@ namespace Rubeus int bytesSent = socket.Send(totalRequestBytes); Console.WriteLine("[*] Sent {0} bytes", bytesSent); - byte[] responseBuffer = new byte[2500]; + byte[] responseBuffer = new byte[65536]; int bytesReceived = socket.Receive(responseBuffer); Console.WriteLine("[*] Received {0} bytes", bytesReceived); @@ -146,4 +146,4 @@ namespace Rubeus return response; } } -} \ No newline at end of file +}