Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.
This repository was archived by the owner on May 14, 2024. It is now read-only.

TLS 1.3 not supported #976

@jelhub

Description

@jelhub

Testing Active Directory

const ldap = require('ldapjs')

const client = ldap.createClient({
  url: ['ldaps://ad.test.com:636'],
  connectTimeout: 5000,
  tlsOptions: {
    rejectUnauthorized: false
  }
})

client.bind('CN=Administrator,CN=Users,DC=test,DC=com', 'password', (err, res) => {
  if (err) {
    console.log('bind error: ' + err.message)
    return
  }
  console.log('OK')
})

Domain controller only allowing TLS 1.3

image

TLS 1.3 only test will fail: ECONNRESET

image

TLS 1.2 appears to be the most advanced TLS version supported:

image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions