D7net Mini Sh3LL v1

 
OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /libx32/../share/snapd/../locale/ia/../../doc/info/../libroken18-heimdal/../usbmuxd/../liberror-perl/../grub2-common/../libjpeg8/../php7.4-mysql/../gnupg/../python3-apt/../netplan.io/../wget/../libcurl3-gnutls/../libthai-data/../python3-six/../screen/../maria/../libxaw7/../libmnl0/../netplan/../gdisk/../systemd-sysv/../grep/../udisks2/../libacl1/../libxmlb1/../libperl5.30/../automake/../libmpfr6/../libxext6/../libctf0/../libgusb2/../libubsan1/../dbus/../python3-distro/../libpcre3/../eatmydata/../libhogweed5/../btrfs-progs/../libnettle7/../libmaxminddb0/../gdisk/../liblsan0/../libpython3.8/../dpkg/../linux-modules-5.4.0-144-generic/../libaccountsservice0/../net-tools/../libarchive-zip-perl/examples/

 Home   ☍ Command   ☍ Upload File   ☍Info Server   ☍ Buat File   ☍ Mass deface   ☍ Jumping   ☍ Config   ☍ Symlink   ☍ About 

Current File : //libx32/../share/snapd/../locale/ia/../../doc/info/../libroken18-heimdal/../usbmuxd/../liberror-perl/../grub2-common/../libjpeg8/../php7.4-mysql/../gnupg/../python3-apt/../netplan.io/../wget/../libcurl3-gnutls/../libthai-data/../python3-six/../screen/../maria/../libxaw7/../libmnl0/../netplan/../gdisk/../systemd-sysv/../grep/../udisks2/../libacl1/../libxmlb1/../libperl5.30/../automake/../libmpfr6/../libxext6/../libctf0/../libgusb2/../libubsan1/../dbus/../python3-distro/../libpcre3/../eatmydata/../libhogweed5/../btrfs-progs/../libnettle7/../libmaxminddb0/../gdisk/../liblsan0/../libpython3.8/../dpkg/../linux-modules-5.4.0-144-generic/../libaccountsservice0/../net-tools/../libarchive-zip-perl/examples/zipcheck.pl
#!/usr/bin/perl -w
# usage: valid zipname.zip
# exits with non-zero status if invalid zip
# status = 1: invalid arguments
# status = 2: generic error somewhere
# status = 3: format error
# status = 4: IO error
use strict;
use Archive::Zip qw(:ERROR_CODES);
use IO::Handle;
use File::Spec;

# instead of stack dump:
Archive::Zip::setErrorHandler(sub { warn shift() });

my $nullFileName = File::Spec->devnull();
my $zip          = Archive::Zip->new();
my $zipName      = shift(@ARGV) || exit 1;
eval {
    my $status = $zip->read($zipName);
    exit $status if $status != AZ_OK;
};
if ($@) { warn 'error reading zip:', $@, "\n"; exit 2 }

eval {
    foreach my $member ($zip->members) {
        my $fh = IO::File->new();
        $fh->open(">$nullFileName") || die "can't open $nullFileName\: $!\n";
        my $status = $member->extractToFileHandle($fh);
        if ($status != AZ_OK) {
            warn "Extracting ", $member->fileName(), " from $zipName failed\n";
            exit $status;
        }
    }
}

AnonSec - 2021 | Recode By D7net