HOME SHELL

NULLCOMMUNITY
 LiteSpeed
 Linux server2.poyrazhosting.com 3.10.0-962.3.2.lve1.5.77.el7.x86_64 #1 SMP Mon Dec 12 07:06:14 EST 2022 x86_64
 safemode : OFF
 MySQL: OFF | Perl: OFF | cURL: ON | WGet: OFF
  >  / home / cuneytsener53 / rentacar3.snrsoft.com.tr /

Server Ip : 172.67.216.244




Filename/home/cuneytsener53/rentacar3.snrsoft.com.tr/captcha.php
Size947
Permissionrw-r--r--
Owner
Create time02-Mar-2025 05:46
Last modified13-Jun-2021 10:33
Last accessed05-Apr-2025 01:58
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?PHP

$image 
= @imagecreatetruecolor(12030) or die("hata oluştu");

// arkaplan rengi oluşturuyoruz
$background imagecolorallocate($image0xFF0xFF0xFF);
imagefill($image00$background);
$linecolor imagecolorallocate($image0xCC0xCC0xCC);
$textcolor imagecolorallocate($image0x330x330x33);

// rast gele çizgiler oluşturuyoruz
for ($i 0$i 6$i++) {
    
imagesetthickness($imagerand(13));
    
imageline($image0rand(030), 120rand(030), $linecolor);
}

session_start();

// rastgele sayılar oluşturuyoruz
$sayilar '';
for (
$x 15$x <= 95$x += 20) {
    
$sayilar .= ($sayi rand(09));
    
imagechar($imagerand(35), $xrand(214), $sayi$textcolor);
}

// sayıları session aktarıyoruz
$_SESSION['captcha'] = $sayilar;

// resim gösteriliyor ve sonrasında siliniyor
header('Content-type: image/png');
imagepng($image);
imagedestroy($image);
?>