Just get data of (nearly) all of Discord guild members. Or track deleted and edited messages. Or why not both?
This app uses fork of discord.js-selfbot-v13.
"I don't take any responsibility for blocked Discord accounts that used this module. Using this on a user account is prohibited by the Discord TOS and can lead to the account block."
- By using binaries:
- Download binary from the Releases tab.
- Fill in the
.env
file. - Run the binary.
- By using source code:
- Clone this repository.
- Make sure that you have Node.JS v18 installed.
- Install dependencies by using
yarn
. - Fill in the
.env
file and place it insrc
directory. - Run
npm start
.
All results will be stored in the logs
and media
directories.
You can use some default options from the already provided .env file.
- When you want to dump guild members, set
MODE
toMEMBERS
and setGUILD_ID
: The guild ID you want to get data from.CHANNEL_ID
: The channel ID, which also will be used to get data from.SPACING
: Spacing between columns in output file.TOKEN
: Your Discord account token.DELAY
: Delay between some requests.DICTIONARY
: Characters used by the bruteforce method. Case-insensitive, duplicates are ignored, sorted alphabetically.DATE_FORMAT
: format of the parsed date (refer to the Day.js manual).DATE_LOCALE
: locale used in the parsed date (list of supported locales).
- When you want to trace deleted and edited messages, set
MODE
toWATCHDOG
and setGUILD_ID
: The guild ID you want to get data from. Set toall
, if you want to receive data from all available guilds.TOKEN
: Your Discord account token.
- Q: I'm getting
GUILD_MEMBERS_TIMEOUT
errors. Help!
A: Increasedelay
time in config.