bro in my its looking urpassword not our |
==> |
bro what is the pass |
==> |
what is pass word i cant find it
is it : urpassword or urkasswor |
==> |
bro isn't it ur password or ur asswor something like it its not working |
==> |
look at this place then play with if statements of code i use dnspy for this that's the easiest solution i think
internal class Executable
{
// Token: 0x06000001 RID: 1
private static void Main()
{
Console.Clear();
Executable executable = new Executable();
executable.Retrieve_Key();
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine("Please Enter the Key to Continue");
Console.ForegroundColor = ConsoleColor.White;
string userInput = Console.ReadLine();
Executable.InputStatus inputStatus;
executable.Check(userInput, out inputStatus);
executable.Check2();
if (inputStatus != Executable.InputStatus.Succes)
{
if (inputStatus != Executable.InputStatus.Incorrect)
{
throw new ArgumentOutOfRangeException();
}
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("Wrong Passcode, Sorry");
Console.ReadLine();
}
else
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Congrats you got the Passcode!");
Console.ReadLine();
}
Environment.Exit(0);
}
i changed !='s to == then i press enter just and its solved |
==> |