CVE-2025-62378
Description
CommandKit is the discord.js meta-framework for building Discord bots. In versions 1.2.0-rc.1 through 1.2.0-rc.11, a logic flaw exists in the message command handler that affects how the commandName property is exposed to both middleware functions and command execution contexts when handling command aliases. When a message command is invoked using an alias, the ctx.commandName value reflects the alias rather than the canonical command name. This occurs in both middleware functions and within the command's own run function. Although not explicitly documented, CommandKit's examples and guidance around middleware usage implicitly convey that ctx.commandName represents the canonical command identifier. Middleware examples in the documentation consistently use ctx.commandName to reference the command being executed. Developers who assume ctx.commandName is canonical may introduce unintended behavior when relying on it for logic such as permission checks, rate limiting, or audit logging. This could allow unauthorized command execution or inaccurate access control decisions. Slash commands and context menu commands are not affected. This issue has been patched in version 1.2.0-rc.12, where ctx.commandName now consistently returns the actual canonical command name regardless of the alias used to invoke it.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
commandkitnpm | >= 1.2.0-rc.1, < 1.2.0-rc.12 | 1.2.0-rc.12 |
Affected products
1- Range: v0.0.10, v0.0.9, v0.1.0, …
Patches
1440385a3e5defix: resolve correct command name inside context
2 files changed · +19 −3
packages/commandkit/src/app/commands/Context.ts+3 −2 modified@@ -302,9 +302,10 @@ export class Context< public get commandName(): string { if (this.isInteraction()) { return this.interaction.commandName; - } else { - return this.config.messageCommandParser!.getCommand(); } + + const maybeAlias = this.config.messageCommandParser!.getCommand(); + return this.commandkit.commandHandler.resolveMessageCommandName(maybeAlias); } /**
packages/commandkit/src/app/handlers/AppCommandHandler.ts+16 −1 modified@@ -1,5 +1,4 @@ import { - ApplicationCommandType, AutocompleteInteraction, Awaitable, Collection, @@ -648,6 +647,22 @@ export class AppCommandHandler { return null; } + public resolveMessageCommandName(name: string): string { + for (const [, loadedCommand] of this.loadedCommands) { + if (loadedCommand.data.command.name === name) { + return loadedCommand.data.command.name; + } + + const aliases = loadedCommand.data.metadata?.aliases; + + if (aliases && Array.isArray(aliases) && aliases.includes(name)) { + return loadedCommand.data.command.name; + } + } + + return name; + } + /** * Reloads all commands and middleware from scratch. */
Vulnerability mechanics
Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
4News mentions
0No linked articles in our index yet.