Increased the response buffer size

master
Lee Christensen 2019-01-31 16:34:02 -05:00 committed by GitHub
parent 81adc91e39
commit f504b1c0c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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);