Pain_R

WORDPRESS PLUGIN CHECKER

Apr 1st, 2014
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.89 KB | None | 0 0
  1. #!/bin/bash
  2. #(C)opyright ~ 2014 MrTieDie
  3. #Thanks to Red H4t Viper
  4. #Tnx 2 : Indonesian Hacker & Malaysian Hacker
  5.  
  6. target=$1
  7. function v_check()
  8. {
  9. reset
  10. echo -e '\E[32m'"[>] ~#Wordpress Plugin Checker#~"; tput sgr0
  11. echo -e '\E[32m'"[>] ReCoded By MrTieDie"; tput sgr0
  12. echo -e '\E[32m'"[>] Indonesian Hacker"; tput sgr0
  13. echo -e '\E[32m'"[*] "; tput sgr0
  14.  
  15. echo -e '\E[31m'"[*] Start"; tput sgr0
  16.  
  17. for lst in `cat list-v.lst`
  18.      do
  19.      GET -sd "$target/$lst" | grep "OK" >> /dev/null;check2=$?
  20.      if [ $check2 -eq 0 ]
  21.         then
  22.         echo -e '\E[36m'"[OK] $target/$lst"; tput sgr0
  23.         echo -e "$target$lst" >>finded.txt
  24.      else
  25.         echo -e "[NO] $target/$lst "
  26.      fi
  27.    done
  28.  
  29. echo "[*]"
  30. echo -e '\E[31m'"[*] Finish"; tput sgr0
  31. }
  32.  
  33. v_check;
  34.  
  35. #-----------------------#
  36. #RCoded by MrTieDie #
  37. #-----------------------#
Advertisement
Add Comment
Please, Sign In to add comment