$45 GRAYBYTE WORDPRESS FILE MANAGER $75

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/usr/bin/

HOME
Current File : /usr/bin//mariadb-secure-installation
#!/bin/sh

# Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved.
#
# 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; version 2 of the License.
#
# 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335  USA

config=".my.cnf.$$"
command=".mysql.$$"
output=".my.output.$$"

trap "interrupt" 1 2 3 6 15

rootpass=""
echo_n=
echo_c=
basedir=
defaults_file=
defaults_extra_file=
defaults_group_suffix=
no_defaults=

case "$0" in
  *mysql_secure_installation)
    echo "$0: Deprecated program name. It will be removed in a future release, use 'mariadb-secure-installation' instead" 1>&2
    ;;
esac

parse_arg()
{
  echo "$1" | sed -e 's/^[^=]*=//'
}

parse_arguments()
{
  # We only need to pass arguments through to the server if we don't
  # handle them here.  So, we collect unrecognized options (passed on
  # the command line) into the args variable.
  pick_args=
  if test "$1" = PICK-ARGS-FROM-ARGV
  then
    pick_args=1
    shift
  fi

  for arg
  do
    case "$arg" in
      --basedir=*) basedir=`parse_arg "$arg"` ;;
      --defaults-file=*) defaults_file="$arg" ;;
      --defaults-extra-file=*) defaults_extra_file="$arg" ;;
      --defaults-group-suffix=*) defaults_group_suffix="$arg" ;;
      --no-defaults) no_defaults="$arg" ;;
      *)
        if test -n "$pick_args"
        then
          # This sed command makes sure that any special chars are quoted,
          # so the arg gets passed exactly to the server.
          # XXX: This is broken; true fix requires using eval and proper
          # quoting of every single arg ($basedir, $ldata, etc.)
          #args="$args "`echo "$arg" | sed -e 's,\([^a-zA-Z0-9_.-]\),\\\\\1,g'`
          args="$args $arg"
        fi
        ;;
    esac
  done
}

# Try to find a specific file within --basedir which can either be a binary
# release or installed source directory and return the path.
find_in_basedir()
{
  return_dir=0
  found=0
  case "$1" in
    --dir)
      return_dir=1; shift
      ;;
  esac

  file=$1; shift

  for dir in "$@"
  do
    if test -f "$basedir/$dir/$file"
    then
      found=1
      if test $return_dir -eq 1
      then
        echo "$basedir/$dir"
      else
        echo "$basedir/$dir/$file"
      fi
      break
    fi
  done

  if test $found -eq 0
  then
      # Test if command is in PATH
      $file --no-defaults --version > /dev/null 2>&1
      status=$?
      if test $status -eq 0
      then
        echo $file
      fi
  fi
}

cannot_find_file()
{
  echo
  echo "FATAL ERROR: Could not find $1"

  shift
  if test $# -ne 0
  then
    echo
    echo "The following directories were searched:"
    echo
    for dir in "$@"
    do
      echo "    $dir"
    done
  fi

  echo
  echo "If you compiled from source, you need to run 'make install' to"
  echo "copy the software into the correct location ready for operation."
  echo
  echo "If you are using a binary release, you must either be at the top"
  echo "level of the extracted archive, or pass the --basedir option"
  echo "pointing to that location."
  echo
}

# Ok, let's go.  We first need to parse arguments which are required by
# my_print_defaults so that we can execute it first, then later re-parse
# the command line to add any extra bits that we need.
parse_arguments PICK-ARGS-FROM-ARGV "$@"

#
# We can now find my_print_defaults.  This script supports:
#
#   --srcdir=path pointing to compiled source tree
#   --basedir=path pointing to installed binary location
#
# or default to compiled-in locations.
#

if test -n "$basedir"
then
  print_defaults=`find_in_basedir my_print_defaults bin extra`
  echo "print: $print_defaults"
  if test -z "$print_defaults"
  then
    cannot_find_file my_print_defaults $basedir/bin $basedir/extra
    exit 1
  fi
  mysql_command=`find_in_basedir mariadb bin`
  if test -z "$mysql_command"
  then
      cannot_find_file mariadb $basedir/bin
      exit 1
  fi
else
  print_defaults="/usr/bin/my_print_defaults"
  mysql_command="/usr/bin/mariadb"
fi

if test ! -x "$print_defaults"
then
  cannot_find_file "$print_defaults"
  exit 1
fi

if test ! -x "$mysql_command"
then
  cannot_find_file "$mysql_command"
  exit 1
fi

# Now we can get arguments from the group [client] and [client-server]
# in the my.cfg file, then re-run to merge with command line arguments.
parse_arguments `$print_defaults $defaults_file $defaults_extra_file $defaults_group_suffix $no_defaults client client-server client-mariadb`
parse_arguments PICK-ARGS-FROM-ARGV "$@"

set_echo_compat() {
    case `echo "testing\c"`,`echo -n testing` in
	*c*,-n*) echo_n=   echo_c=     ;;
	*c*,*)   echo_n=-n echo_c=     ;;
	*)       echo_n=   echo_c='\c' ;;
    esac
}

validate_reply () {
    ret=0
    if [ -z "$1" ]; then
	reply=y
	return $ret
    fi
    case $1 in
        y|Y|yes|Yes|YES) reply=y ;;
        n|N|no|No|NO)    reply=n ;;
        *) ret=1 ;;
    esac
    return $ret
}

prepare() {
    umask 0077
    touch $config $command $output
}

do_query() {
    echo "$1" >$command
    #sed 's,^,> ,' < $command  # Debugging
    $mysql_command --defaults-file=$config $defaults_extra_file $no_defaults $args <$command >$output
    return $?
}

# Simple escape mechanism (\-escape any ' and \), suitable for two contexts:
# - single-quoted SQL strings
# - single-quoted option values on the right hand side of = in my.cnf
#
# These two contexts don't handle escapes identically.  SQL strings allow
# quoting any character (\C => C, for any C), but my.cnf parsing allows
# quoting only \, ' or ".  For example, password='a\b' quotes a 3-character
# string in my.cnf, but a 2-character string in SQL.
#
# This simple escape works correctly in both places.
basic_single_escape () {
    # The quoting on this sed command is a bit complex.  Single-quoted strings
    # don't allow *any* escape mechanism, so they cannot contain a single
    # quote.  The string sed gets (as argv[1]) is:  s/\(['\]\)/\\\1/g
    #
    # Inside a character class, \ and ' are not special, so the ['\] character
    # class is balanced and contains two characters.
    echo "$1" | sed 's/\(['"'"'\]\)/\\\1/g'
}

#
# create a simple my.cnf file to be able to pass the root password to the mysql
# client without putting it on the command line
#
make_config() {
    echo "# mysql_secure_installation config file" >$config
    echo "[mysql]" >>$config
    echo "user=root" >>$config
    esc_pass=`basic_single_escape "$rootpass"`
    echo "password='$esc_pass'" >>$config
    #sed 's,^,> ,' < $config  # Debugging

    if test -n "$defaults_file"
    then
        dfile=`parse_arg "$defaults_file"`
        cat "$dfile" >>$config
    fi
}

