PATH:
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
defence360agent
/
internals
import logging logger = logging.getLogger(__name__) class GlobalScope(dict): def __getattr__(self, item): try: return self[item] except KeyError as err: raise AttributeError(f"{item} is not in global scope") from err def __setattr__(self, key, value): if key in self: logger.warning("Name %s is already in global scope", key) else: self[key] = value g = GlobalScope()
[-] persistent_message.py
[edit]
[-] global_scope.py
[edit]
[+]
..
[-] lazy_load.py
[edit]
[-] logging_protocol.py
[edit]
[-] auth_protocol.py
[edit]
[-] iaid.py
[edit]
[-] deadlock_detecting_lock.py
[edit]
[+]
__pycache__
[-] cln.py
[edit]
[-] logger.py
[edit]
[-] __init__.py
[edit]
[-] the_sink.py
[edit]