Veryyes / BINocular

Disassembler Abstraction API
GNU General Public License v3.0
6 stars 0 forks source link

Possible Memory Leak with Ghidra module #22

Open Veryyes opened 6 months ago

Veryyes commented 6 months ago

when running a program that look something like below, the used system memory incrementally went up and the program died with a JVM out of memory error after a few hours of loading very small object files

with Ghidra() as g:
   exe = get_next_file()
   g.load(exe)
   with Session(Backend.engine) as s:
      b = g.binary
      b.db_add(s)
   g.clear()
Veryyes commented 3 weeks ago

would possibly be solved by #43