Incapsula RBZID CAPTCHA Solving Service

Professional Incapsula RBZID verification solution that rapidly generates valid verification headers and efficiently bypasses rbzid verification mechanisms

Active Standard Price High Success Rate
πŸš€ Get Free API Key
Register NoCaptcha.io Now β†’
Professional CAPTCHA Solutions | High Success Rate | Fast Response | 24/7 Support

πŸ”₯ Product Advantages

Why Choose Our Incapsula RBZID Solution

  • 🌐 Professional Support: Specifically optimized for Incapsula rbzid verification
  • ⚑ Efficient Processing: Rapidly generates valid verification headers
  • πŸ”„ Stable & Reliable: Timely updates providing stable support for your business
  • 🎯 High Success Rate: Professional algorithm optimization ensuring high pass rates

πŸ“‹ Incapsula RBZID Verification Description

πŸ” How to Identify RBZID Verification

When requesting Incapsula scripts, the following situations indicate rbzid verification has been triggered:

  • Script contains kramericaindustries.ac.lib.js
  • Presence of window.rbzns... related code
RBZID Verification Example

πŸ“„ Result Usage Method

  1. Maintain Consistent UA: Use the returned verify_url and headers for GET requests
  2. Obtain Cookies: Get cookies from the response, which need to be included in subsequent requests
  3. Request Header Setting: Returned request header is fixed as x-zebra-zebra, can be randomized as x-zebra- + random(5)

πŸ”— API Information

Request URL (POST)

Version Type API Endpoint
RBZID http://api.nocaptcha.io/api/wanda/incapsula/rbzid

Request Headers

Parameter Description Required
User-Token User token, get from dashboard βœ…
Content-Type application/json βœ…
Developer-Id Developer ID for developer users, string from invite link (e.g., xxx/register?c=abcdef, then abcdef is Developer ID) ❌

POST Parameters (JSON Format)

Parameter Type Description Required
href String 🚨URL that returns rbzid script βœ…
user_agent String RBZID cookies require consistent UA, please provide the UA you will use βœ…
script String Script result from href request βœ…

πŸ“ Request Examples

{
    "href": "https://premier.hkticketing.com/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3",
    "script": "href request result",
    "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
}

πŸ“€ Response Data Format

Parameter Type Description
status Integer Call status: 1=success, 0=failure
msg String Call result description
id String Unique request ID (for record query)
data Object Contains verify_url and headers for subsequent verification
cost String Verification time (milliseconds)

Response Example

{
    "status": 1,
    "msg": "Verification successful",
    "id": "61b4bb7f-abf9-4875-ae58-38916e1ecbff",
    "cost": "36.42ms",
    "data": {
        "x-zebra-zebra": "ZDM4ZjBlMjcyOGE1MjhmY2E3ZTFjNjNlODRiN2EyN2RlMzA5ZWM4MTskKGhhc2gpO194Y2FsYyhhcmd1bWVudHMuY2FsbGUpOzA7JChoYXNoKTtfeGNhbGMoYXJndW1lbnRzLmNhbGxlKTstNTkyNTkyNTg3MjA7JChoYXNoKTtfeGNhbGMoYXJndW1lbnRzLmNhbGxlKTtkaXNhYmxlZDskKGhhc2gpO194Y2FsYyhhcmd1bWVudHMuY2FsbGUpOzEyMzEyMw==", 
        "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
    }
}

πŸ’» Code Examples

CURL Command

curl -L 'http://api.nocaptcha.io/api/wanda/incapsula/rbzid' \
 -H 'User-Token: xxx' \
 -H 'Developer-Id: hqLmMS' \
 -H 'Content-Type: application/json' \
 --data-raw '{"href": "https://premier.hkticketing.com/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3", "script": "href request result", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"}'

Python Call Example

Install Dependencies

pip install -U pynocaptcha -i https://pypi.python.org/simple

Code Example

from pynocaptcha import IncapsulaRbzidCracker

# Incapsula RBZID CAPTCHA solving
cracker = IncapsulaRbzidCracker(
    user_token="your_user_token_here",
    developer_id="hqLmMS",  # Developer ID
    href="https://premier.hkticketing.com/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3",
    script="href request result",
    user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
)
result = cracker.crack()
print(f"Solving result: {result}")

Complete Usage Example

import requests
from pynocaptcha import IncapsulaRbzidCracker

def solve_incapsula_rbzid(target_url):
    """Complete Incapsula RBZID solving process"""
    
    # 1. Request target page to get rbzid script URL
    session = requests.Session()
    response = session.get(target_url)
    
    # 2. Extract rbzid script URL from page
    # Need to parse page source to find URL containing SWJIYLWA
    rbzid_script_url = "https://premier.hkticketing.com/_Incapsula_Resource?SWJIYLWA=719d34d31c8e3a6e6fffd425f7e032f3"
    
    # 3. Get script content
    script_response = session.get(rbzid_script_url)
    script_content = script_response.text
    
    # 4. Check if contains rbzid characteristics
    if "kramericaindustries.ac.lib.js" in script_content or "window.rbzns" in script_content:
        print("RBZID verification detected")
        
        # 5. Call solving service
        cracker = IncapsulaRbzidCracker(
            user_token="your_user_token_here",
            developer_id="hqLmMS",
            href=rbzid_script_url,
            script=script_content,
            user_agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36"
        )
        
        result = cracker.crack()
        
        if result.get('status') == 1:
            zebra_header = result['data']['x-zebra-zebra']
            user_agent = result['data']['user-agent']
            
            print(f"Successfully obtained verification header: {zebra_header}")
            
            # 6. Use verification header for subsequent requests
            headers = {
                'x-zebra-zebra': zebra_header,
                'User-Agent': user_agent
            }
            
            # Make verification request to get cookies
            verify_response = session.get(target_url, headers=headers)
            cookies = session.cookies.get_dict()
            
            return {
                'success': True,
                'headers': headers,
                'cookies': cookies
            }
        else:
            return {
                'success': False,
                'error': result.get('msg')
            }
    else:
        print("No RBZID verification detected")
        return {'success': False, 'error': 'No RBZID verification detected'}

# Usage example
result = solve_incapsula_rbzid("https://premier.hkticketing.com/")

if result['success']:
    print(f"Verification successful!")
    print(f"Headers: {result['headers']}")
    print(f"Cookies: {result['cookies']}")
else:
    print(f"Verification failed: {result['error']}")