get_root_password() {
    status=1
    while [ $status -eq 1 ]; do
	stty -echo
	echo $echo_n "Enter current password for root (enter for none): $echo_c"
	read password
	echo
	stty echo
	if [ "x$password" = "x" ]; then
	    emptypass=1
	else
	    emptypass=0
	fi
	rootpass=$password
	make_config
	do_query "show create user root@localhost"
	status=$?
    done
    if grep -q unix_socket $output; then
      emptypass=0
    fi
    echo "OK, successfully used password, moving on..."
    echo
}

set_root_password() {
    stty -echo
    echo $echo_n "New password: $echo_c"
    read password1
    echo
    echo $echo_n "Re-enter new password: $echo_c"
    read password2
    echo
    stty echo

    if [ "$password1" != "$password2" ]; then
	echo "Sorry, passwords do not match."
	echo
	return 1
    fi

    if [ "$password1" = "" ]; then
	echo "Sorry, you can't use an empty password here."
	echo
	return 1
    fi

    esc_pass=`basic_single_escape "$password1"`
    do_query "UPDATE mysql.global_priv SET priv=json_set(priv, '$.plugin', 'mysql_native_password', '$.authentication_string', PASSWORD('$esc_pass')) WHERE User='root';"
    if [ $? -eq 0 ]; then
	echo "Password updated successfully!"
	echo "Reloading privilege tables.."
	reload_privilege_tables
	if [ $? -eq 1 ]; then
		clean_and_exit
	fi
	echo
	rootpass=$password1
	make_config
    else
	echo "Password update failed!"
	clean_and_exit
    fi

    return 0
}

remove_anonymous_users() {
    do_query "DELETE FROM mysql.global_priv WHERE User='';"
    if [ $? -eq 0 ]; then
	echo " ... Success!"
    else
	echo " ... Failed!"
	clean_and_exit
    fi

    return 0
}

remove_remote_root() {
    do_query "DELETE FROM mysql.global_priv WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');"
    if [ $? -eq 0 ]; then
	echo " ... Success!"
    else
	echo " ... Failed!"
    fi
}

remove_test_database() {
    echo " - Dropping test database..."
    do_query "DROP DATABASE IF EXISTS test;"
    if [ $? -eq 0 ]; then
	echo " ... Success!"
    else
	echo " ... Failed!  Not critical, keep moving..."
    fi

    echo " - Removing privileges on test database..."
    do_query "DELETE FROM mysql.db WHERE Db='test' OR Db='test\\_%'"
    if [ $? -eq 0 ]; then
	echo " ... Success!"
    else
	echo " ... Failed!  Not critical, keep moving..."
    fi

    return 0
}

reload_privilege_tables() {
    do_query "FLUSH PRIVILEGES;"
    if [ $? -eq 0 ]; then
	echo " ... Success!"
	return 0
    else
	echo " ... Failed!"
	return 1
    fi
}

interrupt() {
    echo
    echo "Aborting!"
    echo
    cleanup
    stty echo
    exit 1
}

cleanup() {
    echo "Cleaning up..."
    rm -f $config $command $output
}

# Remove the files before exiting.
clean_and_exit() {
	cleanup
	exit 1
}

# The actual script starts here

prepare
set_echo_compat

echo
echo "NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB"
echo "      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!"
echo
echo "In order to log into MariaDB to secure it, we'll need the current"
echo "password for the root user. If you've just installed MariaDB, and"
echo "haven't set the root password yet, you should just press enter here."
echo

get_root_password


#
# Set the root password
#

echo "Setting the root password or using the unix_socket ensures that nobody"
echo "can log into the MariaDB root user without the proper authorisation."
echo

while true ; do
    if [ $emptypass -eq 1 ]; then
	echo $echo_n "Enable unix_socket authentication? [Y/n] $echo_c"
    else
	echo "You already have your root account protected, so you can safely answer 'n'."
	echo
	echo $echo_n "Switch to unix_socket authentication [Y/n] $echo_c"
    fi
    read reply
    validate_reply $reply && break
done

if [ "$reply" = "n" ]; then
  echo " ... skipping."
else
  emptypass=0
  do_query "UPDATE mysql.global_priv SET priv=json_set(priv, '$.password_last_changed', UNIX_TIMESTAMP(), '$.plugin', 'mysql_native_password', '$.authentication_string', 'invalid', '$.auth_or', json_array(json_object(), json_object('plugin', 'unix_socket'))) WHERE User='root';"
  if [ $? -eq 0 ]; then
   echo "Enabled successfully!"
   echo "Reloading privilege tables.."
   reload_privilege_tables
   if [ $? -eq 1 ]; then
     clean_and_exit
   fi
   echo
  else
   echo "Failed!"
   clean_and_exit
  fi
fi
echo

while true ; do
    if [ $emptypass -eq 1 ]; then
	echo $echo_n "Set root password? [Y/n] $echo_c"
    else
	echo "You already have your root account protected, so you can safely answer 'n'."
	echo
	echo $echo_n "Change the root password? [Y/n] $echo_c"
    fi
    read reply
    validate_reply $reply && break
done

if [ "$reply" = "n" ]; then
    echo " ... skipping."
else
    status=1
    while [ $status -eq 1 ]; do
	set_root_password
	status=$?
    done
fi
echo


#
# Remove anonymous users
#

echo "By default, a MariaDB installation has an anonymous user, allowing anyone"
echo "to log into MariaDB without having to have a user account created for"
echo "them.  This is intended only for testing, and to make the installation"
echo "go a bit smoother.  You should remove them before moving into a"
echo "production environment."
echo

while true ; do
    echo $echo_n "Remove anonymous users? [Y/n] $echo_c"
    read reply
    validate_reply $reply && break
done
if [ "$reply" = "n" ]; then
    echo " ... skipping."
else
    remove_anonymous_users
fi
echo


#
# Disallow remote root login
#

echo "Normally, root should only be allowed to connect from 'localhost'.  This"
echo "ensures that someone cannot guess at the root password from the network."
echo
while true ; do
    echo $echo_n "Disallow root login remotely? [Y/n] $echo_c"
    read reply
    validate_reply $reply && break
done
if [ "$reply" = "n" ]; then
    echo " ... skipping."
else
    remove_remote_root
fi
echo


#
# Remove test database
#

echo "By default, MariaDB comes with a database named 'test' that anyone can"
echo "access.  This is also intended only for testing, and should be removed"
echo "before moving into a production environment."
echo

while true ; do
    echo $echo_n "Remove test database and access to it? [Y/n] $echo_c"
    read reply
    validate_reply $reply && break
done

if [ "$reply" = "n" ]; then
    echo " ... skipping."
else
    remove_test_database
fi
echo


#
# Reload privilege tables
#

echo "Reloading the privilege tables will ensure that all changes made so far"
echo "will take effect immediately."
echo

while true ; do
    echo $echo_n "Reload privilege tables now? [Y/n] $echo_c"
    read reply
    validate_reply $reply && break
done

if [ "$reply" = "n" ]; then
    echo " ... skipping."
else
    reload_privilege_tables
fi
echo

cleanup

