GRAYBYTE WORDPRESS FILE MANAGER3695

Server IP : 188.114.97.0 / Your IP : 216.73.216.196
System : Linux crmarketing.1092.w2797 5.10.0-45-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : ON | Pkexec : OFF

HOME

/usr/bin/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/bin//see
#! /usr/bin/perl
###############################################################################
#
#  Run-Mailcap:  Run a program specified in the mailcap file based on a mime
#  type.
#
#  Written by Brian White <[email protected]>
#  This file has been placed in the public domain (the only true "free").
#
###############################################################################

use Encode qw(decode);
use I18N::Langinfo qw(langinfo CODESET);
use File::Spec;

$debug=($ENV{RUN_MAILCAP_DEBUG} || 0);
$norun=0;
$nopager=0;
$etcmimetyp="/etc/mime.types";
$shrmimetyp="/usr/share/etc/mime.types";
$locmimetyp="/usr/local/etc/mime.types";
$usrmimetyp="$ENV{HOME}/.mime.types";
$xtermprgrm="/usr/bin/x-terminal-emulator"; # xterm?
$defmimetyp="application/octet-stream";
$quotedsemi=chr(255);
$quotedprct=chr(254);
$retcode=0;



sub Usage {
    my($error) = @_;
    print STDERR $error,"\n\n" if $error;

    print STDERR "Use: $0 <--action=VAL> [--debug] [MIME-TYPE:[ENCODING:]]FILE [...]\n\n";
    print STDERR "Options:\n";
    print STDERR "  action        specify what action to do on these files (default=view)\n";
    print STDERR "  debug         be verbose about what's going on\n";
    print STDERR "  nopager       ignore any \"copiousoutput\" directives and never use a \"pager\"\n";
    print STDERR "  norun         just print but don't execute the command (useful with --debug)\n";
    print STDERR "\n";
    print STDERR "Mime-Type:\n";
    print STDERR "  any standard mime type designation in the form <class>/<subtype> -- if\n";
    print STDERR "  not specified, it will be determined from the filename extension\n\n";
    print STDERR "Encoding:\n";
    print STDERR "  how the file (and type) has been encoded (only \"gzip\", \"bzip2,\"\n";
    print STDERR "  \"xz\" and \"compress\" are supported) -- if not specified, it will be\n";
    print STDERR "   determined from the filename extension\n\n";

    exit ($error ? 1 : 0);
}



sub EncodingForFile {
    my($file) = @_;
    my $encoding;

    if ($file =~ m/\.gz$/)  { $encoding = "gzip";       }
    if ($file =~ m/\.bz2$/) { $encoding = "bzip2";      }
    if ($file =~ m/\.xz$/)  { $encoding = "xz";         }
    if ($file =~ m/\.Z$/)   { $encoding = "compress";   }

    print STDERR " - file \"$file\" has encoding \"$encoding\"\n" if $debug && $encoding;

    return $encoding;
}



sub ReadMimetypes {
    my($file) = @_;

    print STDERR " - Reading mime.types file \"$file\"...\n" if $debug;
    unless (open(MIMETYPES,'<',$file)) {
      # Quietly ignore an unreadable file, perhaps non-existent, perhaps
      # permission denied.
      print STDERR "   could not read \"$file\" -- $!\n" if $debug;
      return;
    }

    while (<MIMETYPES>) {
        chomp;
        s/\#.*$//;
        next if (m/^\s*$/);

        $_=lc($_);
        my($type,@exts) = split;

        foreach (@exts) {
            $mimetypes{$_} = $type unless exists $mimetypes{$_};
        }
    }
    close MIMETYPES;
}



sub ReadMailcap {
    my($file) = @_;
    my $line = "";

    print STDERR " - Reading mailcap file \"$file\"...\n" if $debug;
    unless (open(MAILCAP,'<',$file)) {
      # Quietly ignore an unreadable file, perhaps non-existent, perhaps
      # permission denied.
      print STDERR "   could not read \"$file\" -- $!\n" if $debug;
      return;
    }

    while (<MAILCAP>) {
        chomp;
        s/^\s+// if $line;
        $line .= $_;
        next unless $line;
        if ($line =~ m/^\s*\#/) {
            $line = "";
            next;
        }
        if ($line =~ m/\\$/) {
            $line =~ s/\\$//;
        } else {
            $line =~ s/\\;/$quotedsemi/go;
            $line =~ s/\\%/$quotedprct/go;
            push @mailcap,$line;
            $line = "";
        }
    }
    close MAILCAP;
}



sub TempFile {
    my($template) = @_;
    my($cmd,$head,$tail,$tmpfile);
    $template = "" unless (defined $template);

    ($head,$tail) = split(/%s/,$template,2);

#   $tmpfile = POSIX::tmpnam($name);
#   unlink($tmpfile);

    $cmd  = "mktemp --tmpdir";
    $cmd .= " ${head}XXXXXXXXXX" if $head;
    $cmd .= " --suffix $tail" if $tail;

    $tmpfile = `$cmd`;
    chomp($tmpfile);

#   $tmpfile = $ENV{TMPDIR};
#   $tmpfile = "/tmp" unless $tmpfile;
#   $tmpfile.= "/$name";
#   unlink($tmpfile);

    return $tmpfile;
}



sub SaveStdin {
    my($match) = @_;
    my($tmpfile,$amt,$buf);

    $tmpfile = $1 if ($match =~ m/nametemplate=(.*?)\s*($|;)/);
    $tmpfile = TempFile($tmpfile);
    open(TMPFILE,">$tmpfile") || die "Error: could not write \"$tmpfile\" -- $!\n";
    do {
        $amt = read(STDIN,$buf,102400);
        print TMPFILE $buf if $amt;
    } while ($amt != 0);
    close(TMPFILE);

    return $tmpfile;
}



