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

Function server_build_id

python/enterprise.py:222–233  ·  view source on GitHub ↗

Get the build id string of the server :return: Build id of the server

()

Source from the content-addressed store, hash-verified

220
221
222def server_build_id() -> str:
223 """
224 Get the build id string of the server
225
226 :return: Build id of the server
227 """
228 if not is_connected():
229 connect()
230 value = core.BNGetEnterpriseServerBuildId()
231 if value is None:
232 raise RuntimeError(last_error())
233 return value
234
235
236def reservation_time_limit() -> int:

Callers

nothing calls this directly

Calls 3

is_connectedFunction · 0.85
connectFunction · 0.85
last_errorFunction · 0.85

Tested by

no test coverage detected