echo
echo "All done!  If you've completed all of the above steps, your MariaDB"
echo "installation should now be secure."
echo
echo "Thanks for using MariaDB!"


Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
4 Apr 2026 8.00 AM
root / root
0755
7za
0.045 KB
4 Oct 2024 1.50 AM
root / root
0755
GET
15.837 KB
22 Apr 2022 8.13 PM
root / root
0755
Mail
408.891 KB
13 Oct 2019 12.19 AM
root / root
0755
[
53.602 KB
24 Mar 2026 1.05 PM
root / root
0755
aclocal
35.623 KB
14 Oct 2023 8.00 PM
root / root
0755
aclocal-1.16
35.623 KB
14 Oct 2023 8.00 PM
root / root
0755
addr2line
33.422 KB
18 Dec 2025 2.21 PM
root / root
0755
animate
11.844 KB
1 Apr 2025 1.15 PM
root / root
0755
ar
61.961 KB
18 Dec 2025 2.21 PM
root / root
0755
arch
37.336 KB
24 Mar 2026 1.05 PM
root / root
0755
arpaname
11.82 KB
6 Nov 2025 7.45 AM
root / root
0755
as
889.906 KB
18 Dec 2025 2.21 PM
root / root
0755
aspell
159.5 KB
18 Apr 2022 3.10 PM
root / root
0755
at
1.246 KB
10 Oct 2022 10.23 AM
root / root
0755
atq
1.248 KB
10 Oct 2022 10.23 AM
root / root
0755
atrm
1.25 KB
10 Oct 2022 10.23 AM
root / root
0755
autoconf
14.422 KB
13 Aug 2024 7.30 PM
root / root
0755
autoheader
8.334 KB
13 Aug 2024 7.30 PM
root / root
0755
autom4te
31.427 KB
13 Aug 2024 7.30 PM
root / root
0755
automake
251.903 KB
14 Oct 2023 8.00 PM
root / root
0755
automake-1.16
251.903 KB
14 Oct 2023 8.00 PM
root / root
0755
autoreconf
20.572 KB
13 Aug 2024 7.30 PM
root / root
0755
autoscan
16.723 KB
13 Aug 2024 7.30 PM
root / root
0755
autoupdate
33.078 KB
13 Aug 2024 7.30 PM
root / root
0755
awk
669.773 KB
18 Apr 2022 3.56 PM
root / root
0755
b2sum
57.688 KB
24 Mar 2026 1.05 PM
root / root
0755
base32
41.469 KB
24 Mar 2026 1.05 PM
root / root
0755
base64
41.484 KB
24 Mar 2026 1.05 PM
root / root
0755
basename
37.414 KB
24 Mar 2026 1.05 PM
root / root
0755
bash
1.1 MB
26 Aug 2025 8.48 AM
root / root
0755
bashbug-64
7.176 KB
26 Aug 2025 8.48 AM
root / root
0755
batch
0.134 KB
10 Oct 2022 10.23 AM
root / root
0755
bison
437.719 KB
12 Oct 2019 12.28 PM
root / root
0755
bunzip2
36.859 KB
28 Jan 2025 1.38 AM
root / root
0755
bzcat
36.859 KB
28 Jan 2025 1.38 AM
root / root
0755
bzcmp
2.078 KB
28 Jan 2025 1.38 AM
root / root
0755
bzdiff
2.078 KB
28 Jan 2025 1.38 AM
root / root
0755
bzgrep
1.638 KB
28 Jan 2025 1.38 AM
root / root
0755
bzip2
36.859 KB
28 Jan 2025 1.38 AM
root / root
0755
bzip2recover
16.438 KB
28 Jan 2025 1.38 AM
root / root
0755
bzless
1.229 KB
28 Jan 2025 1.38 AM
root / root
0755
bzmore
1.229 KB
28 Jan 2025 1.38 AM
root / root
0755
c++
1.21 MB
26 Aug 2025 9.47 AM
root / compiler
0750
c++filt
28.891 KB
18 Dec 2025 2.21 PM
root / root
0755
c89
0.219 KB
26 Aug 2025 9.45 AM
root / compiler
0750
c99
0.21 KB
26 Aug 2025 9.45 AM
root / compiler
0750
cagefs_enter.proxied
1.266 KB
20 Jan 2026 1.58 PM
root / root
0755
cal
65.977 KB
4 Feb 2026 8.18 PM
root / root
0755
captoinfo
85.313 KB
14 Oct 2023 6.54 PM
root / root
0755
cat
37.461 KB
24 Mar 2026 1.05 PM
root / root
0755
catchsegv
3.206 KB
17 Mar 2026 4.54 PM
root / root
0755
cc
1.21 MB
26 Aug 2025 9.47 AM
root / compiler
0750
chgrp
66.289 KB
24 Mar 2026 1.05 PM
root / root
0755
chmod
62.195 KB
24 Mar 2026 1.05 PM
root / root
0755
chown
70.289 KB
24 Mar 2026 1.05 PM
root / root
0755
chrt
37.188 KB
4 Feb 2026 8.18 PM
root / root
0755
cksum
37.391 KB
24 Mar 2026 1.05 PM
root / root
0755
cldetect
10.345 KB
17 Feb 2026 10.00 AM
root / root
0755
clear
12.539 KB
14 Oct 2023 6.54 PM
root / root
0755
clusterdb
70.234 KB
27 Feb 2024 8.25 AM
root / root
0755
cmp
103.758 KB
4 May 2020 3.15 PM
root / root
0755
col
29.008 KB
4 Feb 2026 8.18 PM
root / root
0755
colcrt
16.477 KB
4 Feb 2026 8.18 PM
root / root
0755
colrm
24.883 KB
4 Feb 2026 8.18 PM
root / root
0755
column
49.469 KB
4 Feb 2026 8.18 PM
root / root
0755
comm
41.563 KB
24 Mar 2026 1.05 PM
root / root
0755
compare
11.852 KB
1 Apr 2025 1.15 PM
root / root
0755
composite
11.836 KB
1 Apr 2025 1.15 PM
root / root
0755
conjure
11.836 KB
1 Apr 2025 1.15 PM
root / root
0755
convert
11.836 KB
1 Apr 2025 1.15 PM
root / root
0755
cp
147.977 KB
24 Mar 2026 1.05 PM
root / root
0755
cpan
8.174 KB
3 Jun 2025 2.32 PM
root / root
0755
cpp
1.21 MB
26 Aug 2025 9.47 AM
root / root
0755
createdb
70.219 KB
27 Feb 2024 8.25 AM
root / root
0755
createuser
74.625 KB
27 Feb 2024 8.25 AM
root / root
0755
crontab
1.488 KB
6 Apr 2024 11.40 AM
root / root
0755
crontab.cagefs
54.156 KB
2 Mar 2026 11.08 AM
root / root
0755
csplit
53.68 KB
24 Mar 2026 1.05 PM
root / root
0755
curl
230.078 KB
24 Mar 2026 1.41 PM
root / root
0755
cut
49.516 KB
24 Mar 2026 1.05 PM
root / root
0755
date
105.961 KB
24 Mar 2026 1.05 PM
root / root
0755
dd
77.969 KB
24 Mar 2026 1.05 PM
root / root
0755
delv
42.461 KB
6 Nov 2025 7.45 AM
root / root
0755
df
91.086 KB
24 Mar 2026 1.05 PM
root / root
0755
diff
268.008 KB
4 May 2020 3.15 PM
root / root
0755
diff3
128.602 KB
4 May 2020 3.15 PM
root / root
0755
dig
162.18 KB
6 Nov 2025 7.45 AM
root / root
0755
dir
139.898 KB
24 Mar 2026 1.05 PM
root / root
0755
dircolors
49.555 KB
24 Mar 2026 1.05 PM
root / root
0755
dirname
33.359 KB
24 Mar 2026 1.05 PM
root / root
0755
display
11.844 KB
1 Apr 2025 1.15 PM
root / root
0755
dnstap-read
20.43 KB
6 Nov 2025 7.45 AM
root / root
0755
dropdb
66.023 KB
27 Feb 2024 8.25 AM
root / root
0755
dropuser
65.992 KB
27 Feb 2024 8.25 AM
root / root
0755
du
107 KB
24 Mar 2026 1.05 PM
root / root
0755
echo
37.352 KB
24 Mar 2026 1.05 PM
root / root
0755
egrep
0.027 KB
11 Oct 2019 3.15 PM
root / root
0755
enc2xs
40.975 KB
13 Oct 2019 8.46 AM
root / root
0755
enchant
21.078 KB
23 Oct 2019 8.03 PM
root / root
0755
enchant-lsmod
13.094 KB
23 Oct 2019 8.03 PM
root / root
0755
env
41.352 KB
24 Mar 2026 1.05 PM
root / root
0755
eps2eps
0.624 KB
3 Jun 2025 2.48 AM
root / root
0755
eqn
232.156 KB
13 Oct 2019 2.29 PM
root / root
0755
ex
1.13 MB
12 Mar 2026 10.10 AM
root / root
0755
expand
41.594 KB
24 Mar 2026 1.05 PM
root / root
0755
expr
49.57 KB
24 Mar 2026 1.05 PM
root / root
0755
factor
85.969 KB
24 Mar 2026 1.05 PM
root / root
0755
false
33.32 KB
24 Mar 2026 1.05 PM
root / root
0755
fc-cache
0.129 KB
16 Aug 2021 11.04 AM
root / root
0755
fc-cache-64
20.352 KB
9 Oct 2021 9.02 AM
root / root
0755
fc-cat
16.352 KB
9 Oct 2021 9.02 AM
root / root
0755
fc-conflist
12.25 KB
9 Oct 2021 9.02 AM
root / root
0755
fc-list
12.25 KB
9 Oct 2021 9.02 AM
root / root
0755
fc-match
16.258 KB
9 Oct 2021 9.02 AM
root / root
0755
fc-pattern
12.258 KB
9 Oct 2021 9.02 AM
root / root
0755
fc-query
12.242 KB
9 Oct 2021 9.02 AM
root / root
0755
fc-scan
12.258 KB
9 Oct 2021 9.02 AM
root / root
0755
fc-validate
16.258 KB
9 Oct 2021 9.02 AM
root / root
0755
fgrep
0.027 KB
11 Oct 2019 3.15 PM
root / root
0755
file
24.688 KB
7 Oct 2025 6.30 AM
root / root
0755
find
223.273 KB
18 Dec 2025 2.57 PM
root / root
0755
flex
428.445 KB
12 Oct 2019 12.33 PM
root / root
0755
flex++
428.445 KB
12 Oct 2019 12.33 PM
root / root
0755
flock
33.195 KB
4 Feb 2026 8.18 PM
root / root
0755
fmt
45.492 KB
24 Mar 2026 1.05 PM
root / root
0755
fold
41.422 KB
24 Mar 2026 1.05 PM
root / root
0755
free
20.789 KB
14 Oct 2023 8.31 PM
root / root
0755
freetype-config
4.313 KB
31 Mar 2025 7.37 PM
root / root
0755
funzip
36.625 KB
3 Jun 2025 2.10 AM
root / root
0755
g++
1.21 MB
26 Aug 2025 9.47 AM
root / compiler
0750
gawk
669.773 KB
18 Apr 2022 3.56 PM
root / root
0755
gcc
1.21 MB
26 Aug 2025 9.47 AM
root / compiler
0750
gcc-ar
36.656 KB
26 Aug 2025 9.47 AM
root / root
0755
gcc-nm
36.656 KB
26 Aug 2025 9.47 AM
root / root
0755
gcc-ranlib
36.656 KB
26 Aug 2025 9.47 AM
root / root
0755
gcov
1.31 MB
26 Aug 2025 9.47 AM
root / root
0755
gcov-dump
570.961 KB
26 Aug 2025 9.47 AM
root / root
0755
gcov-tool
607.773 KB
26 Aug 2025 9.47 AM
root / root
0755
gem
0.529 KB
14 May 2025 12.40 PM
root / root
0755
gencat
24.836 KB
17 Mar 2026 5.06 PM
root / root
0755
geoiplookup
21.891 KB
28 Nov 2019 10.06 PM
root / root
0755
geoiplookup6
21.648 KB
28 Nov 2019 10.06 PM
root / root
0755
geqn
232.156 KB
13 Oct 2019 2.29 PM
root / root
0755
getconf
32.461 KB
17 Mar 2026 5.06 PM
root / root
0755
getent
33.125 KB
17 Mar 2026 5.06 PM
root / root
0755
getopt
20.531 KB
4 Feb 2026 8.18 PM
root / root
0755
ghostscript
12.352 KB
3 Jun 2025 2.48 AM
root / root
0755
git
3.67 MB
23 Jul 2025 6.59 AM
root / root
0755
git-receive-pack
3.67 MB
23 Jul 2025 6.59 AM
root / root
0755
git-shell
2.13 MB
23 Jul 2025 6.59 AM
root / root
0755
git-upload-archive
3.67 MB
23 Jul 2025 6.59 AM
root / root
0755
git-upload-pack
3.67 MB
23 Jul 2025 6.59 AM
root / root
0755
gm
7.82 KB
28 Mar 2022 3.50 PM
root / root
0755
gmake
235.32 KB
18 Apr 2022 4.38 PM
root / root
0755
gneqn
0.887 KB
13 Oct 2019 2.29 PM
root / root
0755
gnroff
3.234 KB
13 Oct 2019 2.29 PM
root / root
0755
gpg
1.04 MB
16 Jan 2026 1.48 AM
root / root
0755
gpg-agent
419.297 KB
16 Jan 2026 1.48 AM
root / root
0755
gpg-error
34.156 KB
12 Oct 2019 12.20 PM
root / root
0755
gpg-zip
3.442 KB
16 Jan 2026 1.48 AM
root / root
0755
gpgsplit
87.023 KB
16 Jan 2026 1.48 AM
root / root
0755
gpgv
451.508 KB
16 Jan 2026 1.48 AM
root / root
0755
gpic
293.844 KB
13 Oct 2019 2.29 PM
root / root
0755
gprof
103.352 KB
18 Dec 2025 2.21 PM
root / root
0755
grep
193.633 KB
11 Oct 2019 3.15 PM
root / root
0755
groff
124.922 KB
13 Oct 2019 2.29 PM
root / root
0755
grops
191.141 KB
13 Oct 2019 2.29 PM
root / root
0755
grotty
141.898 KB
13 Oct 2019 2.29 PM
root / root
0755
groups
37.391 KB
24 Mar 2026 1.05 PM
root / root
0755
gs
12.352 KB
3 Jun 2025 2.48 AM
root / root
0755
gsnd
0.271 KB
3 Jun 2025 2.48 AM
root / root
0755
gsoelim
42.555 KB
13 Oct 2019 2.29 PM
root / root
0755
gtar
448.992 KB
26 Aug 2025 8.57 AM
root / root
0755
gtbl
154.609 KB
13 Oct 2019 2.29 PM
root / root
0755
gtroff
805.023 KB
13 Oct 2019 2.29 PM
root / root
0755
gunzip
2.29 KB
27 Apr 2022 5.49 AM
root / root
0755
gzexe
6.226 KB
27 Apr 2022 5.49 AM
root / root
0755
gzip
94.672 KB
27 Apr 2022 5.49 AM
root / root
0755
h2ph
28.693 KB
28 Jul 2025 8.08 AM
root / root
0755
h2xs
59.439 KB
28 Jul 2025 8.07 AM
root / root
0755
head
45.5 KB
24 Mar 2026 1.05 PM
root / root
0755
hexdump
57.508 KB
4 Feb 2026 8.18 PM
root / root
0755
host
142.289 KB
6 Nov 2025 7.45 AM
root / root
0755
hostid
33.336 KB
24 Mar 2026 1.05 PM
root / root
0755
hostname
21.156 KB
11 Oct 2019 1.06 PM
root / root
0755
hunspell
144.695 KB
13 Oct 2019 8.33 AM
root / root
0755
iconv
61.43 KB
17 Mar 2026 5.06 PM
root / root
0755
id
45.438 KB
24 Mar 2026 1.05 PM
root / root
0755
identify
11.844 KB
1 Apr 2025 1.15 PM
root / root
0755
idn
39.406 KB
13 Oct 2019 4.55 PM
root / root
0755
ifnames
4.031 KB
13 Aug 2024 7.30 PM
root / root
0755
import
11.836 KB
1 Apr 2025 1.15 PM
root / root
0755
infocmp
61.047 KB
14 Oct 2023 6.54 PM
root / root
0755
infotocap
85.313 KB
14 Oct 2023 6.54 PM
root / root
0755
install
156.164 KB
24 Mar 2026 1.05 PM
root / root
0755
instmodsh
4.096 KB
13 Oct 2019 8.55 AM
root / root
0755
ionice
28.984 KB
4 Feb 2026 8.18 PM
root / root
0755
ipcrm
28.992 KB
4 Feb 2026 8.18 PM
root / root
0755
ipcs
53.398 KB
4 Feb 2026 8.18 PM
root / root
0755
isosize
24.883 KB
4 Feb 2026 8.18 PM
root / root
0755
ispell
0.965 KB
18 Apr 2022 3.10 PM
root / root
0755
join
53.695 KB
24 Mar 2026 1.05 PM
root / root
0755
kill
37.281 KB
4 Feb 2026 8.18 PM
root / root
0755
ld
1.71 MB
18 Dec 2025 2.21 PM
root / compiler
0750
ld.bfd
1.71 MB
18 Dec 2025 2.21 PM
root / compiler
0750
ldd
5.313 KB
17 Mar 2026 4.54 PM
root / root
0755
less
173.758 KB
2 Jul 2024 8.10 PM
root / root
0755
lessecho
12.398 KB
2 Jul 2024 8.10 PM
root / root
0755
lesskey
21.992 KB
2 Jul 2024 8.10 PM
root / root
0755
lesspipe.sh
3.069 KB
2 Jul 2024 7.57 PM
root / root
0755
lex
428.445 KB
12 Oct 2019 12.33 PM
root / root
0755
libnetcfg
15.405 KB
28 Jul 2025 8.08 AM
root / root
0755
libtool
359.105 KB
11 Oct 2019 2.55 PM
root / root
0755
libtoolize
126.169 KB
11 Oct 2019 2.55 PM
root / root
0755
link
33.336 KB
24 Mar 2026 1.05 PM
root / root
0755
ln
70.5 KB
24 Mar 2026 1.05 PM
root / root
0755
locale
56.445 KB
17 Mar 2026 5.06 PM
root / root
0755
localedef
307.469 KB
17 Mar 2026 5.06 PM
root / root
0755
logger
49.984 KB
4 Feb 2026 8.18 PM
root / root
0755
login
40.961 KB
4 Feb 2026 8.18 PM
root / root
0755
logname
33.344 KB
24 Mar 2026 1.05 PM
root / root
0755
look
16.461 KB
4 Feb 2026 8.18 PM
root / root
0755
ls
139.906 KB
24 Mar 2026 1.05 PM
root / root
0755
lynx
1.84 MB
18 Apr 2022 9.01 PM
root / root
0755
m4
185.563 KB
11 Oct 2019 2.41 PM
root / root
0755
mail
408.891 KB
13 Oct 2019 12.19 AM
root / root
0755
mailx
408.891 KB
13 Oct 2019 12.19 AM
root / root
0755
make
235.32 KB
18 Apr 2022 4.38 PM
root / root
0755
make-dummy-cert
0.596 KB
23 Feb 2026 7.51 AM
root / root
0755
mariadb
5.35 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-access
109.484 KB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-admin
4.89 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-binlog
5.16 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-check
4.89 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-conv
4.6 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-convert-table-format
4.283 KB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-dump
4.99 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-dumpslow
8.186 KB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-embedded
24.61 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-find-rows
3.353 KB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-hotcopy
34.665 KB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-import
4.88 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-plugin
4.57 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-secure-installation
13.654 KB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-setpermission
17.703 KB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-show
4.88 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-slap
4.89 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-tzinfo-to-sql
4.57 MB
11 Feb 2026 1.04 AM
root / root
0755
mariadb-waitpid
4.56 MB
11 Feb 2026 1.04 AM
root / root
0755
mc
1.3 MB
18 Oct 2019 8.38 PM
root / root
0755
mcdiff
1.3 MB
18 Oct 2019 8.38 PM
root / root
0755
mcedit
1.3 MB
18 Oct 2019 8.38 PM
root / root
0755
mcookie
33.266 KB
4 Feb 2026 8.18 PM
root / root
0755
mcview
1.3 MB
18 Oct 2019 8.38 PM
root / root
0755
md5sum
45.539 KB
24 Mar 2026 1.05 PM
root / root
0755
mesg
16.359 KB
4 Feb 2026 8.18 PM
root / root
0755
mkdir
82.695 KB
24 Mar 2026 1.05 PM
root / root
0755
mkfifo
66.461 KB
24 Mar 2026 1.05 PM
root / root
0755
mktemp
45.656 KB
24 Mar 2026 1.05 PM
root / root
0755
mogrify
11.836 KB
1 Apr 2025 1.15 PM
root / root
0755
montage
11.836 KB
1 Apr 2025 1.15 PM
root / root
0755
more
44.938 KB
4 Feb 2026 8.18 PM
root / root
0755
msql2mysql
1.412 KB
11 Feb 2026 1.04 AM
root / root
0755
mv
143.961 KB
24 Mar 2026 1.05 PM
root / root
0755
my_print_defaults
4.56 MB
11 Feb 2026 1.04 AM
root / root
0755
mysql
5.35 MB
11 Feb 2026 1.04 AM
root / root
0755
mysql_config
4.468 KB
11 Feb 2026 1.04 AM
root / root
0755
mysql_find_rows
3.353 KB
11 Feb 2026 1.04 AM
root / root
0755
mysql_waitpid
4.56 MB
11 Feb 2026 1.04 AM
root / root
0755
mysqlaccess
109.484 KB
11 Feb 2026 1.04 AM
root / root
0755
mysqladmin
4.89 MB
11 Feb 2026 1.04 AM
root / root
0755
mysqlbinlog
5.16 MB
11 Feb 2026 1.04 AM
root / root
0755
mysqlcheck
4.89 MB
11 Feb 2026 1.04 AM
root / root
0755
mysqldump
4.99 MB
11 Feb 2026 1.04 AM
root / root
0755
mysqlimport
4.88 MB
11 Feb 2026 1.04 AM
root / root
0755
mysqlshow
4.88 MB
11 Feb 2026 1.04 AM
root / root
0755
mytop
72.028 KB
11 Feb 2026 1.04 AM
root / root
0755
namei
33.102 KB
4 Feb 2026 8.18 PM
root / root
0755
nano
247.938 KB
24 Sep 2024 2.16 AM
root / root
0755
neqn
0.887 KB
13 Oct 2019 2.29 PM
root / root
0755
nice
37.328 KB
24 Mar 2026 1.05 PM
root / root
0755
nl
45.555 KB
24 Mar 2026 1.05 PM
root / root
0755
nm
50.375 KB
18 Dec 2025 2.21 PM
root / root
0755
nohup
37.414 KB
24 Mar 2026 1.05 PM
root / root
0755
nproc
37.406 KB
24 Mar 2026 1.05 PM
root / root
0755
nroff
3.234 KB
13 Oct 2019 2.29 PM
root / root
0755
nslookup
146.258 KB
6 Nov 2025 7.45 AM
root / root
0755
nsupdate
73.055 KB
6 Nov 2025 7.45 AM
root / root
0755
numfmt
65.641 KB
24 Mar 2026 1.05 PM
root / root
0755
objcopy
240.07 KB
18 Dec 2025 2.21 PM
root / root
0755
objdump
419.758 KB
18 Dec 2025 2.21 PM
root / root
0755
od
73.805 KB
24 Mar 2026 1.05 PM
root / root
0755
openssl
745.953 KB
23 Feb 2026 7.52 AM
root / root
0755
pango-list
11.875 KB
8 Oct 2021 3.22 PM
root / root
0755
pango-view
57.438 KB
8 Oct 2021 3.22 PM
root / root
0755
passwd
1.254 KB
18 Apr 2022 10.59 PM
root / root
0755
paste
37.398 KB
24 Mar 2026 1.05 PM
root / root
0755
patch
206.461 KB
1 Jun 2020 3.14 PM
root / root
0755
pathchk
37.336 KB
24 Mar 2026 1.05 PM
root / root
0755
pdf2dsc
0.682 KB
3 Jun 2025 2.48 AM
root / root
0755
pdf2ps
0.888 KB
3 Jun 2025 2.48 AM
root / root
0755
perl
12.43 KB
28 Jul 2025 8.07 AM
root / root
0755
perl5.26.3
12.43 KB
28 Jul 2025 8.07 AM
root / root
0755
perlbug
44.393 KB
28 Jul 2025 8.08 AM
root / root
0755
perldoc
0.115 KB
13 Oct 2019 11.53 AM
root / root
0755
perlivp
10.56 KB
28 Jul 2025 8.07 AM
root / root
0755
perlml
6.859 KB
10 Aug 2022 8.54 PM
root / root
0755
perlthanks
44.393 KB
28 Jul 2025 8.08 AM
root / root
0755
pg_dump
399.43 KB
27 Feb 2024 8.25 AM
root / root
0755
pg_dumpall
107.109 KB
27 Feb 2024 8.25 AM
root / root
0755
pg_restore
173.344 KB
27 Feb 2024 8.25 AM
root / root
0755
pgrep
28.844 KB
14 Oct 2023 8.31 PM
root / root
0755
php
0.915 KB
3 Apr 2025 11.08 AM
root / root
0755
pic
293.844 KB
13 Oct 2019 2.29 PM
root / root
0755
piconv
8.077 KB
13 Oct 2019 8.46 AM
root / root
0755
pinentry
2.348 KB
12 Aug 2018 5.18 PM
root / root
0755
pinentry-curses
77.891 KB
24 Nov 2019 5.39 PM
root / root
0755
ping
66.125 KB
14 Oct 2023 5.19 PM
root / root
0755
pinky
41.461 KB
24 Mar 2026 1.05 PM
root / root
0755
pkg-config
40.039 KB
13 Oct 2019 6.57 AM
root / root
0755
pkgconf
40.039 KB
13 Oct 2019 6.57 AM
root / root
0755
pkill
28.844 KB
14 Oct 2023 8.31 PM
root / root
0755
pl2pm
4.427 KB
28 Jul 2025 8.08 AM
root / root
0755
pmap
32.781 KB
14 Oct 2023 8.31 PM
root / root
0755
pod2html
4.037 KB
28 Jul 2025 8.08 AM
root / root
0755
pod2man
14.682 KB
13 Oct 2019 2.12 PM
root / root
0755
pod2text
10.55 KB
13 Oct 2019 2.12 PM
root / root
0755
pod2usage
3.855 KB
13 Oct 2019 11.57 AM
root / root
0755
podchecker
3.572 KB
13 Oct 2019 11.46 AM
root / root
0755
podselect
2.468 KB
13 Oct 2019 11.52 AM
root / root
0755
post-grohtml
238.727 KB
13 Oct 2019 2.29 PM
root / root
0755
pr
82.148 KB
24 Mar 2026 1.05 PM
root / root
0755
pre-grohtml
130.555 KB
13 Oct 2019 2.29 PM
root / root
0755
precat
5.523 KB
18 Apr 2022 3.10 PM
root / root
0755
preunzip
5.523 KB
18 Apr 2022 3.10 PM
root / root
0755
prezip
5.523 KB
18 Apr 2022 3.10 PM
root / root
0755
prezip-bin
11.977 KB
18 Apr 2022 3.10 PM
root / root
0755
printenv
33.32 KB
24 Mar 2026 1.05 PM
root / root
0755
printf
53.563 KB
24 Mar 2026 1.05 PM
root / root
0755
prove
13.244 KB
13 Oct 2019 12.42 PM
root / root
0755
ps
134.75 KB
14 Oct 2023 8.31 PM
root / root
0755
ps2ascii
0.616 KB
3 Jun 2025 2.48 AM
root / root
0755
ps2epsi
2.688 KB
3 Jun 2025 2.48 AM
root / root
0755
ps2pdf
0.266 KB
3 Jun 2025 2.48 AM
root / root
0755
ps2pdf12
0.21 KB
3 Jun 2025 2.48 AM
root / root
0755
ps2pdf13
0.21 KB
3 Jun 2025 2.48 AM
root / root
0755
ps2pdf14
0.21 KB
3 Jun 2025 2.48 AM
root / root
0755
ps2pdfwr
1.071 KB
3 Jun 2025 2.48 AM
root / root
0755
ps2ps
0.632 KB
3 Jun 2025 2.48 AM
root / root
0755
ps2ps2
0.653 KB
3 Jun 2025 2.48 AM
root / root
0755
psql
644.328 KB
27 Feb 2024 8.25 AM
root / root
0755
ptx
78 KB
24 Mar 2026 1.05 PM
root / root
0755
pwd
37.422 KB
24 Mar 2026 1.05 PM
root / root
0755
pwdx
12.68 KB
14 Oct 2023 8.31 PM
root / root
0755
python2
7.844 KB
10 Apr 2024 4.58 AM
root / root
0755
python2.7
7.844 KB
10 Apr 2024 4.58 AM
root / root
0755
python3
11.594 KB
2 Apr 2026 3.01 PM
root / root
0755
python3.6
11.594 KB
2 Apr 2026 3.01 PM
root / root
0755
python3.6m
11.594 KB
2 Apr 2026 3.01 PM
root / root
0755
ranlib
61.969 KB
18 Dec 2025 2.21 PM
root / root
0755
readelf
624.539 KB
18 Dec 2025 2.21 PM
root / root
0755
readlink
45.883 KB
24 Mar 2026 1.05 PM
root / root
0755
realpath
49.938 KB
24 Mar 2026 1.05 PM
root / root
0755
recode
47.031 KB
18 Oct 2019 3.18 PM
root / root
0755
reindexdb
70.32 KB
27 Feb 2024 8.25 AM
root / root
0755
rename
16.5 KB
4 Feb 2026 8.18 PM
root / root
0755
renew-dummy-cert
0.708 KB
23 Feb 2026 7.51 AM
root / root
0755
renice
16.461 KB
4 Feb 2026 8.18 PM
root / root
0755
replace
4.54 MB
11 Feb 2026 1.04 AM
root / root
0755
reset
24.758 KB
14 Oct 2023 6.54 PM
root / root
0755
rev
12.461 KB
4 Feb 2026 8.18 PM
root / root
0755
rm
70.375 KB
24 Mar 2026 1.05 PM
root / root
0755
rmdir
45.461 KB
24 Mar 2026 1.05 PM
root / root
0755
rnano
247.938 KB
24 Sep 2024 2.16 AM
root / root
0755
rsync
510.133 KB
2 Apr 2026 11.49 AM
root / root
0755
ruby
11.844 KB
14 May 2025 12.43 PM
root / root
0755
run-with-aspell
0.083 KB
18 Apr 2022 3.10 PM
root / root
0755
rvi
1.13 MB
12 Mar 2026 10.10 AM
root / root
0755
rview
1.13 MB
12 Mar 2026 10.10 AM
root / root
0755
rvim
2.93 MB
12 Mar 2026 10.10 AM
root / root
0755
scalar
2.18 MB
23 Jul 2025 6.59 AM
root / root
0755
scl
36.867 KB
1 Apr 2023 4.10 PM
root / root
0755
scl_enabled
0.252 KB
25 Aug 2017 8.23 AM
root / root
0755
scl_source
1.819 KB
1 Apr 2023 4.10 PM
root / root
0755
scp
102.836 KB
2 Apr 2026 1.37 PM
root / root
0755
screen
482.461 KB
5 May 2021 10.04 AM
root / screen
0755
script
36.797 KB
4 Feb 2026 8.18 PM
root / root
0755
sdiff
105.328 KB
4 May 2020 3.15 PM
root / root
0755
sed
115.477 KB
18 Apr 2022 9.41 PM
root / root
0755
selectorctl
7.629 KB
26 Feb 2026 3.36 PM
root / root
0755
seq
53.445 KB
24 Mar 2026 1.05 PM
root / root
0755
setsid
16.375 KB
4 Feb 2026 8.18 PM
root / root
0755
setterm
45.125 KB
4 Feb 2026 8.18 PM
root / root
0755
sftp
159.742 KB
2 Apr 2026 1.37 PM
root / root
0755
sh
1.1 MB
26 Aug 2025 8.48 AM
root / root
0755
sha1sum
45.547 KB
24 Mar 2026 1.05 PM
root / root
0755
sha224sum
45.578 KB
24 Mar 2026 1.05 PM
root / root
0755
sha256sum
45.578 KB
24 Mar 2026 1.05 PM
root / root
0755
sha384sum
45.594 KB
24 Mar 2026 1.05 PM
root / root
0755
sha512sum
45.594 KB
24 Mar 2026 1.05 PM
root / root
0755
shred
61.852 KB
24 Mar 2026 1.05 PM
root / root
0755
shuf
58.094 KB
24 Mar 2026 1.05 PM
root / root
0755
size
33.25 KB
18 Dec 2025 2.21 PM
root / root
0755
skill
28.797 KB
14 Oct 2023 8.31 PM
root / root
0755
slabtop
20.844 KB
14 Oct 2023 8.31 PM
root / root
0755
sleep
37.398 KB
24 Mar 2026 1.05 PM
root / root
0755
snice
28.797 KB
14 Oct 2023 8.31 PM
root / root
0755
soelim
42.555 KB
13 Oct 2019 2.29 PM
root / root
0755
sort
123.477 KB
24 Mar 2026 1.05 PM
root / root
0755
spell
0.119 KB
18 Apr 2022 3.10 PM
root / root
0755
splain
18.701 KB
28 Jul 2025 8.08 AM
root / root
0755
split
58.047 KB
24 Mar 2026 1.05 PM
root / root
0755
sprof
28.672 KB
17 Mar 2026 5.06 PM
root / root
0755
sqlite3
1.28 MB
29 Jul 2025 1.27 AM
root / root
0755
ssh
757.5 KB
2 Apr 2026 1.37 PM
root / root
0755
ssh-add
346.109 KB
2 Apr 2026 1.37 PM
root / root
0755
ssh-agent
325.578 KB
2 Apr 2026 1.37 PM
root / root
0755
ssh-copy-id
10.443 KB
2 Apr 2026 1.37 PM
root / root
0755
ssh-keygen
427.188 KB
2 Apr 2026 1.37 PM
root / root
0755
ssh-keyscan
428.516 KB
2 Apr 2026 1.37 PM
root / root
0755
stat
86.164 KB
24 Mar 2026 1.05 PM
root / root
0755
stdbuf
49.5 KB
24 Mar 2026 1.05 PM
root / root
0755
strace
1.94 MB
28 Jan 2025 1.32 AM
root / root
0755
stream
11.828 KB
1 Apr 2025 1.15 PM
root / root
0755
strings
37.43 KB
18 Dec 2025 2.21 PM
root / root
0755
strip
240.094 KB
18 Dec 2025 2.21 PM
root / root
0755
stty
77.609 KB
24 Mar 2026 1.05 PM
root / root
0755
sum
45.531 KB
24 Mar 2026 1.05 PM
root / root
0755
sync
37.352 KB
24 Mar 2026 1.05 PM
root / root
0755
tabs
16.555 KB
14 Oct 2023 6.54 PM
root / root
0755
tac
41.492 KB
24 Mar 2026 1.05 PM
root / root
0755
tail
74.133 KB
24 Mar 2026 1.05 PM
root / root
0755
tar
448.992 KB
26 Aug 2025 8.57 AM
root / root
0755
taskset
37.258 KB
4 Feb 2026 8.18 PM
root / root
0755
tbl
154.609 KB
13 Oct 2019 2.29 PM
root / root
0755
tclsh
9.039 KB
12 Oct 2019 12.25 AM
root / root
0755
tclsh8.6
9.039 KB
12 Oct 2019 12.25 AM
root / root
0755
tee
41.477 KB
24 Mar 2026 1.05 PM
root / root
0755
test
53.547 KB
24 Mar 2026 1.05 PM
root / root
0755
tic
85.313 KB
14 Oct 2023 6.54 PM
root / root
0755
timeout
41.852 KB
24 Mar 2026 1.05 PM
root / root
0755
tload
16.758 KB
14 Oct 2023 8.31 PM
root / root
0755
tmpwatch
35.469 KB
12 Oct 2019 11.32 AM
root / root
0755
toe
16.453 KB
14 Oct 2023 6.54 PM
root / root
0755
top
121.695 KB
14 Oct 2023 8.31 PM
root / root
0755
touch
93.938 KB
24 Mar 2026 1.05 PM
root / root
0755
tput
24.797 KB
14 Oct 2023 6.54 PM
root / root
0755
tr
49.625 KB
24 Mar 2026 1.05 PM
root / root
0755
traceroute
70.969 KB
11 Mar 2025 7.45 AM
root / root
0755
troff
805.023 KB
13 Oct 2019 2.29 PM
root / root
0755
true
33.328 KB
24 Mar 2026 1.05 PM
root / root
0755
truncate
41.359 KB
24 Mar 2026 1.05 PM
root / root
0755
tset
24.758 KB
14 Oct 2023 6.54 PM
root / root
0755
tsort
41.492 KB
24 Mar 2026 1.05 PM
root / root
0755
tty
33.313 KB
24 Mar 2026 1.05 PM
root / root
0755
tzselect
15.01 KB
17 Mar 2026 4.54 PM
root / root
0755
uapi
1.25 KB
2 Apr 2026 3.45 PM
root / root
0755
ul
20.586 KB
4 Feb 2026 8.18 PM
root / root
0755
uname
37.328 KB
24 Mar 2026 1.05 PM
root / root
0755
unexpand
45.609 KB
24 Mar 2026 1.05 PM
root / root
0755
uniq
49.641 KB
24 Mar 2026 1.05 PM
root / root
0755
unlink
33.344 KB
24 Mar 2026 1.05 PM
root / root
0755
unzip
201.883 KB
3 Jun 2025 2.10 AM
root / root
0755
unzipsfx
101.477 KB
3 Jun 2025 2.10 AM
root / root
0755
uptime
12.586 KB
14 Oct 2023 8.31 PM
root / root
0755
users
37.398 KB
24 Mar 2026 1.05 PM
root / root
0755
utmpdump
28.664 KB
4 Feb 2026 8.18 PM
root / root
0755
vacuumdb
78.461 KB
27 Feb 2024 8.25 AM
root / root
0755
vdir
139.906 KB
24 Mar 2026 1.05 PM
root / root
0755
vi
1.13 MB
12 Mar 2026 10.10 AM
root / root
0755
view
1.13 MB
12 Mar 2026 10.10 AM
root / root
0755
vim
2.93 MB
12 Mar 2026 10.10 AM
root / root
0755
vimdiff
2.93 MB
12 Mar 2026 10.10 AM
root / root
0755
vimtutor
2.071 KB
12 Mar 2026 10.09 AM
root / root
0755
vmstat
36.789 KB
14 Oct 2023 8.31 PM
root / root
0755
watch
29.188 KB
14 Oct 2023 8.31 PM
root / root
0755
wc
49.641 KB
24 Mar 2026 1.05 PM
root / root
0755
wget
521.414 KB
13 Aug 2024 10.22 PM
root / root
0755
whereis
29.273 KB
4 Feb 2026 8.18 PM
root / root
0755
which
29.383 KB
26 Aug 2025 8.54 AM
root / root
0755
who
53.594 KB
24 Mar 2026 1.05 PM
root / root
0755
whoami
33.336 KB
24 Mar 2026 1.05 PM
root / root
0755
word-list-compress
11.992 KB
18 Apr 2022 3.10 PM
root / root
0755
x86_64-redhat-linux-c++
1.21 MB
26 Aug 2025 9.47 AM
root / compiler
0750
x86_64-redhat-linux-g++
1.21 MB
26 Aug 2025 9.47 AM
root / compiler
0750
x86_64-redhat-linux-gcc
1.21 MB
26 Aug 2025 9.47 AM
root / compiler
0750
x86_64-redhat-linux-gcc-8
1.21 MB
26 Aug 2025 9.47 AM
root / compiler
0750
xargs
74.109 KB
18 Dec 2025 2.57 PM
root / root
0755
xmlcatalog
20.375 KB
6 Aug 2025 1.59 PM
root / root
0755
xmllint
73.367 KB
6 Aug 2025 1.59 PM
root / root
0755
xmlwf
36.961 KB
20 Nov 2025 7.31 AM
root / root
0755
xsltproc
28.469 KB
26 Aug 2025 8.55 AM
root / root
0755
xsubpp
4.961 KB
13 Oct 2019 8.58 AM
root / root
0755
xxd
20.531 KB
12 Mar 2026 10.10 AM
root / root
0755
yes
33.367 KB
24 Mar 2026 1.05 PM
root / root
0755
zcat
1.937 KB
27 Apr 2022 5.49 AM
root / root
0755
zcmp
1.638 KB
27 Apr 2022 5.49 AM
root / root
0755
zdiff
5.741 KB
27 Apr 2022 5.49 AM
root / root
0755
zegrep
0.028 KB
27 Apr 2022 5.49 AM
root / root
0755
zfgrep
0.028 KB
27 Apr 2022 5.49 AM
root / root
0755
zforce
2.031 KB
27 Apr 2022 5.49 AM
root / root
0755
zgrep
7.404 KB
27 Apr 2022 5.49 AM
root / root
0755
zip
229 KB
11 Oct 2019 1.11 PM
root / root
0755
zipcloak
102.906 KB
11 Oct 2019 1.11 PM
root / root
0755
zipgrep
2.884 KB
10 Oct 2008 5.40 PM
root / root
0755
zipinfo
201.883 KB
3 Jun 2025 2.10 AM
root / root
0755
zipnote
97.758 KB
11 Oct 2019 1.11 PM
root / root
0755
zipsplit
97.758 KB
11 Oct 2019 1.11 PM
root / root
0755
zless
2.153 KB
27 Apr 2022 5.49 AM
root / root
0755
zmore
1.798 KB
27 Apr 2022 5.49 AM
root / root
0755
znew
4.445 KB
27 Apr 2022 5.49 AM
root / root
0755
zsoelim
42.555 KB
13 Oct 2019 2.29 PM
root / root
0755

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF