A Deep Dive into Minecraft Chat Reports

Published June 24, 2022 • more posts

Mojang recently announced that a chat report system would be coming to Minecraft in 1.19.1, which has sparked a great deal of controversy amongst players. I'm not going to discuss whether this is a good idea in this article except at the end; instead, we're going to be taking a look at how exactly the reporting system works and what this means for server operators. Hopefully this will allow for some more enlightened discussion.

Crypto Background: Digital Signatures §

One of the most obvious issues with the report system is that of authenticity. When a report is received, how does the reviewer know that the accused player actually sent the message in question? To ensure that no one can forge a report, Mojang has since implemented functionality that would require all messages to be digitally signed using a key associated with the sender's account.

How do digital signatures work? Here's the process, in a nutshell:

illustration of a digital signature scheme
A diagram of a public-key digital signature scheme. Image by FlippyFlink / CC BY-SA

This is not the exact scheme used by Minecraft, but it serves to explain the concept of digital signatures. Let's see how Minecraft implements it.

Minecraft Key Management §

First things first, let's understand how Minecraft manages the user's keypair. To do this, I decompiled the game, something which I recently wrote a blogpost about. Anyways, some digging around eventually brings us to a class called ProfileKeyPairManager, which reveals that your profile keys are stored in a JSON file in the .minecraft/profilekeys folder. A quick look at this file reveals its structure:

{
    "private_key": "PEM-encoded RSA private key",
    "public_key": {
        "expires_at": "ISO 8601 timestamp",
        "key": "PEM-encoded RSA public key",
        "signature": "base64 signature"
    },
    "refreshed_after": "ISO 8601 timestamp"
}

(Obviously, I've gone ahead and replaced all the actual values with strings describing each field's purpose.)

OpenSSL shows that the RSA private keys are 2048 bits in length. The expiration date suggests that the profile keys have a lifespan of 48 hours. Finally, the player's keypair is signed by Mojang, as reflected by the signature field.

Obtaining a Keypair §

ProfileKeyPairManager also contains details about how keypairs are fetched via Mojang's API. It's a very simple API; the client makes a POST request to https://api.minecraftservices.com/player/certificates, and the server responds with a JSON object like the one shown above.

Keypair Verification §

During the login sequence, the client sends its public key to the server. Whether the server verifies that the public key is valid is controlled by a setting in server.properties called enforce-secure-profile. At the time of writing (1.19.1-pre1), this setting is false by default.

If this setting is enabled, the server will verify the public keys sent by clients and prevent clients which don't present a valid keypair from connecting. The verification consists of two checks:

The public key that the server uses to verify the signature is stored in a file called yggdrasil_session_pubkey.der, which can be found in the root of authlib-x.x.xx.jar. Here's some NodeJS code that simulates the verification process:

const fs = require("fs"),
      crypto = require("crypto");

const playerPubkey = { /* ... omitted ... */},
      mojangPubkey = crypto.createPublicKey({
          key: fs.readFileSync("yggdrasil_session_pubkey.der"),
          format: "der",
          type: "spki"
      });

const signedPayload = Buffer.from(new Date(playerPubkey.expires_at).getTime() + playerPubkey.key, "utf-8");

console.log(crypto.verify(
    "sha1WithRSAEncryption",
    signedPayload,
    mojangPubkey,
    Buffer.from(playerPubkey.signature, "base64")
)); // -> true

TL;DR: Because all player public keys are signed using a keypair known to all servers, a server can verify that a key presented by a player is valid without ever contacting Mojang.

Signed Chat §

To accomodate the chat reporting system, chat messages are now signed using the user's keypair. There is a setting under OptionsChat Settings...Only Show Secure Chat that toggles whether messages with invalid signatures are hidden. This setting is off by default at the time of writing (1.19.1-pre1).

Chat Message Signing §

Since 1.19, this has been the on-wire structure of the serverbound chat packet:

Field Type
message String
timestamp Instant
saltSignature SaltSignaturePair
signedPreview Boolean

