Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
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 /
share /
perl5 /
PDF /
API2 /
Basic /
PDF /
Filter /
[ HOME SHELL ]
Name
Size
Permission
Action
ASCII85Decode.pm
2.34
KB
-rw-r--r--
ASCIIHexDecode.pm
1.54
KB
-rw-r--r--
FlateDecode.pm
4.15
KB
-rw-r--r--
LZWDecode.pm
3.05
KB
-rw-r--r--
RunLengthDecode.pm
3.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ASCIIHexDecode.pm
package PDF::API2::Basic::PDF::Filter::ASCIIHexDecode; use base 'PDF::API2::Basic::PDF::Filter'; use strict; use warnings; our $VERSION = '2.043'; # VERSION # Maintainer's Note: ASCIIHexDecode is described in the PDF 1.7 spec # in section 7.4.2. sub outfilt { my ($self, $string, $include_eod) = @_; # Each byte of the input string gets encoded as two hexadecimal # characters. $string =~ s/(.)/sprintf('%02x', ord($1))/ges; # Wrap after 72 characters $string =~ s/(.{72})/$1\n/g; # The EOD (end-of-document) marker is a greater-than sign $string .= '>' if $include_eod; return $string; } sub infilt { my ($self, $string) = @_; # "All white-space characters shall be ignored." $string =~ s/\s//og; # "A GREATER-THAN SIGN (3Eh) indicates EOD." my $has_eod_marker = 0; if (substr($string, -1, 1) eq '>') { $has_eod_marker = 1; chop $string; } # "Any other characters [than 0-9, A-F, or a-f] shall cause an # error." die "Illegal character found in ASCII hex-encoded stream" if $string =~ /[^0-9A-Fa-f]/; # "If the filter encounters the EOD marker after reading an odd # number of hexadecimal digits, it shall behave as if a 0 (zero) # followed the last digit." if ($has_eod_marker and length($string) % 2 == 1) { $string .= '0'; } # "The ASCIIHexDecode filter shall produce one byte of binary data # for each pair of ASCII hexadecimal digits." $string =~ s/([0-9A-Fa-f]{2})/pack("C", hex($1))/oge; return $string; } 1;
Close