OXIESEC PANEL
- Current Dir:
/
/
home
/
cubot
/
docroot
/
assets
/
plugins
/
sky-forms-pro
/
skyforms
/
captcha
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/14/2022 11:10:45 AM
rwxr-xr-x
📄
button.png
1.51 KB
08/14/2022 11:10:44 AM
rw-r--r--
📁
font
-
08/14/2022 11:10:44 AM
rwxr-xr-x
📄
image.php
852 bytes
08/14/2022 11:10:44 AM
rw-r--r--
📄
process.php
302 bytes
08/14/2022 11:10:44 AM
rw-r--r--
Editing: process.php
Close
<?php // Begin the session session_start(); // To avoid case conflicts, make the input uppercase and check against the session value // If it's correct, echo '1' as a string if(strtoupper($_GET['captcha']) == $_SESSION['captcha_id']) echo 'true'; // Else echo '0' as a string else echo 'false'; ?>