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

Method server_build_id

python/collaboration/remote.py:151–161  ·  view source on GitHub ↗

Build id of software running on the server. If metadata has not been pulled, it will be pulled upon calling this. :return: Server build id string :raises RuntimeError: If there was an error

(self)

Source from the content-addressed store, hash-verified

149
150 @property
151 def server_build_id(self) -> str:
152 """
153 Build id of software running on the server. If metadata has not been pulled, it will
154 be pulled upon calling this.
155
156 :return: Server build id string
157 :raises RuntimeError: If there was an error
158 """
159 if not self.has_loaded_metadata:
160 self.load_metadata()
161 return core.BNRemoteGetServerBuildId(self._handle)
162
163 @property
164 def auth_backends(self) -> List[Tuple[str, str]]:

Callers

nothing calls this directly

Calls 1

load_metadataMethod · 0.95

Tested by

no test coverage detected