Openbullet This Config Does Not Support The Provided Direct
Mismatch in Config SettingsEach config has an "Allowed Wordlist Types" setting. If your wordlist is categorized as Credentials but the config only allows MailPass, the runner will block the job.
Fix: Go to the Config Manager, edit the config, navigate to Other Options (or Data tab in OB2), and ensure the wordlist type you are using is moved to the Allowed side.
Environment.ini MisconfigurationThe Environment.ini file defines the rules (regex) for what constitutes a valid wordlist type. If your wordlist doesn't match the regex defined for its type, OpenBullet may fail to process it.
Fix: Check your Environment.ini (located in the UserData folder). Ensure the regex for types like Credentials or UserPass matches your data (e.g., ^.:.$ for a standard colon separator).
Incorrect Data Selection in the RunnerWhen starting a new job, the Runner requires you to select both a config and a wordlist. If the wordlist was imported with the wrong type assigned to it, the conflict triggers this error.
Fix: Re-import your wordlist and explicitly select the type that matches your config's requirements (e.g., Credentials, URLs, or Emails).
Version Incompatibility (OB1 vs. OB2)Configs for OpenBullet 1 (.loli) and OpenBullet 2 (.opk) handle data types differently. While OB2 can often import older configs, manual adjustments to the data settings are frequently needed after the import. Quick Checklist for Fixing Open Config Manager: Check the Data or Other Options tab.
Verify Allowed Types: Ensure your specific wordlist type is in the "Allowed" list.
Save & Rescan: Always save the config and click "Rescan" in the Runner after making changes to ensure they take effect.
Are you using OpenBullet 1 or OpenBullet 2, and what is the specific Wordlist Type you are trying to run?
2. The Config is Built for "Auto" Mode Only
Many advanced configs use the "Auto" data type. These configs expect a very specific number of columns. For example, a config for a gift card checker might require CardNumber|ExpiryMonth|ExpiryYear|CVV. If you provide a simple CardNumber:CVV pair, the config will throw this error because it cannot find the 3rd or 4th variable.
1. The Wordlist Type Mismatch
This is the most frequent culprit.
Every OpenBullet config is programmed to accept a specific "Input Type." When a developer makes a config, they usually choose one of three standard types: Openbullet This Config Does Not Support The Provided
- User:Pass (e.g.,
john:password123) - Email:Pass (e.g.,
john@email.com:password123) - User (Just a username, usually for combolists without passwords)
The Problem:
If you load a User:Pass wordlist, but the Config is set to expect an Email:Pass format, OpenBullet will reject the input because it doesn't know how to handle the data structure (or the config has validation logic checking for @ symbols that aren't there).
The Fix:
- Open your Wordlist manager in OpenBullet.
- Look at the "Type" of the wordlist you have loaded.
- Check the ReadMe or the title of the Config you downloaded.
- Ensure they match. If the config requires
Email:Pass, you cannot use aUser:Passlist.
How to Fix the Error in Three Common Scenarios
Conclusion
The error message "Openbullet this config does not support the provided" is fundamentally a polite way of saying: "You gave me a fish when I was expecting a bicycle." The config expects a specific data structure (User:Pass, Email:Pass, or Auto with N columns), and your combolist provides something else.
By systematically checking the config’s DataType setting, converting your combolist to match it, and sanitizing your input file for blank or corrupt lines, you can eliminate this error entirely. Remember: 90% of these errors are solved by either changing the Runner’s dropdown from "Auto" to "User:Pass" or by running your combolist through a simple regex cleanup.
Now go fix that config and get back to testing.
Disclaimer: OpenBullet and similar tools are intended for security research, penetration testing with explicit permission, and educational purposes. Unauthorized use against systems you do not own is illegal. The author assumes no liability for misuse of this information.
OpenBullet configurations are programmed to process specific data formats (e.g., Credentials, Email:Pass, User:Pass, or custom types). If you attempt to run a config designed for "Email:Pass" with a wordlist you have imported as "User:Pass," the software blocks the job to prevent logic errors. How to Fix the Error
To resolve this, you must align the wordlist type with what the configuration expects: Check Config Requirements:
Open the OpenBullet Configuration Manager and select the config you want to use. Go to the Other Options tab (or Data section in OB2).
Look for the Allowed Wordlist Types list. This shows exactly which formats the developer has authorized for this config. Re-Import the Wordlist:
If your wordlist is technically correct (e.g., it contains emails) but was imported with the wrong label, delete it from the Wordlists tab.
Click Add to re-import it, and this time, select the Type that matches the config’s allowed list. Modify the Config (Advanced): Mismatch in Config Settings Each config has an
If you are the developer or want to override the restriction, you can manually add your desired Wordlist Type to the config’s allowed list in the Other Options settings.
Alternatively, you can edit your Environment.ini file to define new, more general regex types (like Credentials) that accept multiple formats. Version Compatibility Note
If you are using OpenBullet 2, ensure you are importing modern .opk files or correctly formatted .loli files. Some older legacy configs from OpenBullet 1 may require you to re-select or rescan them in the manager to update their environmental settings.
Do you need help defining a custom Wordlist Type in your Environment.ini to bypass this error permanently?
This config does not support the provided Wordlist Type (MAC)
This config does not support the provided Wordlist Type (MAC) - Questions - OpenBullet. discourse.openbullet.dev
cant uploade configs · Issue #260 · openbullet/OpenBullet2
It sounds like you're looking for a text that explains or addresses the error message:
"Openbullet This Config Does Not Support The Provided" — likely encountered when using OpenBullet (a web testing tool) with a mismatched config file.
Here’s a sample explanation and troubleshooting text you can use:
Error Explanation: "Openbullet This Config Does Not Support The Provided"
When using OpenBullet, you may encounter the error:
"This config does not support the provided..."
This typically means the configuration file (.loli or .opk) you are trying to run is incompatible with the input data (e.g., combos, proxies, or custom input) you've supplied. User:Pass (e
What Does The Error Mean?
OpenBullet is an automation tool, but it isn't telepathic. It relies on specific instructions within a configuration file (the .loli or .ob file) to tell it how to treat the data you feed it.
When you see the "does not support" error, it means there is a mismatch between the format of the data in your Wordlist and the format the Config expects.
Think of it like trying to put a square peg in a round hole. The config is asking for a specific shape (data format), and you are providing a different one.
Conclusion
The "This config does not support the provided" error is essentially OpenBullet's way of telling you it's confused. It’s a data formatting issue, not a software bug.
By double-checking your Wordlist type against the Config's requirements and ensuring your slicers are set up correctly, you can clear this error in seconds and get back to what matters: checking your accounts.
Have a specific OpenBullet error you'd like us to cover? Drop a comment below!
How to Diagnose and Fix It Step-by-Step
If you are staring at the error right now, follow this troubleshooting flow:
Step 1: Verify Your List Open your wordlist text file. What does the data look like?
- Does it have emails? It’s likely an Email:Pass config.
- Does it have just usernames? It might require a "User" type.
- Does it have extra data (like
user:pass:country)? You might need to edit the config's slicer to ignore the third variable.
Step 2: Check the Config Info
Most config creators include a .txt file with their download or put the requirements in the config name.
- Look for tags like
[E:P],[U:P], or[MAIL]. - If the config requires "Mail Access" (a specific type of email list), a standard Email:Pass list won't work if the config checks for IMAP settings.
Step 3: Adjust the Environment (The "Workaround") If you have a User:Pass list but the config demands Email:Pass, you have two options:
- Filter your list: Use a tool like OpenBullet's built-in tools or a text editor (like Sublime Text) to filter your wordlist to only show lines containing
@. - Edit the Config: Go into the config settings and change the "Supported Input" from Email:Pass to User:Pass (assuming the target site actually allows usernames to login).
Overview
When running a config in OpenBullet (or OpenBullet 2), you may encounter the error:
“This config does not support the provided…”
The message usually ends with “input”, “data”, “wordlist type”, or “key”.
This indicates a mismatch between what the config expects and what you’ve supplied (e.g., wrong wordlist format, missing variables, incorrect data type).