Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
perl /
lib /
Pod /
Simple /
[ HOME SHELL ]
Name
Size
Permission
Action
BlackBox.pm
84.71
KB
-rw-rw-rw-
Checker.pm
5.3
KB
-rw-rw-rw-
Debug.pm
4.52
KB
-rw-rw-rw-
DumpAsText.pm
3.94
KB
-rw-rw-rw-
DumpAsXML.pm
4.45
KB
-rw-rw-rw-
HTML.pm
33.8
KB
-rw-rw-rw-
HTMLBatch.pm
39.48
KB
-rw-rw-rw-
HTMLLegacy.pm
2.69
KB
-rw-rw-rw-
JustPod.pm
9.23
KB
-rw-rw-rw-
LinkSection.pm
4.2
KB
-rw-rw-rw-
Methody.pm
3.49
KB
-rw-rw-rw-
Progress.pm
2.36
KB
-rw-rw-rw-
PullParser.pm
25.13
KB
-rw-rw-rw-
PullParserEndToken.pm
2.82
KB
-rw-rw-rw-
PullParserStartToken.pm
4.05
KB
-rw-rw-rw-
PullParserTextToken.pm
3.28
KB
-rw-rw-rw-
PullParserToken.pm
3.91
KB
-rw-rw-rw-
RTF.pm
22.97
KB
-rw-rw-rw-
Search.pm
35
KB
-rw-rw-rw-
SimpleTree.pm
4.52
KB
-rw-rw-rw-
Subclassing.pod
32.92
KB
-rw-rw-rw-
Text.pm
4.98
KB
-rw-rw-rw-
TextContent.pm
2.46
KB
-rw-rw-rw-
TiedOutFH.pm
2.69
KB
-rw-rw-rw-
Transcode.pm
736
B
-rw-rw-rw-
TranscodeDumb.pm
2.63
KB
-rw-rw-rw-
TranscodeSmart.pm
715
B
-rw-rw-rw-
XHTML.pm
25.76
KB
-rw-rw-rw-
XMLOutStream.pm
4.56
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TranscodeSmart.pm
require 5; use 5.008; ## Anything before 5.8.0 is GIMPY! ## This module is to be use()'d only by Pod::Simple::Transcode package Pod::Simple::TranscodeSmart; use strict; use Pod::Simple; require Encode; use vars qw($VERSION ); $VERSION = '3.40'; sub is_dumb {0} sub is_smart {1} sub all_encodings { return Encode::->encodings(':all'); } sub encoding_is_available { return Encode::resolve_alias($_[1]); } sub encmodver { return "Encode.pm v" .($Encode::VERSION || '?'); } sub make_transcoder { my $e = Encode::find_encoding($_[1]); die "WHAT ENCODING!?!?" unless $e; my $x; return sub { foreach $x (@_) { $x = $e->decode($x) unless Encode::is_utf8($x); } return; }; } 1;
Close