Advertisement
AZZATSSINS_CYBERSERK

DORKER

Dec 23rd, 2019
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.53 KB | None | 0 0
  1. #Coded By AchonkJust - Extreme Crew
  2. #issued 10-mei-2018
  3. #Google Dorker
  4. #!/bin/bash/sh
  5. putih='\033[0m'
  6. ijo='\e[38;5;82m'
  7. merah='\e[38;5;196m'
  8. echo "wait.... iam checking my request"
  9. link=$(sudo apt-get install lynx | grep -o "installed" | head -1)
  10. if [[ "$link" = "installed" ]]; then
  11.     echo "ready bos `whoami`"
  12. else
  13.     echo "installing my request.."
  14.     sudo apt-get install -qq lynx
  15.     echo "Done Checking.."
  16. fi
  17. dir="Achonkjust"
  18. if [ ! -d Achonkjust/google.com ]; then
  19.     mkdir $dir
  20. fi
  21.  
  22.  google(){
  23.     echo -n "Input Your Dork : "
  24.     read dork
  25.     lynx --dump "https://google.com/search?q=$dork" | grep -Po "(?<=url\?q=).*?(?=\&)" >> Achonkjust/resultgoogle.txt
  26. lynx --dump "https://google.com/search?q=$dork" | grep "search?q=" | tail | gawk -F/ '{ print $4 }' >> Achonkjust/page.txt
  27. for ngambil in $(cat Achonkjust/page.txt); do
  28.     ambilsemua=$(lynx --dump https://www.google.com/$ngambil | grep -Po "(?<=\/url\?q=).*?(?=\&)")
  29.     echo "$ambilsemua"
  30.     echo "$ambilsemua" >> Achonkjust/resultgoogle.txt
  31.     done
  32.     printf "${ijo} saved to ${dir}/resultgoogle.txt ${putih}\n"
  33.     rm -f Achonkjust/page.txt
  34. }
  35. bing(){
  36.     echo -n "Put yur dork : "
  37.     read dork
  38.      lynx --dump https://www.bing.com/search?q=$dork | grep http |  grep -v "bing" | grep -v "javascript" | grep -v "microsoft"
  39.     lynx --dump "https://www.bing.com/search?q=$dork" | grep "search?q=" | grep "first" | gawk -F/ '{print $4}' >> Achonkjust/bing.txt
  40.     for more in $(cat ${dir}/bing.txt); do
  41.     ambilbing=$(lynx --dump "https://www.bing.com/$more" | grep "http" | grep -v "bing" | grep -v "javascript" | grep -v "microsoft")
  42.     echo "$ambilbing"
  43.     echo "$ambilbing" >> ${dir}/resultbing.txt
  44. done
  45.     printf "${ijo} Resul Saved to ${dir}/resultbing.txt ${putih}\n"
  46.     rm -f ${dir}/page.txt
  47. }
  48.  header(){
  49. printf "${ijo}"
  50. printf "     ___        __                _____ _____ _____   _       ________    \n"
  51. printf "    /   | _____/ /_  ____  ____  / ___// ___// ___/  (_)_  __/ ____/ /_   \n"
  52. printf "   / /| |/ ___/ __ \/ __ \/ __ \/ __ \/ __ \/ __ \  / / / / /___ \/ __/   \n"
  53. printf "  / ___ / /__/ / / / /_/ / / / / /_/ / /_/ / /_/ / / / /_/ /___/ / /_     \n"
  54. printf " /_/  |_\___/_/ /_/\____/_/ /_/\____/\____/\____/_/ /\__,_/_____/\__/     \n"
  55. printf "===============Multi Dorker====================/___/ By Extreme.Crew      \n"
  56. }
  57. clear
  58. header
  59. printf "$GREEN"
  60. echo "1.Google.com"
  61. echo "2.Bing.com"
  62. printf "$NC"
  63. echo -n "Select Search Enggine [1/2]: "
  64. read colok
  65.     if [ $colok -eq 1 ]; then
  66.         google
  67. elif [ $colok -eq 2 ]; then
  68.     bing
  69. else
  70.     echo "1 atau dua pilih aku atau dia yang engkau suka"
  71. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement