lumen icon indicating copy to clipboard operation
lumen copied to clipboard

Could I use python scripts to automatically analyze lib files and upload to my lumen server?

Open breaking153 opened this issue 11 months ago • 2 comments

i'm wondering cuz i found it is so hard to upload funcs in lib one by one

breaking153 avatar Mar 11 '24 07:03 breaking153

but sadly i cannot found any func in python sdk about lumina server

breaking153 avatar Mar 11 '24 07:03 breaking153

The best solution I've found is idautils.ProcessUiActions("LuminaPushAllMds"). Since it's UI interaction though, you can't just call idc.qexit(0) afterwards: testing shows that it doesn't actually execute the request. I've used AutoHotkey (and PowerShell and IDAPython) to actually automate this.

benjamindoron avatar Apr 11 '24 23:04 benjamindoron

The best solution I've found is idautils.ProcessUiActions("LuminaPushAllMds"). Since it's UI interaction though, you can't just call idc.qexit(0) afterwards: testing shows that it doesn't actually execute the request. I've used AutoHotkey (and PowerShell and IDAPython) to actually automate this.

well i found it's possible to do such thing using idapython and Concurrence python module,i just extract it into a temp dir to analyze every obj file and it works

breaking153 avatar Jun 04 '24 07:06 breaking153