Advertisement
Guest User

Untitled

a guest
Apr 5th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6.  
  7. namespace loader_2._0
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. Console.WriteLine("--------------------------------------------------");
  14. Console.WriteLine("------------------ Injector 2.0 ------------------");
  15. Console.Title = "Loader 2.0";
  16. Console.WriteLine("Username:");
  17. string fuckname = Console.ReadLine() + Environment.NewLine;
  18. Console.WriteLine("Password:");
  19. string password = Console.ReadLine() + Environment.NewLine;
  20. Console.WriteLine("--------------------------------------------------");
  21. Console.WriteLine("------------------ Account loaded.... ------------");
  22. Console.WriteLine("Username:" + fuckname);
  23. Console.WriteLine("Password:" + password);
  24.  
  25.  
  26. Console.WriteLine("Injected............................................");
  27.  
  28.  
  29. Thread.Sleep(5000);
  30. Console.WriteLine("press any key to exit");
  31. Console.ReadKey();
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40. }
  41.  
  42.  
  43. }
  44.  
  45.  
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement