Linux salto.nuvemidc.com 5.14.0-687.42.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 27 11:55:12 EDT 2026 x86_64
LiteSpeed
: 177.73.233.61 | : 216.73.217.116
Cant Read [ /etc/named.conf ]
7.4.33
agenci18
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib /
python3.9 /
site-packages /
dasbus /
client /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
handler.py
16.23
KB
-rw-r--r--
observer.py
7.09
KB
-rw-r--r--
property.py
1.93
KB
-rw-r--r--
proxy.py
7.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : property.py
# # Client support for DBus properties # # Copyright (C) 2019 Red Hat, Inc. All rights reserved. # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 # USA # __all__ = ["PropertyProxy"] class PropertyProxy(object): """Proxy of a remote DBus property. It can be used to define instance attributes. """ __slots__ = [ "_getter", "_setter" ] def __init__(self, getter, setter): """Create a new proxy of the DBus property.""" self._getter = getter self._setter = setter def get(self): """Get the value of the DBus property.""" return self.__get__(None, None) # pylint: disable=unnecessary-dunder-call def __get__(self, instance, owner): if instance is None and owner: return self if not self._getter: raise AttributeError( "Can't read DBus property." ) return self._getter() def set(self, value): """Set the value of the DBus property.""" return self.__set__(None, value) # pylint: disable=unnecessary-dunder-call def __set__(self, instance, value): if not self._setter: raise AttributeError( "Can't set DBus property." ) return self._setter(value)
Close