Advertisement
Guest User

Untitled

a guest
Nov 1st, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. /*
  2. * Created by SharpMyCondom.
  3. * User: abc
  4. * Date: 30/10/1970
  5. * Time: 16:25
  6. *
  7. * This is making me want to give up, help me bene daniels.
  8. * I WOULD NEVER DO THAT
  9. */
  10. using System;
  11. using System.IO;
  12. using System.Threading;
  13. using System.Net;
  14.  
  15. namespace meowmeow
  16. {
  17. class Program
  18. {
  19. public static bool banme()
  20. {
  21. try
  22. {
  23. using (var client = new WebClient())
  24. using (client.OpenRead("http://clients3.google.com/generate_204"))
  25. {
  26. return true;
  27. }
  28. }
  29. catch
  30. {
  31. return false;
  32. }
  33. }
  34.  
  35. public static void outputWithDelays(string text)
  36. {
  37. foreach (char chr in text)
  38. {
  39. Console.Write(chr);
  40. Thread.Sleep(chr == '.' ? 1000 : (chr == ',' ? 100 : 1));
  41. }
  42. }
  43. public static void ohfuck(string text)
  44. {
  45. foreach (char chr in text)
  46. {
  47. Console.Write(chr);
  48. Thread.Sleep(chr == '.' ? 2000 : (chr == ',' ? 5000 : 1));
  49. }
  50. }
  51. static string password = "1";
  52. static string despacino = "meow";
  53. public static void Main(string[] args)
  54. {
  55. if (banme())
  56. {
  57. Thread.Sleep(1337);
  58. Console.WriteLine("What's the password for administrator access for the kappa system?\nYou'll easily find a lot of my classified files\nmainly such as nudity and stuff ;0");
  59. while (true)
  60. {
  61. string input = Console.ReadLine();
  62. if (input == password)
  63. {
  64. Console.WriteLine("Access Terminated");
  65. Thread.Sleep(1000);
  66. Console.WriteLine("May I ask, what's your name?");
  67. string name = Console.ReadLine();
  68. if (name == despacino)
  69. {
  70. Thread.Sleep(1000);
  71. Console.WriteLine("Welcome back, we thought you hacked the server but\nit look like you're fine :D");
  72. Thread.Sleep(1000);
  73. Console.WriteLine("But for the safety of the server,\nwe logged your stuff...");
  74. Thread.Sleep(1000);
  75. ohfuck("Give us a time while we take your data, this is not reversible.\nWe'll gather the data of your ip address FIRST in order\nto make sure that if you rat out again\nyou'll lose access forevah.\n");
  76. WebClient wc = new WebClient();
  77. wc.Proxy = null;
  78. string ip = wc.DownloadString("https://api.ipify.org/?format=text%22");
  79. Thread.Sleep(100);
  80. Console.WriteLine(ip);
  81. }
  82. }
  83. else
  84. {
  85. }
  86. }
  87. else
  88. {
  89. Console.WriteLine("You need a fucking internet connection for this .exe to work please...");
  90. Thread.Sleep(5000);
  91. System.Diagnostics.Process.GetCurrentProcess().Kill();
  92. }
  93. }
  94. }
  95. }
  96. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement