A server software to decrypt PC Simulator saves. Deploy to Google Cloud, AWS, Azure.
| Type | Minimum | Recommended |
|---|---|---|
| CPU | 32 bit single core 1GHz processor (all architectures) | |
| RAM | 512 MB | 16GB |
| Network | At least 10Mbps | 100Mbps |
When buying a server for this purpose, you should prioritize more on the RAM.
- Create a socket using port 60537:
Socket socket = new Socket();
socket.connect(new InetSocketAddress("[your ip address]", 60537), 1000);- Send the payload
DataOutputStream dataOut = new DataOutputStream(socket.getOutputStream());
dataOut.writeUTF("[your payload]");- Use the processed payload
DataInputStream dataIn = new DataInputStream(socket.getInputStream());
String serverMessage = dataIn.readUTF();