naim94a / lumen

A private Lumina server for IDA Pro
https://lumen.abda.nl/
MIT License
926 stars 102 forks source link

lumina: Schannel does not support the requested security attributes #88

Closed H5GG closed 1 year ago

H5GG commented 1 year ago
image image

ida7.6 windows, cert updated[https://abda.nl/lumen/hexrays.crt]

H5GG commented 1 year ago

LUMINA_TLS = NO then

image
naim94a commented 1 year ago
  1. The error with Schannel is dependent on the OS - I'm not sure why Schannel wouldn't support any of the attributes on lumen.abda.nl's certificate. There isn't much that I can do about that at the moment.
  2. Assuming the second comment is connected to lumen.abda.nl - non TLS connections would be immediately dropped... You might be able to workaround using socat:

    • Using socat to encapsulate TLS:

      socat -s -dd tcp4-listen:1234,fork,reuseaddr openssl:lumen.abda.nl:1235,cafile=hexrays.crt
    • Configuring IDA to use the local server:

      LUMINA_TLS = NO
      LUNINA_HOST = "localhost";
      LUMINA_PORT = 1234