S-063: Cairo Security Update


 
Thread Tools Search this Thread
Special Forums Cybersecurity Security Advisories (RSS) S-063: Cairo Security Update
# 1  
Old 04-14-2008
S-063: Cairo Security Update

An integer overflow flaw was found in the way Cairo processes PNG images. The risk is MEDIUM. It is possible to execute arbitrary code as the user running the application.


More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
CAIRO_AVAILABLE_SURFACES(3)						 1					       CAIRO_AVAILABLE_SURFACES(3)

Cairo::availableSurfaces - Retrieves all available surfaces

       Object oriented style (method):

SYNOPSIS
publicstatic array Cairo::availableSurfaces (void ) DESCRIPTION
Procedural style: array cairo_available_surfaces (void ) Returns an array with the available surface backends PARAMETERS
This function has no parameters. RETURN VALUES
A list-type array with all available surface backends. EXAMPLES
Example #1 Object oriented style <?php /* Object Oriented style */ var_dump(Cairo::availableSurfaces()); ?> The above example will output something similar to: array(6) { [0]=> string(5) "IMAGE" [1]=> string(3) "PNG" [2]=> string(3) "PDF" [3]=> string(2) "PS" [4]=> string(3) "SVG" [5]=> string(5) "WIN32" } Example #2 Procedural style <?php /* Procedural style */ var_dump(cairo_available_surfaces()); ?> The above example will output something similar to: array(6) { [0]=> string(5) "IMAGE" [1]=> string(3) "PNG" [2]=> string(3) "PDF" [3]=> string(2) "PS" [4]=> string(3) "SVG" [5]=> string(5) "WIN32" } SEE ALSO
Cairo::availableFonts. PHP Documentation Group CAIRO_AVAILABLE_SURFACES(3)