For more information on how these types are serialized, check out the protocol documentation at wiki.vg. A SaltSignaturePair (which is yet to be documented on wiki.vg at the time of writing) has the following structure:

Field Type
salt Long
signature ByteArray

To construct the SaltSignaturePair, the client first generates a random 8-byte salt using Java's SecureRandom. The signed payload is constructed in MessageSignature; it consists of the following fields, concatenated:

All longs are encoded in big-endian order. The signature is generated using the SHA256withRSA algorithm.

Chat Message Verification §

In 1.19 the Player Info packet was updated so that players would receive the public keys of other players on the same server. This allows incoming chat messages to be verified. I didn't write code to simulate this verification process, but the procedure is fairly simple; the client simply needs to reconstruct the signed payload based on the fields in the packet, and feed it to the signature verifier.

Report API §

When an abuse report is submitted, a POST request is made to https://api.minecraftservices.com/player/report. The body is an AbuseReportRequest, serialized as JSON. Requests are authorized using a standard Yggdrasil authorization token.

Here is the structure of the body, as far as I can tell, though I have yet to successfully capture an actual report payload.

{
    "id": UUID,
    "report": {
        "type": String,
        "opinionComments": String,
        "reason": String,
        "evidence": {
            "messages": [
                {
                    "profileID": UUID,
                    "timestamp": Instant,
                    "salt": long,
                    "signature": String,
                    "message": String,
                    "overriddenMessage": String,
                    "messageReported": boolean
                }
            ]
        },
        "reportedEntity": {
            "profileId": UUID
        },
        "createdTime": Instant
    },
    "clientInfo": {
        "clientVersion": String
    },
    "thirdPartyServerInfo": {
        "address": String
    },
    "realmInfo": {
        "realmId": String,
        "slotId": int
    }
}

One thing that stood out to me was that as far as I can tell, the player's public key is not included in the report, meaning that Mojang has to have a database of player public keys to validate reports with. Since they must cull old keypairs after a certain amount of time, this puts an upper limit on the maximum age after which a message can't be reported because Mojang will be unable to validate the signature. I obviously have no idea what Mojang's internal policy on this is, though. My totally baseless speculation is that expired keypairs will be deleted instantly, but take that with a grain of salt.

The Big Picture §

How does this change affect the community? Here are my thoughts.

For starters, unless Mojang backports the chat signing changes to 1.18 and below, this change is mostly limited to versions 1.19 and above. However, odds are bans will be enforced through the auth servers, so if you are banned for a message sent while playing on 1.19 you won't be able to play on any version.

Some players have made the claim that reporting will be limited to Realms, based on pages on the Minecraft website. This is probably not the case; the aformentioned pages are for Bedrock, and there are no communications from Mojang suggesting that this report system will be Realms-only. Surely, if the change wasn't meant to affect private servers, they would have made a clarification in response to the widespread backlash.

Even on affected versions, reporting is weakened by a few main factors:

A mod that implements the latter two changes is already available.

WARNING
What follows is my opinion.

What do I think about the reports system? I have mixed feelings. On one hand, hate speech and harassment have no place on any game (much less a kids' game), so any efforts to curb such toxicity deserve some benefit of the doubt. However, I believe that the report system isn't an effective solution to the problem. I would wager that >90% of chats will not be affected by this change, meaning that it doesn't accomplish very much. Futhermore, there are questions about Mojang's ability to moderate chat in a transparent, equitable way. In the worst-case scenario, Minecraft goes the way of Roblox or Club Penguin, where the chat becomes a desolate wasteland threatening to get your account banned for the slightest transgression. I find this outcome extremely unlikely due to the technical limitations listed earlier, but nevertheless, odds are there will be little recourse for players who get banned.

I also find Mojang's handling of this controversial change pretty disappointing. Chat reports represent a major change in the relationship between Mojang and server operators, who up to this point have been entrusted with all moderation duties. Unsurprisingly, many admins have interpreted this as a breach of trust, one that was met with no engagement from Mojang whatsoever. Hopefully, Mojang will put more effort into communication with server owners in the future.