Skip to content
This repository has been archived by the owner on Dec 3, 2020. It is now read-only.

Commit

Permalink
https://github.com/Airkek/Discord-Nitro-BruteForce/issues/13
Browse files Browse the repository at this point in the history
  • Loading branch information
Airkek committed Sep 1, 2020
1 parent 10834ac commit 0e86586
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Discord Nitro BruteForce/Checker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Checker
{
static object fileLocker = new object();

static string getWumpCode(string code) => $"WUMP-{code[0]}{code[1]}{code[2]}{code[3]}{code[4]}-{code[5]}{code[6]}{code[7]}{code[8]}{code[9]}-{code[10]}{code[11]}{code[12]}{code[13]}{code[14]}";
static string getWumpCode(string code) => code; //TODO

public static bool Check(string code, ProxyClient proxy)
{
Expand Down
2 changes: 1 addition & 1 deletion Discord Nitro BruteForce/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ static string GenerateCode()

string dict = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";

for(int i = 0; i < 15; i++)
for(int i = 0; i < 24; i++)
{
lock(randomSync)
code += dict[random.Next(0, dict.Length - 1)];
Expand Down

0 comments on commit 0e86586

Please sign in to comment.