Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 13.59.54.188
202 Domain
8.1.31
nbspublicschool
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-Data-Dump-1.22 /
t /
[ HOME SHELL ]
Name
Size
Permission
Action
dd.t
143
B
-rw-r--r--
dollar-one.t
299
B
-rw-r--r--
dump.t
2.1
KB
-rw-r--r--
eval.t
336
B
-rw-r--r--
filtered.t
1.7
KB
-rw-r--r--
glob.t
717
B
-rw-r--r--
hash.t
844
B
-rw-r--r--
quote-unicode.t
1.53
KB
-rw-r--r--
quote.t
2.05
KB
-rw-r--r--
ref.t
368
B
-rw-r--r--
regexp.t
553
B
-rw-r--r--
scalar-obj.t
421
B
-rw-r--r--
scalar.t
549
B
-rw-r--r--
tied.t
972
B
-rw-r--r--
vstring.t
510
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dump.t
#!/usr/bin/perl -w use strict; use Test qw(plan ok); plan tests => 34; use Data::Dump qw(dump); ok(dump(), "()"); ok(dump("abc"), qq("abc")); ok(dump("1\n"), qq("1\\n")); ok(dump(undef), "undef"); ok(dump(0), "0"); ok(dump(1234), "1234"); ok(dump(12345), "12345"); ok(dump(12345678), "12345678"); ok(dump(123456789012345), "123456789012345"); ok(dump(0.333), "0.333"); ok(dump(1/3), qr/^0\.3+\z/); ok(dump(-33), "-33"); ok(dump(-1.5), "-1.5"); ok(dump("0123"), qq("0123")); ok(dump(1..2), "(1, 2)"); ok(dump(1..3), "(1, 2, 3)"); ok(dump(1..4), "(1 .. 4)"); ok(dump(1..5,6,8,9), "(1 .. 6, 8, 9)"); ok(dump(1..5,4..8), "(1 .. 5, 4 .. 8)"); ok(dump([-2..2]), "[-2 .. 2]"); ok(dump(["a0" .. "z9"]), qq(["a0" .. "z9"])); ok(dump(["x", 0, 1, 2, 3, "a", "b", "c", "d"]), qq(["x", 0 .. 3, "a" .. "d"])); ok(dump({ a => 1, b => 2 }), "{ a => 1, b => 2 }"); ok(dump({ 1 => 1, 2 => 1, 10 => 1 }), "{ 1 => 1, 2 => 1, 10 => 1 }"); ok(dump({ 0.14 => 1, 1.8 => 1, -0.5 => 1 }), qq({ "-0.5" => 1, "0.14" => 1, "1.8" => 1 })); ok(dump({ "1,1" => 1, "1,2" => 1 }), qq({ "1,1" => 1, "1,2" => 1 })); ok(dump({ a => 1, aa => 2, aaa => join("", "a" .. "z", "a" .. "z")}) . "\n", <<EOT); { a => 1, aa => 2, aaa => "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", } EOT ok(dump({ a => 1, aa => 2, aaaaaaaaaaaaaa => join("", "a" .. "z", "a" .. "z")}) . "\n", <<EOT); { a => 1, aa => 2, aaaaaaaaaaaaaa => "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", } EOT ok(dump(bless {}, "foo"), "bless({}, \"foo\")"); ok(dump(bless [], "foo"), "bless([], \"foo\")"); my $sv = []; ok(dump(bless \$sv, "foo"), "bless(do{\\(my \$o = [])}, \"foo\")"); ok(dump(bless { a => 1, aa => "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", aaa => \$sv}, "foo") . "\n", <<'EOT'); bless({ a => 1, aa => "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz", aaa => bless(do{\(my $o = [])}, "foo"), }, "foo") EOT # stranger stuff ok(dump({ a => \&Data::Dump::dump, aa => do {require Symbol; Symbol::gensym()}}), "do {\n require Symbol;\n { a => sub { ... }, aa => Symbol::gensym() };\n}"); ok(dump(bless{}, "foo=bar"), 'bless({}, "foo=bar")');
Close