mirror of
https://github.com/cyber-defence-campus/mole
synced 2026-06-20 13:19:21 +00:00
568b1d8043
* Added support for functions * Added unit-test for propagators * Updated documentation * Updated documentation and increase of patch version * Prevent newlines in YML files * First draft of new function-centric configuration * Fixed unit-tests * Distinguish src_par_slice and snk_par_slice * Cleanup * Updated popup dialogs * Remove empty aliases * Fix adding functions to new categories * Add tree items without tab refresh * Added context menu and remove functionality * Always fix functions * Updated documentation * Rename propagator to fixer * Updated documentation * Quotes in log messages * Try to restore path instruction using instruction address * Changing log outputs * Improved upwards propagation of checkbox states * Update analysis without waiting * Run re-analysis after function type signature fixes in non-UI thread * Include Path for type checking only * Support for installation with uv * Minor change in the installation instructions * Fix functions outside UI thread * Use proper session ID in logger
12 lines
343 B
Python
12 lines
343 B
Python
from binaryninja import execute_on_main_thread
|
|
import debugpy
|
|
import sys
|
|
|
|
if sys.platform == "win32":
|
|
debugpy.configure(python="/python", qt="pyside2")
|
|
else:
|
|
debugpy.configure(python="/bin/python3", qt="pyside2")
|
|
debugpy.listen(("127.0.0.1", 5678))
|
|
debugpy.wait_for_client()
|
|
execute_on_main_thread(lambda: debugpy.debug_this_thread())
|