-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,10 +33,13 @@ namespace AsyncRAT_Sharp.Sockets
} }
int count = 0; int count = 0;
foreach (Clients client in Settings.Online) lock (Settings.Online)
{ {
if (client.ClientSocket.RemoteEndPoint.ToString().Split(':')[0] == socket.RemoteEndPoint.ToString().Split(':')[0]) foreach (Clients client in Settings.Online)
count++; {
if (client.ClientSocket.RemoteEndPoint.ToString().Split(':')[0] == socket.RemoteEndPoint.ToString().Split(':')[0])
count++;
}
} }
if (count >= 5) if (count >= 5)