MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / status

Method status

python/workflow.py:733–738  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

731 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
732
733 def status(self):
734 request = json.dumps({"command": "status"})
735 if self.is_function_machine:
736 return json.loads(core.BNPostWorkflowRequestForFunction(self.handle, request))
737 else:
738 return json.loads(core.BNPostWorkflowRequestForBinaryView(self.handle, request))
739
740 def override_clear(self, activity):
741 request = json.dumps({"command": "override", "action": "clear", "activity": activity})

Callers 2

runMethod · 0.95
do_statusMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected