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 | : 18.218.250.241
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 : hash.t
#!/usr/bin/perl -w use strict; use Test; plan tests => 9; use Data::Dump qw(dump); my $DOTS = "." x 20; ok(dump({}), "{}"); ok(dump({ a => 1}), "{ a => 1 }"); ok(dump({ 1 => 1}), "{ 1 => 1 }"); ok(dump({strict => 1, shift => 2, abc => 3, -f => 4 }), "{ -f => 4, abc => 3, shift => 2, strict => 1 }"); ok(dump({supercalifragilisticexpialidocious => 1, a => 2}), "{ a => 2, supercalifragilisticexpialidocious => 1 }"); ok(dump({supercalifragilisticexpialidocious => 1, a => 2, b => $DOTS})."\n", <<EOT); { a => 2, b => "$DOTS", supercalifragilisticexpialidocious => 1, } EOT ok(dump({aa => 1, B => 2}), "{ aa => 1, B => 2 }"); ok(dump({a => 1, bar => $DOTS, baz => $DOTS, foo => 2 })."\n", <<EOT); { a => 1, bar => "$DOTS", baz => "$DOTS", foo => 2, } EOT ok(dump({a => 1, "b-z" => 2}), qq({ "a" => 1, "b-z" => 2 }));
Close