Update
-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:
parent
9bf11d5cfe
commit
7acc6881f3
@ -33,10 +33,13 @@ namespace AsyncRAT_Sharp.Sockets
|
||||
}
|
||||
|
||||
int count = 0;
|
||||
foreach (Clients client in Settings.Online)
|
||||
lock (Settings.Online)
|
||||
{
|
||||
if (client.ClientSocket.RemoteEndPoint.ToString().Split(':')[0] == socket.RemoteEndPoint.ToString().Split(':')[0])
|
||||
count++;
|
||||
foreach (Clients client in Settings.Online)
|
||||
{
|
||||
if (client.ClientSocket.RemoteEndPoint.ToString().Split(':')[0] == socket.RemoteEndPoint.ToString().Split(':')[0])
|
||||
count++;
|
||||
}
|
||||
}
|
||||
|
||||
if (count >= 5)
|
||||
|
Loading…
x
Reference in New Issue
Block a user