OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
perl
/
5.26.1
/
CPAN
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:13:15 AM
rwxr-xr-x
📁
API
-
05/09/2024 07:13:15 AM
rwxr-xr-x
📄
Author.pm
6.68 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Bundle.pm
9.6 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
CacheMgr.pm
7.48 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Complete.pm
5.88 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Debug.pm
2.05 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
DeferredCode.pm
189 bytes
05/23/2023 05:17:19 PM
rw-r--r--
📄
Distribution.pm
161.9 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Distroprefs.pm
11.71 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Distrostatus.pm
972 bytes
05/23/2023 05:17:19 PM
rw-r--r--
📁
Exception
-
05/09/2024 07:13:15 AM
rwxr-xr-x
📁
FTP
-
05/09/2024 07:13:15 AM
rwxr-xr-x
📄
FTP.pm
41.63 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
FirstTime.pm
70.16 KB
05/23/2023 05:17:19 PM
rw-r--r--
📁
HTTP
-
05/09/2024 07:13:15 AM
rwxr-xr-x
📄
HandleConfig.pm
22.75 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Index.pm
21.7 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
InfoObj.pm
6.75 KB
05/23/2023 05:17:19 PM
rw-r--r--
📁
Kwalify
-
05/09/2024 07:13:15 AM
rwxr-xr-x
📄
Kwalify.pm
3.35 KB
05/23/2023 05:17:19 PM
rw-r--r--
📁
LWP
-
05/09/2024 07:13:15 AM
rwxr-xr-x
📁
Meta
-
05/09/2024 07:13:15 AM
rwxr-xr-x
📄
Meta.pm
29.56 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Mirrors.pm
16.3 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Module.pm
21.87 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Nox.pm
953 bytes
05/23/2023 05:17:19 PM
rw-r--r--
📁
Plugin
-
05/09/2024 07:13:15 AM
rwxr-xr-x
📄
Plugin.pm
3.14 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Prompt.pm
567 bytes
05/23/2023 05:17:19 PM
rw-r--r--
📄
Queue.pm
6.78 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Shell.pm
71.88 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
Tarzip.pm
16.32 KB
05/23/2023 05:17:19 PM
rw-r--r--
📄
URL.pm
588 bytes
05/23/2023 05:17:19 PM
rw-r--r--
📄
Version.pm
4.29 KB
05/23/2023 05:17:19 PM
rw-r--r--
Editing: Nox.pm
Close
package CPAN::Nox; use strict; use vars qw($VERSION @EXPORT); BEGIN{ $CPAN::Suppress_readline=1 unless defined $CPAN::term; } use Exporter (); @CPAN::ISA = ('Exporter'); use CPAN; $VERSION = "5.5001"; $CPAN::META->has_inst('Digest::MD5','no'); $CPAN::META->has_inst('LWP','no'); $CPAN::META->has_inst('Compress::Zlib','no'); @EXPORT = @CPAN::EXPORT; *AUTOLOAD = \&CPAN::AUTOLOAD; 1; __END__ =head1 NAME CPAN::Nox - Wrapper around CPAN.pm without using any XS module =head1 SYNOPSIS Interactive mode: perl -MCPAN::Nox -e shell; =head1 DESCRIPTION This package has the same functionality as CPAN.pm, but tries to prevent the usage of compiled extensions during its own execution. Its primary purpose is a rescue in case you upgraded perl and broke binary compatibility somehow. =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 SEE ALSO L<CPAN> =cut