stans

why API booter is fake. (source cracked)

Nov 3rd, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.27 KB | None | 0 0
  1. proof that ViperStresser API Stresser C# Windows Form Application is fake.
  2. -----------------------------------------------------------------
  3. after months of having been questioned on why the C# form of API Stresser
  4. has not worked on the windowsform version of the tool, is because the tool
  5. is created by a secondary source, i was able to decrypt the C# application
  6. due to its low security and basic form enclosure. the source proves that
  7. the application is coded by a C# noob trying to troll users of the tool.
  8. the tool contains multiple useless buttonclick methods and after going
  9. through all the forms, there is no linked api or booter method and the tool
  10. is completely for looks, also, the login system is IO based. if you create
  11. a login it will save the login on your C Drive. proving that the tool is also
  12. false due to the fact that you have to use a server based login registry to
  13. access the tool, which allows your account to be verified if the tool is purchased,
  14. this login used on the tool is system based. evidence below.
  15. -----------------------------------------------------------------
  16.  
  17. // coding of the IO based login found in the source for the tool. \\
  18. -----------------------------------------------------------------
  19. private void button1_Click(object sender, EventArgs e)
  20. {
  21. if (username == textBox1.Text && password == textBox2.Text)
  22. {
  23. MessageBox.Show("You are now successfully logged in!", "Success!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
  24. this.Hide();
  25. Form2 lmaoxd1 = new Form2();
  26. lmaoxd1.Show();
  27. }
  28.  
  29. try
  30. {
  31. var sr = new System.IO.StreamReader("C:\\" + textBox1.Text + "\\login.ID");
  32. username = sr.ReadLine();
  33. password = sr.ReadLine();
  34. sr.Close();
  35.  
  36. if (username == textBox1.Text && password == textBox2.Text) ;
  37.  
  38.  
  39.  
  40.  
  41. else
  42. MessageBox.Show("invalid Username or Password!", "Error!", MessageBoxButtons.OK, MessageBoxIcon.Error);
  43.  
  44. }
  45. catch (System.IO.DirectoryNotFoundException ex)
  46. {
  47. MessageBox.Show("Invalid Username Or Password!", "Error!");
  48. }
  49. }
  50. -----------------------------------------------------------------
  51. as you can see, the tool creator created a basic if statement, if it finds the ''username, password''
  52. that is registered to the C drive of the operating system, it will allow the user to log in.
  53. this is the code alloting the tool to create a username and password document on the C drive
  54. (found in registerform.cs)
  55. -----------------------------------------------------------------
  56.  
  57. private void button1_Click(object sender, EventArgs e)
  58. {
  59. try
  60. {
  61. var sw = new System.IO.StreamWriter("C:\\" + textBox1.Text + "\\login.ID");
  62. sw.Write(textBox1.Text + "\n" + textBox2.Text);
  63. sw.Close();
  64. MessageBox.Show("Successfully Registered!", "Success!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
  65. Form1 form1 = new Form1();
  66. form1.Show();
  67. this.Hide();
  68. }
  69. -----------------------------------------------------------------
  70. as you can see, the tool creates a IO based login in the C drive. now you're probably
  71. wondering how does vs define the variables "username and password"
  72. the creator of this false working tool created public strings at the top of the forms.
  73. >> public string username, password; <<
  74. -----------------------------------------------------------------
  75. the buttonclick method that is supposed to send a attack to the IP inside the textbox on form4
  76. has no other code than a messagebox telling you that the server is offline, how can the form
  77. check for a online/offline server if there is no method in the tool that searches for server status?
  78. theres not even a if statement in the code.
  79. messageBox.Show("the server is currently offline :/ ", "error." , messageBoxButtons.OK, messageBoxIcon.Asterisk);
  80. -----------------------------------------------------------------
  81. this is my evidence that API booter is false. immature scums trolling the community and stealing money.
Add Comment
Please, Sign In to add comment