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

TLS 1.3 not supported #976

Open
jelhub opened this issue Apr 19, 2024 · 0 comments
Open

TLS 1.3 not supported #976

jelhub opened this issue Apr 19, 2024 · 0 comments

Comments

@jelhub
Copy link

jelhub commented Apr 19, 2024

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

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant