One Hat Cyber Team
Your IP :
216.73.216.186
Server IP :
88.222.243.164
Server :
Linux in-mum-web1837.main-hosting.eu 5.14.0-503.34.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Mar 27 06:00:50 EDT 2025 x86_64
Server Software :
LiteSpeed
PHP Version :
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
u322583024
/
domains
/
jimmy2chs.in
/
public_html
/
View File Name :
captcha.php
<?php session_start(); // Generate two random numbers $num1 = rand(1, 10); $num2 = rand(1, 10); // Store the correct answer in the session $_SESSION['captcha_answer'] = $num1 + $num2; // Create an image header('Content-Type: image/png'); $image = imagecreate(100, 40); // Allocate colors $bgColor = imagecolorallocate($image, 255, 255, 255); $textColor = imagecolorallocate($image, 0, 0, 0); // Fill the image with background color imagefill($image, 0, 0, $bgColor); // Add the CAPTCHA text to the image imagestring($image, 5, 10, 10, "$num1 + $num2 =", $textColor); // Output the image imagepng($image); imagedestroy($image); ?>