📁
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
2082.7 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: pflags
#!/usr/bin/python3 # -*- python -*- # -*- coding: utf-8 -*- # SPDX-License-Identifier: GPL-2.0-only # # print process flags # Copyright (C) 2015-2025 Red Hat, Inc. # Arnaldo Carvalho de Melo <acme@redhat.com> # John Kacur <jkacur@redhat.com> import procfs, re, fnmatch, sys import argparse from functools import reduce ps = None def thread_mapper(s): global ps try: return [int(s), ] except: pass try: return ps.find_by_regex(re.compile(fnmatch.translate(s))) except: return ps.find_by_name(s) def main(argv): global ps ps = procfs.pidstats() parser = argparse.ArgumentParser(description='Print process flags') parser.add_argument('pid', nargs='*', help='a list of pids or names') args = parser.parse_args() if len(argv) > 1: pids = args.pid pids = reduce(lambda i, j: i + j, list(map(thread_mapper, pids))) else: pids = list(ps.processes.keys()) pids.sort() len_comms = [] for pid in pids: if pid in ps: try: len(ps[pid]["stat"]["comm"]) except (TypeError, FileNotFoundError): continue len_comms.append(len(ps[pid]["stat"]["comm"])) max_comm_len = max(len_comms, default=0) del len_comms for pid in pids: if pid not in ps: continue try: flags = ps[pid].stat.process_flags() except AttributeError: continue # Remove flags that were superseeded if "PF_THREAD_BOUND" in flags and "PF_NO_SETAFFINITY" in flags: flags.remove("PF_THREAD_BOUND") if "PF_FLUSHER" in flags and "PF_NPROC_EXCEEDED" in flags: flags.remove("PF_FLUSHER") if "PF_SWAPOFF" in flags and "PF_MEMALLOC_NOIO" in flags: flags.remove("PF_SWAPOFF") if "PF_FREEZER_NOSIG" in flags and "PF_SUSPEND_TASK" in flags: flags.remove("PF_FREEZER_NOSIG") comm = ps[pid].stat["comm"] flags.sort() sflags = reduce(lambda i, j: "%s|%s" % (i, j), [a[3:] for a in flags]) print("%6d %*s %s" %(pid, max_comm_len, comm, sflags)) if __name__ == '__main__': main(sys.argv)
Save