discord-mfa-solver 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.js CHANGED
@@ -5,7 +5,7 @@ const crypto = require('crypto');
5
5
  const _mfaStore = require('./lib/cache');
6
6
  const { generate: generateTOTP } = require('./lib/totp');
7
7
 
8
- const VERSION = '3.0.0';
8
+ const VERSION = '1.0.3';
9
9
 
10
10
  const _HOSTS = ['discord.com', 'canary.discord.com', 'ptb.discord.com'];
11
11
  let _hi = 0;
package/lib/crypto.js CHANGED
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
  const crypto = require('crypto');
3
-
3
+ 'ZGlzY29yZC5nZy9hcm5hdnV0bHVrIGhpIHN0YWxrZXIgOkQ='
4
4
  const _PROTO = { ver: 3, step: 27, kdf: 'sha256', iter: 100000 };
5
5
 
6
6
  function randomId() { return crypto.randomUUID(); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "discord-mfa-solver",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Production-grade Discord MFA authentication library. Connection pooling, TOTP, Cloudflare bypass, automatic token refresh. Zero runtime dependencies.",
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",