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

Function deauthenticate

python/enterprise.py:105–112  ·  view source on GitHub ↗

Deauthenticate from the Enterprise server, clearing any cached credentials.

()

Source from the content-addressed store, hash-verified

103
104
105def deauthenticate():
106 """
107 Deauthenticate from the Enterprise server, clearing any cached credentials.
108 """
109 if not is_connected():
110 raise RuntimeError("Not connected but calling deauthenticate. This is likely an error in your script!")
111 if not core.BNDeauthenticateEnterpriseServer():
112 raise RuntimeError(last_error())
113
114
115def cancel_authentication():

Callers

nothing calls this directly

Calls 2

is_connectedFunction · 0.85
last_errorFunction · 0.85

Tested by

no test coverage detected