This Config Does Not Support The Provided: Openbullet
The error message "This Config Does Not Support The Provided Wordlist Type" in OpenBullet occurs when the format of your imported wordlist (e.g., Email:Pass or User:Pass) does not match the data types allowed in the configuration's settings. Core Cause
Every OpenBullet config is designed to handle a specific format of data. If you try to run a configuration set for Credentials (standard User:Pass) with a wordlist that the system identifies as a different type (like Emails or URLs), the job will fail to start. How to Fix the Error 1. Update Configuration Settings
You need to tell the configuration that it is allowed to accept your wordlist type.
Open the Config: Go to the Configs tab and select the config giving you trouble.
Navigate to Settings: Go to Config Settings > General (or Data in some versions).
Change Wordlist Type: Look for a section labeled Allowed Wordlist Types.
Add Your Type: If your wordlist is Email:Pass, ensure that Credentials or MailPass is moved to the "Allowed" side.
Save: Don't forget to save the config before trying to run the job again. 2. Check the Environment.ini File
If the wordlist type you need isn't appearing as an option, you may need to define it in your environment settings.
Navigate to your OpenBullet folder and find UserData\Environment.ini (OB2) or Settings\Environment.ini (OB1).
Ensure it contains the correct regex for your type. For standard credentials, it should look like:
[WORDLIST TYPE] Name=Credentials Regex=^.*:.*$ Separator=: Slices=USERNAME,PASSWORD Use code with caution. Copied to clipboard
Restart OpenBullet after making changes to this file to ensure they take effect. 3. Verify Wordlist Formatting
Ensure your actual text file matches the expected separator (usually a colon :). If your wordlist uses semicolons ; but the config expects colons, OpenBullet may fail to recognize the type correctly. Quick Troubleshooting Tips
Manual Override: In some cases, you can simply rename your wordlist type to "Credentials" when importing it to force compatibility, provided the internal script logic matches.
Stacker View: Ensure you are saving changes from the Stacker view to confirm they are written to the config file.
OB1 vs. OB2: If you are using an old .loli config in OpenBullet 2, it may not automatically detect the correct wordlist types due to different default settings.
Are you working with a custom wordlist format, or are you using a standard User:Pass list?
OpenBullet uses specific data formats (like Credentials, Emails, or Cards) to know how to parse your input file. If a config is built to use UserPass (username:password) but you try to run it with a MailPass (email:password) wordlist, it will trigger this error. How to Fix It Check the Config Requirements: In OpenBullet, go to the Configs tab.
Find your config, select it, and go to Other Options -> Data. Openbullet This Config Does Not Support The Provided
Look for Allowed Wordlist Types. This tells you exactly what format the config expects (e.g., Credentials). Verify Your Wordlist Settings: Go to the Wordlists tab. Check the entry for the wordlist you are trying to use.
Ensure the Type dropdown for that wordlist matches one of the "Allowed Wordlist Types" you found in the config. Adjust and Re-select:
If they don't match, you can either change the type of your Wordlist in the Wordlists tab or add the new type to the "Allowed Wordlist Types" in the config settings.
After making changes, you may need to re-select the config in the Runner to refresh the settings.
Are you using a custom wordlist format, or is this a standard User:Pass list?
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
[REQUEST] Wordlist with Multiple Types · Issue #590 - GitHub
"This Config Does Not Support The Provided" in OpenBullet typically occurs when the configuration (.loli or .anom file) is being used with a it wasn't designed for Common Causes and Fixes Data Type Mismatch : The config might be built for Credentials
(Email:Password or User:Pass), but you are trying to run it with a list of : Check the tab in OpenBullet. Ensure the Input Data Type matches your wordlist. If the config requires Email:Pass and you provide , it may fail if it specifically looks for an "@" symbol. Missing or Incorrect Captures
: The config is looking for a specific data field (like a "Numeric" PIN or a "SSN") that isn't present in your text file.
: Verify the format required by the config author. Usually, this is listed in the config's notes or the block of the LoliScript. Config Version Incompatibility : You are trying to run an OpenBullet 1 OpenBullet 2 (Native) without importing it correctly, or vice-versa.
: Use the "Import" function in OB2 to convert legacy configs, or ensure you are using the specific version of the environment (OpenBullet, SilverBullet, or Anomaly) the config was built for. Proxies vs. Proxyless
: If the config is set to "Proxyless" but you have loaded a proxy list into the runner, it may trigger a support error in certain modded versions of the software.
: Disable proxies in the Runner settings if the config is meant to run hits directly. How to Check the Required Format Config Manager Right-click the config and select Look at the Settings > General Accepted Data Types
field. It will show you exactly what format the config expects (e.g., Are you trying to run a specific data format like a combo list, or is this happening with
It sounds like you're running into a common technical error in OpenBullet
(a web testing suite). While "This Config Does Not Support The Provided Input" (or similar wording) is a specific error message rather than a traditional essay topic, I can certainly break down why this happens and how to fix it in an educational format.
Here is a breakdown of the issue, structured to help you understand the mechanics behind the error. Understanding the "Config Input" Error in OpenBullet Introduction The error message "This Config Does Not Support
OpenBullet is a powerful automation tool used primarily for data parsing and web scraping. At its core, it relies on
—sets of instructions that tell the software how to interact with a specific website. One of the most frequent hurdles users face is the error message stating that a config does not support the provided input. This usually points to a mismatch between the data source config logic The Root Cause: Format Mismatch The primary reason for this error is a formatting discrepancy
. When you create or load a config, you define what kind of input it expects. This is usually defined in the "Stacker" or "Settings" tab under the Input Data section. Common formats include: Credentials (User:Pass or Email:Pass): The most standard format. Used for single strings like API keys or tokens. Used for bulk URLs or specific IDs.
If your config is set to "Email:Pass" but you upload a list that only contains "Username:Pass," the software will fail to parse the line, triggering the error. Data Parsing and the "Slice" Logic
Inside the config, the software uses "Slices" to chop up your input data. If a config is hardcoded to look for a colon (
) as a separator to split an email from a password, but your data uses a semicolon (
) or a comma, the logic breaks. The config effectively looks at the data and says, "I don't know how to read this," resulting in the "not supported" message. Environment and Version Compatibility Sometimes, the issue isn't the data, but the environment
. OpenBullet has several versions (v1, SilverBullet, OpenBullet 2). A config built for OpenBullet 1 (.loli) will not natively run in OpenBullet 2 (.opk) without conversion. Attempting to force a config into a version of the software it wasn't built for often results in an input error because the engine interprets the instructions differently. How to Fix It Check your Wordlist Type:
Ensure your wordlist type (e.g., Default, Credentials, Numeric) matches what the config requires in its metadata. Verify the Separator:
Open your data file in a text editor. Ensure it uses the exact separator (usually a colon) that the config expects. Inspect the Config Header:
Open the config in the "Debugger" and check if it has specific "Allowed Types." If your data type isn't on that list, you'll need to add it or change your data to match. Conclusion
The "Config Does Not Support Provided Input" error is a safeguard, not a bug. It prevents the software from running "blind" and wasting resources on data it cannot properly process. By ensuring that your input format data separators software versions
are in sync, you can resolve the issue and ensure smooth automation. Are you trying to fix a specific config right now, or were you looking for a more academic analysis of how these tools handle data structures? AI responses may include mistakes. Learn more
This error usually pops up in OpenBullet when the configuration file (.loli or .anom) you are using is missing the necessary settings for the type of data you are trying to process (e.g., trying to run a "Proxyless" config with proxies, or using a "Login" config for "Sign up" data). 💡 Common Causes
Data Type Mismatch: The config is built for Email:Pass but you loaded User:Pass.
Proxy Settings: The config is hardcoded for a specific proxy type (or none at all).
Missing Inputs: The config requires a specific custom input that isn't provided.
Version Issues: Using an OpenBullet 2 config in SilverBullet or vice versa. 🛠️ How to Fix It
Check the Config Header: Open the config in the "Stacker" or "Editor" tab. Check the "Data Type" setting and ensure your wordlist matches it. Error Explanation: "Openbullet This Config Does Not Support
Toggle Proxy Mode: If the error mentions proxies, try switching the "Proxies" button to "On" or "Off" depending on the config's requirements.
Review "Custom Inputs": Some configs require you to enter a specific API key or URL in the "Input" field before starting.
Check "Accept Service": Ensure the wordlist you are using is accepted by the config's specific target site.
🚀 Pro Tip: Always check the Log tab at the bottom of the Runner; it will usually tell you exactly which requirement is missing.
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.
When the Error Persists: Advanced Troubleshooting
If you have tried all the above and the error remains, the issue may be deeper:
- Antivirus or Windows Defender: Sometimes, antivirus software quarantines parts of OpenBullet, leading to corrupted config parsing. Disable real-time protection temporarily or add OpenBullet folder to exclusions.
- DotNet Framework Issues: OpenBullet runs on .NET. A corrupted .NET installation can cause string parsing errors. Repair or reinstall .NET Framework 4.8 or higher.
- Config Encryption: Some configs are encrypted with a password. Without the correct password, the config will load but the internal data structure remains unreadable, triggering this error. Only the config author can fix this.
Step 5: Update Your Fork
A niche but real cause: older versions of OpenBullet (pre-2020) have a bug where long lines or Unicode characters cause false positives for "does not support input." Update to OpenBullet 2 or the latest Ruri fork to resolve underlying parser bugs.
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).
2. The Slicer Configuration
Sometimes, the format is technically correct (e.g., it is an Email:Pass list), but the config doesn't know which part of the line is the email and which is the password.
OpenBullet uses a "Slicer" to cut the data lines into variables like <USER>, <PASS>, or <EMAIL>.
The Problem:
The config might be looking for data separated by a specific character (delimiter). If your wordlist uses : (colon) but the config expects ; (semicolon) or a tab space, the slicer fails, and the config reports that it doesn't support the input.
The Fix:
- Open the Config editor.
- Navigate to the Start Block or the Settings section (depending on your OB version).
- Look for the Slicer or Input Data settings.
- Check the Delimiter setting.
- Most configs use
:as the separator. - Ensure the variables are mapped correctly (e.g.,
Slice 1= Email,Slice 2= Password).
- Most configs use