BLACKSITE
:
216.73.217.148
:
172.93.223.125 / www.geeteetravels.com
:
Linux ubuntu 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
:
/
home
/
geeteetravels
/
public_html
/
Upload File:
files >> /home/geeteetravels/public_html/captcha.php
<?php ####################################################################### # PHP Simple Captcha Script # Script Url: http://toolspot.org/php-simple-captcha.php # Author: Sunny Verma # Website: http://toolspot.org # License: GPL 2.0, @see http://www.gnu.org/licenses/gpl-2.0.html ######################################################################## session_start(); $im = imagecreatetruecolor(50, 24); $bg = imagecolorallocate($im,22, 86, 165); $fg = imagecolorallocate($im, 255, 255, 255); imagefill($im, 0, 0, $bg); imagestring($im, 5, 5, 5, $_SESSION["code_cap"], $fg); header("Cache-Control: no-cache, must-revalidate"); header('Content-type: image/png'); imagepng($im); imagedestroy($im); ?>