Discord tokens are stored inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Nuu-maan/Filly-Discord-Token-Filler/llms.txt
Use this file to discover all available pages before exploring further.
input/tokens.txt and are used to authenticate with Discord’s API when joining servers.
Token Format
Filly supports multiple token formats. Add one token per line ininput/tokens.txt.
Supported Formats
- Token only
- Email:Password:Token
- Username:Password:Token
The most common format - just the Discord token:
This format is recommended for most use cases.
Token Extraction
The tool automatically extracts the token from any format by splitting on colons and taking the last segment:Token Structure
Discord tokens have three parts separated by dots:MTIzNDU2Nzg5MDEyMzQ1Njc4OQ.GaBcDe.FgHiJkLmNoPqRsTuVwXyZ
- Part 1: Base64-encoded user ID
- Part 2: Base64-encoded timestamp
- Part 3: HMAC signature for authentication
Token Validation
Tokens are validated during the join process. Invalid tokens receive different responses:Response Codes
Token successfully joined the server. Saved to
output/joined.txt.Token is invalid or expired. Automatically removed from
input/tokens.txt and saved to output/invalid.txt.Token is locked or banned. Automatically removed from
input/tokens.txt and saved to output/locked.txt.Rate limited. The tool will continue with other tokens.
Token Management
Automatic Removal
The tool automatically removes problematic tokens frominput/tokens.txt:
- Return 401 (invalid)
- Return 403 (locked)
Tokens that encounter captcha or rate limits are not automatically removed, as they may still be valid.
Duplicate Removal
Duplicate tokens are automatically removed when loading:Join Tracking
Each token’s join count is tracked in memory:max_joins are saved to output/filled_tokens.txt.
Example Configuration
Basic Setup
input/tokens.txt
With Credentials
input/tokens.txt
Mixed Format
input/tokens.txt
All three formats can be mixed in the same file. The tool handles them automatically.
Security Best Practices
Troubleshooting
All tokens showing as invalid
All tokens showing as invalid
Common causes:
- Tokens are expired or revoked
- Incorrect token format (missing parts)
- Extra whitespace or line breaks
- Tokens from terminated accounts
- Verify token format matches Discord’s structure
- Remove any extra spaces or characters
- Test tokens manually using Discord’s API
- Generate fresh tokens
Tokens getting locked immediately
Tokens getting locked immediately
Common causes:
- Too many requests too quickly
- New accounts without verified email
- Accounts flagged for suspicious activity
- IP address is banned or flagged
- Increase delay between requests
- Use proxies to distribute requests
- Verify email addresses on accounts
- Use aged accounts instead of fresh ones
Tokens not being removed from file
Tokens not being removed from file
Common causes:
- File permission issues
- Token format mismatch (extra spaces)
- File is locked by another process
- Check file permissions on
input/tokens.txt - Ensure consistent token formatting
- Close other programs accessing the file
Token Privacy
Tokens are masked in console output for security:MTIzNDU2Nzg5MDEyMzQ1Njc4OQ.*****
Only the user ID portion (first part) is shown in logs.