📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.38 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: sqlite3.py
import os import sqlite3 from pathlib import Path from contextlib import suppress, closing from collections.abc import MutableMapping BUILD_TABLE = """ CREATE TABLE IF NOT EXISTS Dict ( key BLOB UNIQUE NOT NULL, value BLOB NOT NULL ) """ GET_SIZE = "SELECT COUNT (key) FROM Dict" LOOKUP_KEY = "SELECT value FROM Dict WHERE key = CAST(? AS BLOB)" STORE_KV = "REPLACE INTO Dict (key, value) VALUES (CAST(? AS BLOB), CAST(? AS BLOB))" DELETE_KEY = "DELETE FROM Dict WHERE key = CAST(? AS BLOB)" ITER_KEYS = "SELECT key FROM Dict" class error(OSError): pass _ERR_CLOSED = "DBM object has already been closed" _ERR_REINIT = "DBM object does not support reinitialization" def _normalize_uri(path): path = Path(path) uri = path.absolute().as_uri() while "//" in uri: uri = uri.replace("//", "/") return uri class _Database(MutableMapping): def __init__(self, path, /, *, flag, mode): if hasattr(self, "_cx"): raise error(_ERR_REINIT) path = os.fsdecode(path) match flag: case "r": flag = "ro" case "w": flag = "rw" case "c": flag = "rwc" Path(path).touch(mode=mode, exist_ok=True) case "n": flag = "rwc" Path(path).unlink(missing_ok=True) Path(path).touch(mode=mode) case _: raise ValueError("Flag must be one of 'r', 'w', 'c', or 'n', " f"not {flag!r}") # We use the URI format when opening the database. uri = _normalize_uri(path) uri = f"{uri}?mode={flag}" if flag == "ro": # Add immutable=1 to allow read-only SQLite access even if wal/shm missing uri += "&immutable=1" try: self._cx = sqlite3.connect(uri, autocommit=True, uri=True) except sqlite3.Error as exc: raise error(str(exc)) if flag != "ro": # This is an optimization only; it's ok if it fails. with suppress(sqlite3.OperationalError): self._cx.execute("PRAGMA journal_mode = wal") if flag == "rwc": self._execute(BUILD_TABLE) def _execute(self, *args, **kwargs): if not self._cx: raise error(_ERR_CLOSED) try: return closing(self._cx.execute(*args, **kwargs)) except sqlite3.Error as exc: raise error(str(exc)) def __len__(self): with self._execute(GET_SIZE) as cu: row = cu.fetchone() return row[0] def __getitem__(self, key): with self._execute(LOOKUP_KEY, (key,)) as cu: row = cu.fetchone() if not row: raise KeyError(key) return row[0] def __setitem__(self, key, value): self._execute(STORE_KV, (key, value)) def __delitem__(self, key): with self._execute(DELETE_KEY, (key,)) as cu: if not cu.rowcount: raise KeyError(key) def __iter__(self): try: with self._execute(ITER_KEYS) as cu: for row in cu: yield row[0] except sqlite3.Error as exc: raise error(str(exc)) def close(self): if self._cx: self._cx.close() self._cx = None def keys(self): return list(super().keys()) def __enter__(self): return self def __exit__(self, *args): self.close() def open(filename, /, flag="r", mode=0o666): """Open a dbm.sqlite3 database and return the dbm object. The 'filename' parameter is the name of the database file. The optional 'flag' parameter can be one of ...: 'r' (default): open an existing database for read only access 'w': open an existing database for read/write access 'c': create a database if it does not exist; open for read/write access 'n': always create a new, empty database; open for read/write access The optional 'mode' parameter is the Unix file access mode of the database; only used when creating a new database. Default: 0o666. """ return _Database(filename, flag=flag, mode=mode)
Save