sub DecodeFile {
    my($efile,$encoding,$action) = @_;
    my($file,$res);

    $file = $efile;
    $file =~ s!^.*/!!;          # remove leading directories
    $file =~ s!\.[^\.]*$!!;     # remove encoding extension
    $file =~ s!^\.?[^\.]*!%s!;  # replace name with placeholder
    $file = undef if ($efile eq '-');
    my $tmpfile = TempFile($file);

    print STDERR " - decoding \"$efile\" as \"$tmpfile\"\n" if $debug;

#   unlink($tmpfile); # should still be acceptable for "compose" output even if exists
    return $tmpfile if (($efile ne '-' && ! -e $efile) || $action eq 'compose');

    if ($encoding eq "gzip") {
        if ($efile eq '-') {
            $res = system "gzip -d >\Q$tmpfile\E";
        } else {
            $res = system "gzip -dc \Q$efile\E >\Q$tmpfile\E";
        }
    } elsif ($encoding eq "bzip2") {
        if ($efile eq '-') {
            $res = system "bzip2 -d >\Q$tmpfile\E";
        } else {
            $res = system "bzip2 -dc <\Q$efile\E >\Q$tmpfile\E";
        }
    } elsif ($encoding eq "xz") {
        if ($efile eq '-') {
            $res = system "xz -d >\Q$tmpfile\E";
        } else {
            $res = system "xz -dc <\Q$efile\E >\Q$tmpfile\E";
        }
    } elsif ($encoding eq "compress") {
        if ($efile eq '-') {
            $res = system "uncompress >\Q$tmpfile\E";
        } else {
            $res = system "uncompress <\Q$efile\E >\Q$tmpfile\E";
        }
    } else {
        die "Fatal: unknown encoding \"$encoding\" at";
    }

    $res = int($res/256);
    if ($res != 0) {
        print STDERR "Error: could not decode \"$efile\" -- $!\n";
        $retcode = 2 if ($retcode < 2);
        unlink($tmpfile);
        return;
    }

#   chmod 0600,$tmpfile; # done already by TempFile
    return $tmpfile;
}



sub EncodeFile {
    my($dfile,$efile,$encoding) = @_;
    my($res);

    print STDERR " - encoding \"$dfile\" as \"$efile\"\n";

    if ($encoding eq "gzip") {
        if ($efile eq '-') {
            $res = system "gzip -c \Q$dfile\E";
        } else {
            $res = system "gzip -c \Q$dfile\E >\Q$efile\E";
        }
    } elsif ($encoding eq "xz") {
        if ($efile eq '-') {
            $res = system "xz < \Q$dfile\E";
        } else {
            $res = system "xz < \Q$dfile\E >\Q$efile\E";
        }
    } elsif ($encoding eq "compress") {
        if ($efile eq '-') {
            $res = system "compress <\Q$dfile\E";
        } else {
            $res = system "compress <\Q$dfile\E >\Q$efile\E";
        }
    } else {
        die "Fatal: unknown encoding \"$encoding\" at";
    }

    $res = int($res/256);
    if ($res != 0) {
        print STDERR "Error: could not encode \"$efile\" (left as \"$dfile\")\n";
        $retcode = 2 if ($retcode < 2);
        return;
    }

    return $dfile;
}



sub ExtensionMimetype {
    my($file) = @_;
    my($ext)  = ($file =~ m!\.([^/\.]+)$!);
    my($typ);
    if ($ext) {
        unless ($donemimetypes) {
            ReadMimetypes($usrmimetyp);
            ReadMimetypes($locmimetyp);
            ReadMimetypes($shrmimetyp);
            ReadMimetypes($etcmimetyp);
            $donemimetypes = 1;
        }
        $typ = $mimetypes{lc($ext)};
        print STDERR " - extension \"$ext\" maps to mime-type \"$typ\"\n" if $debug;
    }
    return $typ;
}



sub MagicMimetype {
    my($file) = @_;
    my($typ);

    if (`which file`) {
        open(READER, "-|", "file", "-b", "--mime-type", "-e", "tokens", "-L", "-z", $file);
        $typ = <READER>;
        chomp $typ;
        print STDERR " - file command returned mime-type \"$typ\"\n" if $debug;
    }
    return $typ;
}



@files = ();
foreach (@ARGV) {
    print STDERR " - parsing parameter \"$_\"\n" if $debug;
    if (m!^(-h|--help)$!) {
        Usage();
        exit(0);
    } elsif (m!^--(.*?)=(.*)$!) {
        print STDERR "Warning: definition of \"$1=$2\" overrides value \"${$1}\"\n" if ($ {$1} && $ {$1} != $2);
        $ {$1}=$2;
    } elsif (m!^--(.*?)$!) {
        print STDERR "Warning: definition of \"$1=$2\" overrides value \"${$1}\"\n" if ($ {$1} && $ {$1} != 1);
        $ {$1}=1;
    } elsif (m!^[^/:]+/[^/:]+:[^/:]+:!) {
        push @files,$_;
    } elsif (m!^([^/:]+/[^/:]+):(.*)! && ! -e $_) {
        my $file = $_;
        my $type = $1;
        my $file = $2;
        my $code = EncodingForFile($file);
        push @files,"${type}:${code}:${file}";
        print STDERR " - file \"$file\" does not exist -- assuming mime-type specification of \"${type}\"\n" if $debug;
    } else {
        my $file = $_;
        my $code = EncodingForFile($file);
        my $type;
        if ($code) {
            my $efile = $file;
            $efile =~ s/\.[^\.]+$//;
            $type = ExtensionMimetype($efile);
        } else {
            $type = ExtensionMimetype($file);
        }
        $type = MagicMimetype($file) unless $type;
        if ($type) {
            push @files,"${type}:${code}:${file}";
        } else {
            print STDERR "Warning: unknown mime-type for \"$file\" -- using \"$defmimetyp\"\n";
            push @files,"${defmimetyp}:${code}:${file}";
        }
    }
}

# Pass --debug to sub-calls to this program.
$ENV{RUN_MAILCAP_DEBUG} = 1 if $debug;

unless ($action) {
       if ($0 =~ m!(^|/)(mime-)?view$!)     { $action="view";   }
    elsif ($0 =~ m!(^|/)(mime-)?see$!)      { $action="view";   }
    elsif ($0 =~ m!(^|/)(mime-)?cat$!)      { $action="cat";    }
    elsif ($0 =~ m!(^|/)(mime-)?edit$!)     { $action="edit";   }
    elsif ($0 =~ m!(^|/)(mime-)?change$!)   { $action="edit";   }
    elsif ($0 =~ m!(^|/)(mime-)?compose$!)  { $action="compose";}
    elsif ($0 =~ m!(^|/)(mime-)?print$!)    { $action="print";  }
    elsif ($0 =~ m!(^|/)(mime-)?create$!)   { $action="compose";}
    else                                    { $action="view";   }
}


