ヤミRoot VoidGate
User / IP
:
216.73.216.2
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
itrave
/
.cpanm
/
work
/
1568629427.17649
/
PDF
/
blib
/
man3
/
Viewing: PDF.3pm
.\" Automatically generated by Pod::Man 2.27 (Pod::Simple 3.28) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is turned on, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{ . if \nF \{ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "PDF 3" .TH PDF 3 "2000-02-08" "perl v5.16.3" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" PDF \- Library for PDF access and manipulation in Perl .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& use PDF; \& \& $pdf=PDF\->new ; \& $pdf=PDF\->new(filename); \& \& $result=$pdf\->TargetFile( filename ); \& \& print "is a pdf file\en" if ( $pdf\->IsaPDF ) ; \& print "Has ",$pdf\->Pages," Pages \en"; \& print "Use a PDF Version ",$pdf\->Version ," \en"; \& print "and it is crypted " if ( $pdf\->IscryptedPDF) ; \& \& print "filename with title",$pdf\->GetInfo("Title"),"\en"; \& print "and with subject ",$pdf\->GetInfo("Subject"),"\en"; \& print "was written by ",$pdf\->GetInfo("Author"),"\en"; \& print "in date ",$pdf\->GetInfo("CreationDate"),"\en"; \& print "using ",$pdf\->GetInfo("Creator"),"\en"; \& print "and converted with ",$pdf\->GetInfo("Producer"),"\en"; \& print "The last modification occurred ",$pdf\->GetInfo("ModDate"),"\en"; \& print "The associated keywords are ",$pdf\->GetInfo("Keywords"),"\en"; \& \& my (startx,starty, endx,endy) = $pdf\->PageSize ($page) ; .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" The main purpose of the \s-1PDF\s0 library is to provide classes and functions that allow to read and manipulate \s-1PDF\s0 files with perl. \s-1PDF\s0 stands for Portable Document Format and is a format proposed by Adobe. A full description of this format can be found in the \fBPortable Document Reference Manual\fR by \fBAdobe Systems Inc.\fR. For more details about \s-1PDF,\s0 refer to: .PP \&\fBhttp://www.adobe.com/\fR .PP The main idea is to provide some \*(L"basic\*(R" modules for access the information contained in a \s-1PDF\s0 file. Even if at this moment is in an early development stage, the scripts in the example directory show that it is usable. .PP \&\fBis_pdf\fR script test a list of files in order divide the \s-1PDF\s0 file from the non \s-1PDF\s0 using the info provided by the files themselves. It doesn't use the \fI.pdf\fR extension, it uses the information contained in the file. .PP \&\fBpdf_version\fR returns the \s-1PDF\s0 level used for writing a file. .PP \&\fBpdf_pages\fR gives the number of pages of a \s-1PDF\s0 file. .PP \&\fBpagedump.pl\fR prints some information about individual pages in a PDF-file. Although the information as such are not very useful, it demontrates well some more complex aspects of the library. Check the function \fBdoprint\fR in this program on how to handle all possible data occuring in a \s-1PDF.\s0 .PP The library is now splitted in 2 section : .PP \&\fBPDF::Core\fR that contains the data structure, the constructor and low level access fuctions; .PP \&\fBPDF::Parse\fR all kind of functions to parse the PDF-files and provide information about the content. .PP Check the help-files of these modules for more details. .SH "Variables" .IX Header "Variables" There are 2 variables that can be accessed: .ie n .IP "\fB\fB$PDF::VERSION\fB\fR" 4 .el .IP "\fB\f(CB$PDF::VERSION\fB\fR" 4 .IX Item "$PDF::VERSION" Contain the version of the library installed. .ie n .IP "\fB\fB$PDF::Verbose\fB\fR" 4 .el .IP "\fB\f(CB$PDF::Verbose\fB\fR" 4 .IX Item "$PDF::Verbose" This variable is false by default. Change the value if you want more verbose output messages from library. .SH "Copyright" .IX Header "Copyright" .Vb 1 \& Copyright (c) 1998 \- 2000 Antonio Rosella Italy antro@tiscalinet.it, Johannes Blach dw235@yahoo.com .Ve .PP This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. .SH "Availability" .IX Header "Availability" The latest version of this library is likely to be available from: .PP http://www.geocities.com/CapeCanaveral/Hangar/4794/ .PP and at any \s-1CPAN\s0 mirror .SH "Greetings" .IX Header "Greetings" Fabrizio Pivari ( pivari@geocities.com ) for all the suggestions about life, the universe and everything. Brad Appleton ( bradapp@enteract.com ) for his suggestions about the module organization. Thomas Drillich for the iso latin1 support Ross Moore ( ross@ics.mq.edu.au ) for ReadInfo fix .SH "POD ERRORS" .IX Header "POD ERRORS" Hey! \fBThe above document had some coding errors, which are explained below:\fR .IP "Around line 120:" 4 .IX Item "Around line 120:" =back doesn't take any parameters, but you said =back 4
Coded With 💗 by
0x6ick