IDASQL is very nice. I want to interface/use it from my own idapython plugins/scripts. While parsing/checking netnode, and then manually interfacing with mcp or http is possible, it is cumberstone.
I would rather have something like
import idasql
result = idasql.query("SELECT 1;")
Maybe can be done via
import sys, types
mod = types.ModuleType("idasql")
mod.query = <bound native callable>
sys.modules["idasql"] = mod
at plugmod_t ctor.
I am by no means an expert with py/c/idapython interfacing, but it would be very nice to have!
IDASQL is very nice. I want to interface/use it from my own idapython plugins/scripts. While parsing/checking netnode, and then manually interfacing with mcp or http is possible, it is cumberstone.
I would rather have something like
Maybe can be done via
at plugmod_t ctor.
I am by no means an expert with py/c/idapython interfacing, but it would be very nice to have!