Uname: Linux webm016.cluster127.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 7.4.33 [ PHP INFO ] PHP os: Linux
Server Ip: 54.36.31.145
Your Ip: 216.73.216.182
User: homesquasz (91404) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : exemple09.png.php
<?php
    $px = isset($_GET['px']) ? $_GET['px'] : 0; $px = preg_replace('/[^0-9]/isU', '', $px);
    $py = isset($_GET['py']) ? $_GET['py'] : 0; $py = preg_replace('/[^0-9]/isU', '', $py);

    if ($px<1) $px = 5;
    if ($py<1) $py = 5;

    if ($px>20) $px = 20;
    if ($py>20) $py = 20;

    $width  = 100;
    $height = 100;
    $im = imagecreatetruecolor($width, $height);

    for ($y=0; $y<$height; $y+= $py) {
        for ($x=0; $x<$width; $x+= $px) {
            $c = imagecolorallocate($im, 200-$x, 100+$y, 100+$x-$y);
            imagefilledrectangle($im, $x, $y, $x+$px, $y+$py, $c);
        }
    }

    header("Content-type: image/png");
    imagepng($im);
    imagedestroy($im);
© 2026 GrazzMean