This commit is contained in:
FloppyMacguffum 2024-11-29 01:48:04 -08:00 committed by GitHub
commit 56a186aa39
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,6 +30,7 @@ import { SkinServer } from "./skins/SkinServer.js";
let instanceCount = 0;
const chalk = new Chalk({ level: 2 });
const motdMatcher = /accept: motd/i;
export class Proxy extends EventEmitter {
public packetRegistry: Map<
@ -189,7 +190,7 @@ export class Proxy extends EventEmitter {
}
}, this.LOGIN_TIMEOUT);
try {
if (firstPacket.toString() === "Accept: MOTD") {
if (motdMatcher.test(firstPacket.toString())) {
if (!this.ratelimit.motd.consume(req.socket.remoteAddress).success) {
return ws.close();
}