Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
Class /
Delete
Unzip
Name
Size
Permission
Date
Action
Accessor
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
C3
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
Data
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
Inspector
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
Load
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
MOP
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
Method
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
C3.pm
18.06
KB
-rw-rw-rw-
2020-11-09 08:20
ErrorHandler.pm
2.38
KB
-rw-rw-rw-
2015-05-11 02:08
Inspector.pm
18.19
KB
-rw-rw-rw-
2019-07-19 16:35
Load.pm
11.27
KB
-rw-rw-rw-
2018-06-11 00:55
Loader.pm
5.61
KB
-rw-rw-rw-
2005-04-28 03:55
LoaderTest.pm
648
B
-rw-rw-rw-
2001-05-02 06:01
MOP.pm
38.3
KB
-rw-rw-rw-
2020-12-19 02:06
Singleton.pm
12.36
KB
-rw-rw-rw-
2020-12-02 10:37
Tiny.pm
16.97
KB
-rw-rw-rw-
2020-09-04 18:04
Save
Rename
#!/usr/bin/perl -sw ## ## ## ## Copyright (c) 2001, Vipul Ved Prakash. All rights reserved. ## This code is free software; you can redistribute it and/or modify ## it under the same terms as Perl itself. ## ## $Id: LoaderTest.pm,v 1.2 2001/05/01 00:09:12 vipul Exp $ package Class::LoaderTest; use Data::Dumper; sub new { my $self = { Method => 'new' }; return bless $self, shift; } sub foo { my ($class, $embed) = @_; $embed ||= 'foo'; my $self = { Method => $embed }; return bless $self, shift; } sub blah { my ($class, %params) = @_; my $self = { %params }; return bless $self, $class; } 1;