Wordlist Type Upd — Openbullet This Config Does Not Support The Provided

If you are using an external text editor like Notepad++, you can manually update the configuration file.

In OpenBullet, every wordlist is assigned a specific type (e.g., Credentials , Emails , URLs ) during import. Simultaneously, each configuration (config) specifies which wordlist types it is compatible with. If you attempt to run a Multi Run Job using a wordlist typed as MAC with a config that only allows Credentials , the software will block the job from starting to prevent processing errors. How to Resolve the Mismatch

Wordlists are essentially text files containing a list of words, phrases, or combinations that are used to test the strength of passwords or to authenticate with a system. OpenBullet supports various wordlist types, but not all configurations are compatible with every wordlist type. If you are using an external text editor

A common real‑world example comes from users trying to run Loli‑format configs (originally built for OpenBullet 1) on OpenBullet 2. The system strictly checks whether the wordlist type matches the config's requirements. Even if the wordlist itself is perfectly formatted, a mismatch in type will cause the job to be rejected.

Maps parts of a line (separated by a character like : ) to variables used in the script (e.g., input.USER ). If you attempt to run a Multi Run

: Use a text editor like Notepad++ or a Python script to strip domain names if you need pure usernames, or use Method 2 to force the config to accept email formats. Summary Checklist for Troubleshooting

: OpenBullet defaults to using a colon ( : ) to split data. If your file uses semicolons ( ; ) or commas ( , ), the parser will fail. Change the delimiter in the Environment settings or use a text editor to find and replace the characters. A common real‑world example comes from users trying

If a config is hardcoded to accept only Credentials (formatted as username:password ), but you attempt to run it using a wordlist imported as Emails (formatted as email@domain.com ), OpenBullet triggers this error to prevent the runner from processing incompatible data. How Wordlist Types Work in OpenBullet

One of the most common errors that interrupts a runner is: This config does not support the provided wordlist type .

| If you see this error... | Likely cause | Quick fix | |-------------------------|--------------|------------| | does not support Email:Pass | Config expects User:Pass but you gave Email:Pass | Strip domain from email | | does not support Email only | Config expects Email:Pass but you gave just emails | Append :password123 | | does not support User only | Config expects User:Pass but you gave just usernames | Append :pass | | does not support Line | Config expects a special format | Check config notes |