Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Does not work under Windows 10 / x64 / IDA 9.0 #176

Open
r0ptr opened this issue Jan 7, 2025 · 1 comment
Open

Does not work under Windows 10 / x64 / IDA 9.0 #176

r0ptr opened this issue Jan 7, 2025 · 1 comment

Comments

@r0ptr
Copy link

r0ptr commented Jan 7, 2025

Downloaded the certificate from the website of lumen, and within WSL ran the command:

socat -s -dd tcp4-listen:1234,fork,reuseaddr openssl:lumen.abda.nl:1235,cafile=hexrays.crt

Copied the certificate file to the IDA root installation directory.
Set the environment variables that are mentioned on the homepage to the necessary values. It was unable to connect to the lumen server. Finally, I downloaded the https://github.com/tomrus88/OpenLumina/ plugin to set the server params from IDA Options, after which I am getting the following error:

lumina: connect: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
Command "LuminaPullAllMds" failed

Any ideas what is missing?

@tomrus88
Copy link

tomrus88 commented Jan 10, 2025

Plugin won't work with lumen.abda.nl:1235 server due to server using incorrect certificate.

But using socat should work since it ignores certificate errors. Make sure you are using correct server address/port. In IDA settings you must set it to localhost:1234 when using socat with command above.

Alternatively you can create following bat file and use it to run IDA so it works with socat command above:

@echo off
set LUMINA_TLS=false
set LUMINA_PRIMARY=guest:guest@localhost:1234
set LUMINA_PRIMARY_TLS=false
set LUMINA_SECONDARY=guest:guest@localhost:1234
set LUMINA_SECONDARY_TLS=false
ida.exe "-z 00900000"

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

No branches or pull requests

2 participants