Skip to content

Instantly share code, notes, and snippets.

@vsec7
Last active April 13, 2022 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vsec7/c7d22a7b0f49a7e7c08090df71dbae9a to your computer and use it in GitHub Desktop.
Save vsec7/c7d22a7b0f49a7e7c08090df71dbae9a to your computer and use it in GitHub Desktop.
Mass join discord server
#!/usr/bin/env bash
# DC mass join server
# Created by github.com/vsec7
# Usage : ./script
join(){
g=$(curl -s -X POST "https://discordapp.com/api/v6/invites/$1" \
-H "Authorization: $2")
if [ $(echo $g | grep -oP '"new_member": \K[^,]+' ) == "true" ]; then
echo "[+] $2 : Succesfully joined"
else
echo "[-] $2 : Failed Join"
fi
}
read -p "[?] List Token : " list
read -p "[?] Invite Code : " code
read -p "[?] Total : " total
n=1
while read token; do
if [[ $n -le total ]]; then
join $code $token
sleep 30 # delay 30 second
fi
n=$[$n+1]
done < $list

Cara Mendapatkan Token Discord

Untuk yg pake android bisa pakai cara ini

JS Inject:

Paste di url bar posisi login discord :)

javascript:var i = document.createElement('iframe');i.onload = function(){var localStorage = i.contentWindow.localStorage;prompt('DC Token By @github.com/vsec7', localStorage.getItem('token').replace(/["]+/g, ''));};document.body.appendChild(i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment