MCPcopy Index your code
hub / github.com/NullArray/AutoSploit / __decode

Method __decode

api_calls/zoomeye.py:33–42  ·  view source on GitHub ↗

we all know what this does

(filepath)

Source from the content-addressed store, hash-verified

31
32 @staticmethod
33 def __decode(filepath):
34 """
35 we all know what this does
36 """
37 with open(filepath) as f:
38 data = f.read()
39 token, n = data.split(":")
40 for _ in range(int(n.strip())):
41 token = base64.b64decode(token)
42 return token.strip()
43
44 def __get_auth(self):
45 """

Callers 1

__get_authMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected