fix: Update minimum Bot Token length to 58 char (#1204)
* Update the minimum bot token length to 58 char - Updates the minimum length of a bot token to be 58 characters. An older 58 char bot token was found by Moiph - Makes this value an internal const instead of a magic number * update the TokenUtils tests for 58 char min
This commit is contained in:
committed by
Christopher F
parent
6f5693f486
commit
f6413bac59
@@ -7,6 +7,15 @@ namespace Discord
|
||||
/// </summary>
|
||||
public static class TokenUtils
|
||||
{
|
||||
/// <summary>
|
||||
/// The minimum length of a Bot token.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This value was determined by comparing against the examples in the Discord
|
||||
/// documentation, and pre-existing tokens.
|
||||
/// </remarks>
|
||||
internal const int MinBotTokenLength = 58;
|
||||
|
||||
/// <summary>
|
||||
/// Checks the validity of the supplied token of a specific type.
|
||||
/// </summary>
|
||||
@@ -29,11 +38,11 @@ namespace Discord
|
||||
// no validation is performed on Bearer tokens
|
||||
break;
|
||||
case TokenType.Bot:
|
||||
// bot tokens are assumed to be at least 59 characters in length
|
||||
// bot tokens are assumed to be at least 58 characters in length
|
||||
// this value was determined by referencing examples in the discord documentation, and by comparing with
|
||||
// pre-existing tokens
|
||||
if (token.Length < 59)
|
||||
throw new ArgumentException(message: "A Bot token must be at least 59 characters in length.", paramName: nameof(token));
|
||||
if (token.Length < MinBotTokenLength)
|
||||
throw new ArgumentException(message: $"A Bot token must be at least {MinBotTokenLength} characters in length.", paramName: nameof(token));
|
||||
break;
|
||||
default:
|
||||
// All unrecognized TokenTypes (including User tokens) are considered to be invalid.
|
||||
|
||||
Reference in New Issue
Block a user