$mailcaps = $ENV{MAILCAPS};
$mailcaps = "$ENV{HOME}/.mailcap:/etc/mailcap:/usr/local/etc/mailcap:/usr/share/etc/mailcap:/usr/etc/mailcap" unless $mailcaps;
foreach (split(/:/,$mailcaps)) {
    ReadMailcap($_);
}

foreach (@files) {
    my($type,$code,$file) = m/^(.*?):(.*?):(.*)$/;
    print STDERR "Processing file \"$file\" of type \"$type\" (encoding=",$code?$code:"none",")...\n" if $debug;

    if ($file ne '-') {
        if ($action eq 'compose' || $action eq 'edit') {
            if (-e $file) {
                if (! -w $file) {
                    print STDERR "Error: no write permission for file \"$file\"\n";
                    $retcode = 2 if ($retcode < 2);
                    next;
                }
            } else {
                if (open(TEST,">$file")) {
                    close(TEST);
                    unlink($file);
                } else {
                    print STDERR "Error: no write permission for file \"$file\"\n";
                    $retcode = 2 if ($retcode < 2);
                    next;
                }
            }
        } else {
            if (! -e $file) {
                print STDERR "Error: no such file \"$file\"\n";
                $retcode = 2 if ($retcode < 2);
                next;
            }
            if (! -r $file) {
                print STDERR "Error: no read permission for file \"$file\"\n";
                $retcode = 2 if ($retcode < 2);
                next;
            }
        }
    }

    my(@matches,$entry,$res,$efile);
    if ($code) {
        $efile = $file;
        $file  = DecodeFile($efile,$code,$action);
        next unless $file;
    }

    foreach $entry (@mailcap) {
        $entry =~ m/^(.*?)\s*;/;
        $_ = "\Q$1\E"; s/\\\*/\.\*/g;
        push @matches,$entry if ($type =~ m!^$_$!i);
    }
    @matches = grep(/\Q$action\E=/,@matches) unless ($action eq "view" || $action eq "cat");

    my $done=0;
    my $fail=0;
    my $needsterminal;
    foreach $match (@matches) {
        my $comm;
        print STDERR " - checking mailcap entry \"$match\"\n" if $debug;
        if ($action eq "view" || $action eq "cat") {
            ($comm) = ($match =~ m/^.*?;\s*(.*?)\s*($|;)/);
        } else {
            ($comm) = ($match =~ m/\Q$action\E=(.*?)\s*($|;)/);
        }
        next if (!$comm || $comm =~ m!(^|/)false$!i);
        print STDERR " - program to execute: $comm\n" if $debug;

	if ($action eq 'cat' && $match !~ m/;\s*copiousoutput\s*($|;)/) {
	    print STDERR " - \"copiousoutput\" is required for \"cat\" action\n" if $debug;
	    $fail++;
	    next;
	}

        my($tmpfile,$tmplink);
        if ($action ne 'print' && $match =~ m/;\s*needsterminal\s*($|;)/) {
            $needsterminal = 1;
            if (-t STDOUT) {
                print STDERR " - needsterminal is satisfied by stdout\n" if $debug;
            } else {
                if ($ENV{DISPLAY}) {
                    $comm = "$xtermprgrm -T '$file ($type)' -e $0 --action=$action '${type}:%s'";
                } else {
                    print STDERR " - no terminal available for rule (needsterminal)\n" if $debug;
                    $fail++;
                    next;
                }
            }

        } elsif ($action eq 'view' && !$nopager && $match =~ m/;\s*copiousoutput\s*($|;)/ && $type ne 'text/plain') {
            $comm .= " | $0 --action=$action text/plain:-";
        }

        if ($match =~ m/;\s*test=(.*?)\s*($|;)/) {
            my $test;
            print STDERR " - running test: $1 " if $debug;
            $test   = system "$1 >/dev/null 2>&1";
            $test >>= 8;
            print STDERR " (result=$test=",($test!=0?"false":"true"),")\n" if $debug;
            if ($test) {
                $fail++;
                next;
            }
        }

        if ($file ne "-") {
            # Resolve file name to an absolute path
            $file = File::Spec->rel2abs($file);
            if (decode(langinfo(CODESET()), $file) =~ m![^[:alnum:],.:/@%^+=_-]!i) {
                $match =~ m/nametemplate=(.*?)\s*($|;)/;
                my $prefix = $1;
                my $linked = 0;
                while (!$linked) {
                    $tmplink = TempFile($prefix);
                    unlink($tmplink);
                    $linked = symlink($file,$tmplink);
                }
                $file = $tmplink;
                print STDERR " - filename contains shell meta-characters; aliased to '$tmplink'\n" if $debug;
            }
            if ($comm =~ m/[^%]%s/) {
                $comm =~ s/([^%])%s/$1$file/g;
            } else {
                if ($comm =~ m/\|/) {
                    $comm =~ s/\|/<\Q$file\E \|/;
                } else {
                    $comm .= " <\Q$file\E";
                }
                if ($action eq 'edit' || $action eq 'compose') {
                    $comm .= " >\Q$file\E";
                }
            }
        } else {
            if ($comm =~ m/[^%]%s/) {
                $tmpfile = SaveStdin($match);
                $comm =~ s/([^%])%s/$1$tmpfile/g;

                # If needsterminal then redirect stdin to the tty which is
                # on stdout, rather than leaving it as the input data stream
                # which has now been read through to EOF.
                #
                # Some programs such as "more" and "less" already use
                # /dev/tty rather than stdin.  But "vim" on non-tty stdin
                # gives a warning message and then leaves the tty in raw
                # mode on exit.  Or "nvi" refuses to run at all unless both
                # stdin and stdout are the tty.
                #
                # RFC 1524 is silent on exactly what a program with
                # "needsterminal" should expect, but it seems sensible to
                # arrange that both stdin and stdout are the terminal for
                # "needsterminal" with "%s".
                #
                if ($needsterminal) {
                    $comm .= ' <&1';
                }
            } else {
                # no name means same as "-"... read from stdin
            }
        }

        $comm =~ s!([^%])%t!$1$type!g;
        $comm =~ s!([^%])%F!$1!g;
        $comm =~ s!%\{(.*?)}!$_="'$ENV{$1}'";s/\`//g;s/\'\'//g;$_!ge;
        $comm =~ s!\\(.)!$1!g;
        $comm =~ s!\'\'!\'!g;
        $comm =~ s!$quotedsemi!;!go;
        $comm =~ s!$quotedprct!%!go;

        print STDERR " - executing: $comm\n" if $debug;
	if ($norun) {
	    print $comm,"\n";
	    $res = 0;
	} else {
	    $res = system $comm;
	    if ($res != 0) {
		if (!($res & 0xFF)) {
                    print STDERR "Warning: program returned non-zero exit code \#$res\n";
                    $retcode = $res >> 8;
		} elsif ($res == -1) {
		    print STDERR "Error: program failed to execute: $!\n";
		    $retcode = -1;
		} else {
		    my $signal = $? & 0x7F;
		    my $core = ($? & 0x80) ? ' (core dumped)' : '';
		    print STDERR "Warning: program died on signal ${signal}${core}\n";
		    $retcode = -1;
		}
            }
        }
        $done=1;
        unlink $tmpfile if $tmpfile;
        unlink $tmplink if $tmplink;
        last;
    }

    if (!$done) {
        if ($fail) {
            print STDERR "Error: no \"$action\" rule for type \"$type\" passed its test case\n";
            print STDERR "       (for more information, add \"--debug=1\" on the command line)\n";
            $retcode = 3 if ($retcode < 3);
        } else {
            print STDERR "Error: no \"$action\" mailcap rules found for type \"$type\"\n";
            $retcode = 3 if ($retcode < 3);
        }
        unlink $file if $code;
        $retcode = 1 unless $retcode;
        next;
    }

    if ($code) {
        if ($action eq 'edit' || $action eq 'compose') {
            my $file = EncodeFile($file,$efile,$code);
            unlink $file if $file;
        } else {
            unlink $file;
        }
    }
}

exit($retcode);

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
November 16 2022 02:20:25
root / root
0775
[
58.813 KB
September 24 2020 08:36:09
root / root
0755
addpart
26.227 KB
January 20 2022 20:10:35
root / root
0755
animate
14.148 KB
April 25 2025 13:05:20
root / root
0755
animate-im6
14.148 KB
April 25 2025 13:05:20
root / root
0755
animate-im6.q16
14.148 KB
April 25 2025 13:05:20
root / root
0755
apt
18.227 KB
June 10 2021 08:53:34
root / root
0755
apt-cache
86.305 KB
June 10 2021 08:53:34
root / root
0755
apt-cdrom
26.305 KB
June 10 2021 08:53:34
root / root
0755
apt-config
26.227 KB
June 10 2021 08:53:34
root / root
0755
apt-get
46.305 KB
June 10 2021 08:53:34
root / root
0755
apt-key
27.53 KB
June 10 2021 08:53:34
root / root
0755
apt-mark
50.305 KB
June 10 2021 08:53:34
root / root
0755
arch
38.813 KB
September 24 2020 08:36:09
root / root
0755
argon2
42.242 KB
January 13 2019 13:20:59
root / root
0755
awk
154.586 KB
February 16 2020 19:41:09
root / root
0755
b2sum
58.938 KB
September 24 2020 08:36:09
root / root
0755
base32
42.844 KB
September 24 2020 08:36:09
root / root
0755
base64
42.844 KB
September 24 2020 08:36:09
root / root
0755
basename
38.781 KB
September 24 2020 08:36:09
root / root
0755
basenc
54.844 KB
September 24 2020 08:36:09
root / root
0755
bashbug
6.601 KB
March 27 2022 18:40:30
root / root
0755
c_rehash
6.13 KB
June 24 2022 20:22:19
root / root
0755
catchsegv
3.227 KB
October 14 2022 19:35:00
root / root
0755
chage
78.375 KB
February 07 2020 14:54:14
root / shadow
2755
chcon
71.063 KB
September 24 2020 08:36:09
root / root
0755
chfn
57.047 KB
February 07 2020 14:54:14
root / root
4755
choom
50.227 KB
January 20 2022 20:10:35
root / root
0755
chrt
34.227 KB
January 20 2022 20:10:35
root / root
0755
chsh
51.641 KB
February 07 2020 14:54:14
root / root
4755
cksum
38.781 KB
September 24 2020 08:36:09
root / root
0755
clear_console
14.305 KB
March 27 2022 18:40:30
root / root
0755
cmp
46.781 KB
January 01 2021 17:52:00
root / root
0755
comm
42.844 KB
September 24 2020 08:36:09
root / root
0755
compare
14.18 KB
April 25 2025 13:05:20
root / root
0755
compare-im6
14.18 KB
April 25 2025 13:05:20
root / root
0755
compare-im6.q16
14.18 KB
April 25 2025 13:05:20
root / root
0755
compose
18.053 KB
February 25 2021 18:24:36
root / root
0755
composite
14.148 KB
April 25 2025 13:05:20
root / root
0755
composite-im6
14.148 KB
April 25 2025 13:05:20
root / root
0755
composite-im6.q16
14.148 KB
April 25 2025 13:05:20
root / root
0755
conjure
14.148 KB
April 25 2025 13:05:20
root / root
0755
conjure-im6
14.148 KB
April 25 2025 13:05:20
root / root
0755
conjure-im6.q16
14.148 KB
April 25 2025 13:05:20
root / root
0755
convert
14.148 KB
April 25 2025 13:05:20
root / root
0755
convert-im6
14.148 KB
April 25 2025 13:05:20
root / root
0755
convert-im6.q16
14.148 KB
April 25 2025 13:05:20
root / root
0755
corelist
15.012 KB
October 20 2024 21:53:39
root / root
0755
cpan
8.161 KB
October 20 2024 21:53:39
root / root
0755
cpan5.32-x86_64-linux-gnu
8.182 KB
October 20 2024 21:53:39
root / root
0755
csplit
119.063 KB
September 24 2020 08:36:09
root / root
0755
curl
250.07 KB
September 30 2024 22:45:41
root / root
0755
cut
46.906 KB
September 24 2020 08:36:09
root / root
0755
cvtsudoers
274.977 KB
January 14 2023 13:29:53
root / root
0755
dbilogstrip
1.348 KB
November 08 2020 20:20:04
root / root
0755
dbiprof
6.061 KB
November 08 2020 20:20:04
root / root
0755
dbiproxy
5.268 KB
November 08 2020 20:20:04
root / root
0755
deb-systemd-helper
20.893 KB
December 14 2020 20:19:00
root / root
0755
deb-systemd-invoke
4.308 KB
December 14 2020 20:19:00
root / root
0755
debconf
2.792 KB
June 10 2021 17:17:49
root / root
0755
debconf-apt-progress
11.271 KB
June 10 2021 17:17:49
root / root
0755
debconf-communicate
0.594 KB
June 10 2021 17:17:49
root / root
0755
debconf-copydb
1.679 KB
June 10 2021 17:17:49
root / root
0755
debconf-escape
0.632 KB
June 10 2021 17:17:49
root / root
0755
debconf-set-selections
2.866 KB
June 10 2021 17:17:49
root / root
0755
debconf-show
1.784 KB
June 10 2021 17:17:49
root / root
0755
delpart
26.227 KB
January 20 2022 20:10:35
root / root
0755
dh_perl_dbi
1.17 KB
November 08 2020 20:20:04
root / root
0755
diff
203.438 KB
January 01 2021 17:52:00
root / root
0755
diff3
63 KB
January 01 2021 17:52:00
root / root
0755
dircolors
46.82 KB
September 24 2020 08:36:09
root / root
0755
dirname
38.781 KB
September 24 2020 08:36:09
root / root
0755
display
14.148 KB
April 25 2025 13:05:20
root / root
0755
display-im6
14.148 KB
April 25 2025 13:05:20
root / root
0755
display-im6.q16
14.148 KB
April 25 2025 13:05:20
root / root
0755
dpkg
306.531 KB
September 01 2022 03:38:12
root / root
0755
dpkg-deb
158.383 KB
September 01 2022 03:38:12
root / root
0755
dpkg-divert
150.438 KB
September 01 2022 03:38:12
root / root
0755
dpkg-maintscript-helper
20.667 KB
September 01 2022 03:38:12
root / root
0755
dpkg-query
162.43 KB
September 01 2022 03:38:12
root / root
0755
dpkg-realpath
4.053 KB
September 01 2022 03:38:12
root / root
0755
dpkg-split
122.336 KB
September 01 2022 03:38:12
root / root
0755
dpkg-statoverride
62.117 KB
September 01 2022 03:38:12
root / root
0755
dpkg-trigger
78.336 KB
September 01 2022 03:38:12
root / root
0755
du
171.25 KB
September 24 2020 08:36:09
root / root
0755
edit
18.053 KB
February 25 2021 18:24:36
root / root
0755
enc2xs
40.836 KB
October 20 2024 21:53:39
root / root
0755
encguess
2.994 KB
October 20 2024 21:53:39
root / root
0755
env
47.344 KB
September 24 2020 08:36:09
root / root
0755
expand
42.844 KB
September 24 2020 08:36:09
root / root
0755
expiry
30.43 KB
February 07 2020 14:54:14
root / shadow
2755
expr
114.969 KB
September 24 2020 08:36:09
root / root
0755
factor
79.156 KB
September 24 2020 08:36:09
root / root
0755
faillog
22.445 KB
February 07 2020 14:54:14
root / root
0755
fallocate
34.227 KB
January 20 2022 20:10:35
root / root
0755
fincore
34.273 KB
January 20 2022 20:10:35
root / root
0755
find
303.719 KB
January 09 2021 17:36:56
root / root
0755
flock
34.305 KB
January 20 2022 20:10:35
root / root
0755
fmt
46.813 KB
September 24 2020 08:36:09
root / root
0755
fold
42.813 KB
September 24 2020 08:36:09
root / root
0755
free
26.227 KB
April 06 2021 07:17:53
root / root
0755
gencat
26.602 KB
October 14 2022 19:35:00
root / root
0755
getconf
34.367 KB
October 14 2022 19:35:00
root / root
0755
getent
31.344 KB
October 14 2022 19:35:00
root / root
0755
getopt
22.227 KB
January 20 2022 20:10:35
root / root
0755
gpasswd
86.234 KB
February 07 2020 14:54:14
root / root
4755
gpgv
438.867 KB
July 01 2022 07:03:46
root / root
0755
groups
42.813 KB
September 24 2020 08:36:09
root / root
0755
h2ph
28.539 KB
October 20 2024 21:53:39
root / root
0755
h2xs
59.503 KB
October 20 2024 21:53:39
root / root
0755
head
46.875 KB
September 24 2020 08:36:09
root / root
0755
hostid
38.75 KB
September 24 2020 08:36:09
root / root
0755
i386
26.5 KB
January 20 2022 20:10:35
root / root
0755
iconv
59.008 KB
October 14 2022 19:35:00
root / root
0755
id
46.938 KB
September 24 2020 08:36:09
root / root
0755
identify
14.164 KB
April 25 2025 13:05:20
root / root
0755
identify-im6
14.164 KB
April 25 2025 13:05:20
root / root
0755
identify-im6.q16
14.164 KB
April 25 2025 13:05:20
root / root
0755
import
14.148 KB
April 25 2025 13:05:20
root / root
0755
import-im6
14.148 KB
April 25 2025 13:05:20
root / root
0755
import-im6.q16
14.148 KB
April 25 2025 13:05:20
root / root
0755
innotop
445.378 KB
May 05 2025 21:08:04
root / root
0755
install
155.789 KB
September 24 2020 08:36:09
root / root
0755
instmodsh
4.268 KB
October 20 2024 21:53:39
root / root
0755
ionice
30.227 KB
January 20 2022 20:10:35
root / root
0755
ipcmk
30.297 KB
January 20 2022 20:10:35
root / root
0755
ipcrm
34.227 KB
January 20 2022 20:10:35
root / root
0755
ipcs
70.227 KB
January 20 2022 20:10:35
root / root
0755
ischroot
14.266 KB
September 27 2020 17:25:47
root / root
0755
join
54.906 KB
September 24 2020 08:36:09
root / root
0755
json_pp
4.872 KB
October 20 2024 21:53:39
root / root
0755
killall
31.867 KB
February 08 2021 10:19:04
root / root
0755
last
46.227 KB
January 20 2022 20:10:35
root / root
0755
lastb
46.227 KB
January 20 2022 20:10:35
root / root
0755
lastlog
31.5 KB
February 07 2020 14:54:14
root / root
0755
lcf
7.602 KB
June 16 2020 05:37:53
root / root
0755
ldd
5.274 KB
October 14 2022 19:35:00
root / root
0755
less
179.695 KB
May 02 2024 18:29:26
root / root
0755
lessecho
14.164 KB
May 02 2024 18:29:26
root / root
0755
lessfile
8.343 KB
May 02 2024 18:29:26
root / root
0755
lesskey
23.57 KB
May 02 2024 18:29:26
root / root
0755
lesspipe
8.343 KB
May 02 2024 18:29:26
root / root
0755
libnetcfg
15.405 KB
October 20 2024 21:53:39
root / root
0755
link
38.75 KB
September 24 2020 08:36:09
root / root
0755
linux32
26.5 KB
January 20 2022 20:10:35
root / root
0755
linux64
26.5 KB
January 20 2022 20:10:35
root / root
0755
locale
54.039 KB
October 14 2022 19:35:00
root / root
0755
localedef
307.75 KB
October 14 2022 19:35:00
root / root
0755
logger
50.82 KB
January 20 2022 20:10:35
root / root
0755
logname
38.781 KB
September 24 2020 08:36:09
root / root
0755
lscpu
98.227 KB
January 20 2022 20:10:35
root / root
0755
lsipc
94.227 KB
January 20 2022 20:10:35
root / root
0755
lslocks
38.555 KB
January 20 2022 20:10:35
root / root
0755
lslogins
66.227 KB
January 20 2022 20:10:35
root / root
0755
lsmem
66.227 KB
January 20 2022 20:10:35
root / root
0755
lsns
50.234 KB
January 20 2022 20:10:35
root / root
0755
mariadb
3.98 MB
May 05 2025 22:06:23
root / root
0755
mariadb-access
109.3 KB
May 05 2025 22:06:23
root / root
0755
mariadb-admin
3.74 MB
May 05 2025 22:06:23
root / root
0755
mariadb-analyze
3.74 MB
May 05 2025 22:06:23
root / root
0755
mariadb-check
3.74 MB
May 05 2025 22:06:23
root / root
0755
mariadb-conv
3.51 MB
May 05 2025 22:06:23
root / root
0755
mariadb-dump
3.82 MB
May 05 2025 22:06:23
root / root
0755
mariadb-dumpslow
8.049 KB
May 05 2025 22:06:23
root / root
0755
mariadb-find-rows
3.213 KB
May 05 2025 22:06:23
root / root
0755
mariadb-fix-extensions
1.221 KB
May 05 2025 22:06:23
root / root
0755
mariadb-import
3.73 MB
May 05 2025 22:06:23
root / root
0755
mariadb-optimize
3.74 MB
May 05 2025 22:06:23
root / root
0755
mariadb-repair
3.74 MB
May 05 2025 22:06:23
root / root
0755
mariadb-report
49.22 KB
May 05 2025 21:08:04
root / root
0755
mariadb-show
3.73 MB
May 05 2025 22:06:23
root / root
0755
mariadb-slap
3.74 MB
May 05 2025 22:06:23
root / root
0755
mariadb-waitpid
3.45 MB
May 05 2025 22:06:23
root / root
0755
mariadbcheck
3.74 MB
May 05 2025 22:06:23
root / root
0755
mawk
154.586 KB
February 16 2020 19:41:09
root / root
0755
mcookie
34.297 KB
January 20 2022 20:10:35
root / root
0755
md5sum
46.906 KB
September 24 2020 08:36:09
root / root
0755
md5sum.textutils
46.906 KB
September 24 2020 08:36:09
root / root
0755
mesg
14.227 KB
January 20 2022 20:10:35
root / root
0755
mkfifo
67.094 KB
September 24 2020 08:36:09
root / root
0755
mogrify
14.148 KB
April 25 2025 13:05:20
root / root
0755
mogrify-im6
14.148 KB
April 25 2025 13:05:20
root / root
0755
mogrify-im6.q16
14.148 KB
April 25 2025 13:05:20
root / root
0755
montage
14.148 KB
April 25 2025 13:05:20
root / root
0755
montage-im6
14.148 KB
April 25 2025 13:05:20
root / root
0755
montage-im6.q16
14.148 KB
April 25 2025 13:05:20
root / root
0755
msmtp
135.742 KB
March 18 2021 16:01:45
root / msmtp
2755
mysql
3.98 MB
May 05 2025 22:06:23
root / root
0755
mysql_find_rows
3.213 KB
May 05 2025 22:06:23
root / root
0755
mysql_fix_extensions
1.221 KB
May 05 2025 22:06:23
root / root
0755
mysql_waitpid
3.45 MB
May 05 2025 22:06:23
root / root
0755
mysqlaccess
109.3 KB
May 05 2025 22:06:23
root / root
0755
mysqladmin
3.74 MB
May 05 2025 22:06:23
root / root
0755
mysqlanalyze
3.74 MB
May 05 2025 22:06:23
root / root
0755
mysqlcheck
3.74 MB
May 05 2025 22:06:23
root / root
0755
mysqldump
3.82 MB
May 05 2025 22:06:23
root / root
0755
mysqldumpslow
8.049 KB
May 05 2025 22:06:23
root / root
0755
mysqlimport
3.73 MB
May 05 2025 22:06:23
root / root
0755
mysqloptimize
3.74 MB
May 05 2025 22:06:23
root / root
0755
mysqlrepair
3.74 MB
May 05 2025 22:06:23
root / root
0755
mysqlreport
49.22 KB
May 05 2025 21:08:04
root / root
0755
mysqlshow
3.73 MB
May 05 2025 22:06:23
root / root
0755
mysqlslap
3.74 MB
May 05 2025 22:06:23
root / root
0755
mytop
71.954 KB
May 05 2025 22:06:23
root / root
0755
namei
34.227 KB
January 20 2022 20:10:35
root / root
0755
nawk
154.586 KB
February 16 2020 19:41:09
root / root
0755
newgrp
43.586 KB
February 07 2020 14:54:14
root / root
4755
nice
42.813 KB
September 24 2020 08:36:09
root / root
0755
nl
111.031 KB
September 24 2020 08:36:09
root / root
0755
nohup
42.844 KB
September 24 2020 08:36:09
root / root
0755
nproc
42.813 KB
September 24 2020 08:36:09
root / root
0755
nsenter
34.453 KB
January 20 2022 20:10:35
root / root
0755
numfmt
66.969 KB
September 24 2020 08:36:09
root / root
0755
od
70.938 KB
September 24 2020 08:36:09
root / root
0755
open
18.053 KB
February 25 2021 18:24:36
root / root
0755
openssl
719.523 KB
June 24 2022 20:22:19
root / root
0755
pager
179.695 KB
May 02 2024 18:29:26
root / root
0755
partx
118.234 KB
January 20 2022 20:10:35
root / root
0755
passwd
62.461 KB
February 07 2020 14:54:14
root / root
4755
paste
42.844 KB
September 24 2020 08:36:09
root / root
0755
pathchk
38.781 KB
September 24 2020 08:36:09
root / root
0755
peekfd
14.445 KB
February 08 2021 10:19:04
root / root
0755
perl
3.51 MB
October 20 2024 21:53:39
root / root
0755
perl5.32-x86_64-linux-gnu
14.344 KB
October 20 2024 21:53:39
root / root
0755
perl5.32.1
3.51 MB
October 20 2024 21:53:39
root / root
0755
perlbug
44.201 KB
October 20 2024 21:53:39
root / root
0755
perldoc
0.122 KB
October 20 2024 21:53:39
root / root
0755
perlivp
10.609 KB
October 20 2024 21:53:39
root / root
0755
perlthanks
44.201 KB
October 20 2024 21:53:39
root / root
0755
pgrep
30.234 KB
April 06 2021 07:17:53
root / root
0755
phar
14.536 KB
March 19 2025 19:57:26
root / root
0755
phar.phar
14.536 KB
March 19 2025 19:57:26
root / root
0755
phar.phar7.4
14.536 KB
March 19 2025 19:57:26
root / root
0755
phar7.4
14.536 KB
March 19 2025 19:57:26
root / root
0755
phar7.4.phar
14.536 KB
March 19 2025 19:57:26
root / root
0755
php
4.55 MB
March 19 2025 19:57:26
root / root
0755
php7.4
4.55 MB
March 19 2025 19:57:26
root / root
0755
phpdbg
4.67 MB
March 19 2025 19:57:26
root / root
0755
phpdbg7.4
4.67 MB
March 19 2025 19:57:26
root / root
0755
piconv
8.161 KB
October 20 2024 21:53:39
root / root
0755
pidwait
30.234 KB
April 06 2021 07:17:53
root / root
0755
pinky
42.969 KB
September 24 2020 08:36:09
root / root
0755
pkill
30.234 KB
April 06 2021 07:17:53
root / root
0755
pl2pm
4.427 KB
October 20 2024 21:53:39
root / root
0755
pldd
22.57 KB
October 14 2022 19:35:00
root / root
0755
pmap
34.234 KB
April 06 2021 07:17:53
root / root
0755
pod2html
4.037 KB
October 20 2024 21:53:39
root / root
0755
pod2man
14.682 KB
October 20 2024 21:53:39
root / root
0755
pod2text
10.55 KB
October 20 2024 21:53:39
root / root
0755
pod2usage
3.855 KB
October 20 2024 21:53:39
root / root
0755
podchecker
3.572 KB
October 20 2024 21:53:39
root / root
0755
pr
75.094 KB
September 24 2020 08:36:09
root / root
0755
print
18.053 KB
February 25 2021 18:24:36
root / root
0755
printenv
38.75 KB
September 24 2020 08:36:09
root / root
0755
printf
58.844 KB
September 24 2020 08:36:09
root / root
0755
prlimit
38.742 KB
January 20 2022 20:10:35
root / root
0755
prove
13.335 KB
October 20 2024 21:53:39
root / root
0755
prtstat
18.508 KB
February 08 2021 10:19:04
root / root
0755
pslog
14.383 KB
February 08 2021 10:19:04
root / root
0755
pstree
35.727 KB
February 08 2021 10:19:04
root / root
0755
pstree.x11
35.727 KB
February 08 2021 10:19:04
root / root
0755
ptar
3.466 KB
October 20 2024 21:53:39
root / root
0755
ptardiff
2.566 KB
October 20 2024 21:53:39
root / root
0755
ptargrep
4.289 KB
October 20 2024 21:53:39
root / root
0755
ptx
135.094 KB
September 24 2020 08:36:09
root / root
0755
pwdx
14.219 KB
April 06 2021 07:17:53
root / root
0755
realpath
54.844 KB
September 24 2020 08:36:09
root / root
0755
renice
14.219 KB
January 20 2022 20:10:35
root / root
0755
resizepart
62.227 KB
January 20 2022 20:10:35
root / root
0755
rev
14.227 KB
January 20 2022 20:10:35
root / root
0755
rgrep
0.029 KB
January 29 2020 12:09:17
root / root
0755
rpcgen
94.977 KB
October 14 2022 19:35:00
root / root
0755
run-mailcap
18.053 KB
February 25 2021 18:24:36
root / root
0755
runcon
42.906 KB
September 24 2020 08:36:09
root / root
0755
savelog
10.235 KB
September 27 2020 17:25:47
root / root
0755
script
66.227 KB
January 20 2022 20:10:35
root / root
0755
scriptlive
54.227 KB
January 20 2022 20:10:35
root / root
0755
scriptreplay
42.227 KB
January 20 2022 20:10:35
root / root
0755
sdiff
46.906 KB
January 01 2021 17:52:00
root / root
0755
see
18.053 KB
February 25 2021 18:24:36
root / root
0755
select-editor
2.389 KB
January 12 2021 22:01:50
root / root
0755
sensible-browser
1.201 KB
January 12 2021 22:01:50
root / root
0755
sensible-editor
1.15 KB
January 12 2021 22:01:50
root / root
0755
sensible-pager
0.441 KB
January 12 2021 22:01:50
root / root
0755
seq
54.875 KB
September 24 2020 08:36:09
root / root
0755
setarch
26.5 KB
January 20 2022 20:10:35
root / root
0755
setpriv
50.234 KB
January 20 2022 20:10:35
root / root
0755
setsid
14.227 KB
January 20 2022 20:10:35
root / root
0755
setterm
46.227 KB
January 20 2022 20:10:35
root / root
0755
sg
43.586 KB
February 07 2020 14:54:14
root / root
4755
sha1sum
50.906 KB
September 24 2020 08:36:09
root / root
0755
sha224sum
62.906 KB
September 24 2020 08:36:09
root / root
0755
sha256sum
62.906 KB
September 24 2020 08:36:09
root / root
0755
sha384sum
66.906 KB
September 24 2020 08:36:09
root / root
0755
sha512sum
66.906 KB
September 24 2020 08:36:09
root / root
0755
shasum
9.742 KB
October 20 2024 21:53:39
root / root
0755
shred
63.094 KB
September 24 2020 08:36:09
root / root
0755
shuf
58.969 KB
September 24 2020 08:36:09
root / root
0755
skill
30.227 KB
April 06 2021 07:17:53
root / root
0755
slabtop
22.227 KB
April 06 2021 07:17:53
root / root
0755
snice
30.227 KB
April 06 2021 07:17:53
root / root
0755
sort
115.633 KB
September 24 2020 08:36:09
root / root
0755
splain
18.956 KB
October 20 2024 21:53:39
root / root
0755
split
59.469 KB
September 24 2020 08:36:09
root / root
0755
stat
83.188 KB
September 24 2020 08:36:09
root / root
0755
stdbuf
50.844 KB
September 24 2020 08:36:09
root / root
0755
stream
14.148 KB
April 25 2025 13:05:20
root / root
0755
stream-im6
14.148 KB
April 25 2025 13:05:20
root / root
0755
stream-im6.q16
14.148 KB
April 25 2025 13:05:20
root / root
0755
streamzip
5.392 KB
October 20 2024 21:53:39
root / root
0755
sudo
178.32 KB
January 14 2023 13:29:53
root / root
4755
sudoedit
178.32 KB
January 14 2023 13:29:53
root / root
4755
sudoreplay
115.391 KB
January 14 2023 13:29:53
root / root
0755
sum
46.883 KB
September 24 2020 08:36:09
root / root
0755
tac
106.969 KB
September 24 2020 08:36:09
root / root
0755
tail
75.063 KB
September 24 2020 08:36:09
root / root
0755
taskset
34.227 KB
January 20 2022 20:10:35
root / root
0755
tee
42.875 KB
September 24 2020 08:36:09
root / root
0755
test
54.813 KB
September 24 2020 08:36:09
root / root
0755
timeout
43.406 KB
September 24 2020 08:36:09
root / root
0755
tload
14.234 KB
April 06 2021 07:17:53
root / root
0755
top
122.07 KB
April 06 2021 07:17:53
root / root
0755
touch
99.031 KB
September 24 2020 08:36:09
root / root
0755
tr
54.844 KB
September 24 2020 08:36:09
root / root
0755
truncate
42.813 KB
September 24 2020 08:36:09
root / root
0755
tsort
54.813 KB
September 24 2020 08:36:09
root / root
0755
tty
38.781 KB
September 24 2020 08:36:09
root / root
0755
tzselect
14.992 KB
October 14 2022 19:35:00
root / root
0755
ucf
40.901 KB
June 16 2020 05:37:53
root / root
0755
ucfq
18.913 KB
June 16 2020 05:37:53
root / root
0755
ucfr
10.468 KB
June 16 2020 05:37:53
root / root
0755
unexpand
42.844 KB
September 24 2020 08:36:09
root / root
0755
uniq
50.906 KB
September 24 2020 08:36:09
root / root
0755
unlink
38.75 KB
September 24 2020 08:36:09
root / root
0755
unshare
46.461 KB
January 20 2022 20:10:35
root / root
0755
update-alternatives
58.086 KB
September 01 2022 03:38:12
root / root
0755
uptime
14.219 KB
April 06 2021 07:17:53
root / root
0755
users
38.813 KB
September 24 2020 08:36:09
root / root
0755
utmpdump
30.227 KB
January 20 2022 20:10:35
root / root
0755
vmstat
38.242 KB
April 06 2021 07:17:53
root / root
0755
w
22.219 KB
April 06 2021 07:17:53
root / root
0755
wall
34.227 KB
January 20 2022 20:10:35
root / tty
2755
watch
26.602 KB
April 06 2021 07:17:53
root / root
0755
wc
46.945 KB
September 24 2020 08:36:09
root / root
0755
wget
527.281 KB
November 23 2021 14:34:25
root / root
0755
whereis
30.664 KB
January 20 2022 20:10:35
root / root
0755
which
0.924 KB
September 27 2020 17:25:47
root / root
0755
who
58.969 KB
September 24 2020 08:36:09
root / root
0755
whoami
38.781 KB
September 24 2020 08:36:09
root / root
0755
x86_64
26.5 KB
January 20 2022 20:10:35
root / root
0755
xargs
74.367 KB
January 09 2021 17:36:56
root / root
0755
xsubpp
5.043 KB
October 20 2024 21:53:39
root / root
0755
yes
38.75 KB
September 24 2020 08:36:09
root / root
0755
zdump
22.398 KB
October 14 2022 19:35:00
root / root
0755
zipdetails
50.038 KB
October 20 2024 21:53:39
root / root
0755

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF