Because I don't have the conquer client; all someone would need to do to make a bot or a feature on a bot to do this is;
Find Memory address of the SOCKET handle,
Call the winsock closesocket funciton.
Idea for my example if anyone wants to try it;
I dunno the addr for the socket handle however, or if it's even static.
Code:
DWORD ProcessID = GetCurrentProcessId();
HWND Conquer = OpenProcess(PROCESS_ALL_ACCESS, FALSE, ProcessID);
SOCKET _socket;
ReadProcessMemory(Conquer, (DWORD*)addr, &_socket, sizeof(_socket), NULL);
if (_socket != INVALID_SOCKET)
closesocket(_socket);
CloseHandle(Conquer);