Advertisement
Guest User

ION CHECKER v1

a guest
Apr 19th, 2019
2,019
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 5.59 KB | None | 0 0
  1. using System;
  2. using System.Threading;
  3.  
  4. namespace ION CHECKER
  5. {
  6.     class Checker
  7. {
  8.  
  9.     static void Main()
  10.     {
  11.  
  12.  
  13.  
  14.  
  15.                 //resetr = r
  16.                 //scanf(resetr)
  17.                 //if resetr = 'r'
  18.                 //goto start
  19.  
  20.  
  21.  
  22.             //large logo
  23. Console.WriteLine("██╗ ██████╗ ███╗   ██╗     ██████╗██╗  ██╗███████╗ ██████╗██╗  ██╗███████╗██████╗ ");
  24. Console.WriteLine("██║██╔═══██╗████╗  ██║    ██╔════╝██║  ██║██╔════╝██╔════╝██║ ██╔╝██╔════╝██╔══██╗");
  25. Console.WriteLine("██║██║   ██║██╔██╗ ██║    ██║     ███████║█████╗  ██║     █████╔╝ █████╗  ██████╔╝");
  26. Console.WriteLine("██║██║   ██║██║╚██╗██║    ██║     ██╔══██║██╔══╝  ██║     ██╔═██╗ ██╔══╝  ██╔══██╗");
  27. Console.WriteLine("██║╚██████╔╝██║ ╚████║    ╚██████╗██║  ██║███████╗╚██████╗██║  ██╗███████╗██║  ██║");
  28. Console.WriteLine("╚═╝ ╚═════╝ ╚═╝  ╚═══╝     ╚═════╝╚═╝  ╚═╝╚══════╝ ╚═════╝╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝");
  29.  
  30.  
  31.  
  32.  
  33. //large logo
  34.         Console.WriteLine();
  35.         Console.WriteLine();
  36.         Console.WriteLine();
  37.         Console.WriteLine();
  38.         Console.WriteLine();
  39.         Console.WriteLine();
  40.         Console.WriteLine();
  41.         Console.WriteLine("Ion Checker Created By L33Twithin#3637 and Harze#7258");
  42.         Console.WriteLine("Terms Of Service:");
  43.         Console.WriteLine("ION CHECKER is a proof of concept.");
  44.         Console.WriteLine("The creators of ION CHECKER do not endorse hacking or cracking in any form");
  45.         Console.WriteLine("The creators of ION CHECKER are not responsible for use of the program");
  46.         Console.WriteLine("The creators of ION CHECKER and associates reserve the right to modify the Terms Of Service at any time.");
  47.         Console.WriteLine("Using cracked/unlicensed versions of ION CHECKER will result in a lawsuit of up to 500 dollars");
  48.         Console.WriteLine("Distribution of ION CHECKER without express permission of its creators will result in a fine of up to 3000 dollars and you will be prosecuted to the full extent of the law.");
  49.         Console.WriteLine("By using ION CHECKER you agree to the Terms Of Service");
  50.         Console.WriteLine("If you do not agree to said Terms Of Service, please quit the program.");
  51.         Thread.Sleep(2000);
  52.             Console.WriteLine("Thanks For Using ION FORTNITE CHECKER v1.0");
  53.             Console.WriteLine("Login: ")
  54.             Console.WriteLine("Please Enter Auth Key: ");
  55.         string authkey;
  56.         authkey = Console.ReadLine();
  57.         Console.Write(authkey);
  58.         Console.WriteLine();
  59.             Thread.Sleep(500);
  60.             Console.Write("Enter Username:");
  61.         string username;
  62.             username = Console.ReadLine();
  63.             Console.Write( username);
  64.         Thread.Sleep(500);
  65.         Console.Write("Enter Password: ");
  66.         string password;
  67.         password = Console.ReadLine();
  68.         Thread.Sleep(500);
  69.         Console.Write(password);
  70.         Thread.Sleep(500);
  71.         Console.Write("Please Run Program As Administator If Not, Aswell, Please Exclude Whole File Directory From From Your Anti-Virus. Otherwise, Errors Might Occur");
  72.         Thread.Sleep(500);
  73.         Console.WriteLine("What proxy type would you like to use? Please type in the corresponding number.");
  74.         Console.WriteLine("1. Http");
  75.         Console.WriteLine("2. Socks4");
  76.         Console.WriteLine("3.Socks5");
  77.  
  78.         Console.WriteLine("Please type in your proxy files address:");
  79.             var proxys = Console.ReadLine();
  80.             Console.WriteLine("Are you sure you want to use" + proxys + "for your proxys? (Y/N)");
  81.             string proxyAsk;
  82.             proxyAsk = Console.ReadLine();
  83.  
  84.         if (proxyAsk = "No" || "NO" || "N")
  85.             {
  86.  
  87.                 Console.WriteLine("Please Come Back Later! Or, if you want to use a different file, reset the program using the Q key.");
  88.  
  89.  
  90.             }
  91.  
  92.             Console.WriteLine("Please Type In Your Combo Files Address:");
  93.             string combos;
  94.             combos = Console.ReadLine();
  95.             Console.WriteLine("Are you sure you want to use " + combos +"for your comobos? (Y/N)");
  96.         string comboAsk;
  97.             comboAsk = Console.ReadLine();
  98.  
  99.             if (comboAsk = "No"||"NO"||"N")
  100.             {
  101.  
  102.                 Console.WriteLine("Please Come Back Later! Or, if you want to use a different file, reset the program using the Q key.");
  103.  
  104.             }
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.     }
  113.     private static string GetCpuId()
  114.     {
  115.         Console.WriteLine("GetCpuId");
  116.         var managClass = new ManagementClass("win32_processor");
  117.         var managCollec = managClass.GetInstances();
  118.  
  119.         foreach (ManagementObject managObj in managCollec)
  120.         {
  121.             //Get only the first CPU's ID
  122.             return managObj.Properties["processorID"].Value.ToString();
  123.         }
  124.         return string.Empty;
  125.     }
  126.  
  127. }
  128.  
  129.    
  130.  
  131. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement