Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.145.43.92
54 Domain
7.3.33
dpclient
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 /
dpclient /
public_html /
designprovider /
th /
[ HOME SHELL ]
Name
Size
Permission
Action
banner
[ DIR ]
drwxr-xr-x
clients
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
font-awesome
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
image1
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
img1
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
pki-validation
[ DIR ]
drwxr-xr-x
poster
[ DIR ]
drwxr-xr-x
trisla
[ DIR ]
drwxr-xr-x
uk-old
[ DIR ]
drwxr-xr-x
video
[ DIR ]
drwxr-xr-x
.htaccess
1.4
KB
-rw-r--r--
EULA.txt
33.32
KB
-rw-r--r--
README.txt
2.98
KB
-rw-r--r--
about.php
8.75
KB
-rw-r--r--
app.php
23.3
KB
-rw-r--r--
blog-details.php
13.33
KB
-rw-r--r--
blog.php
13.76
KB
-rw-r--r--
captcha_code_file.php
2.91
KB
-rw-r--r--
contact.php
22.92
KB
-rw-r--r--
domain.php
677
B
-rw-r--r--
dp-review.php
14.92
KB
-rw-r--r--
ecommerce.php
5.22
KB
-rw-r--r--
error_log
93.86
KB
-rw-r--r--
final-process.php
18.7
KB
-rw-r--r--
googleads.php
22.24
KB
-rw-r--r--
graphic-artwork.php
57.59
KB
-rw-r--r--
index.php
5.82
KB
-rw-r--r--
index09.09.2017.php
5.81
KB
-rw-r--r--
info.php
20
B
-rw-r--r--
itailor-rebranding.php
1.11
KB
-rw-r--r--
our-clients.php
9.81
KB
-rw-r--r--
our-project.php
6.95
KB
-rw-r--r--
pro-cms.php
7.21
KB
-rw-r--r--
recaptchalib.php
4.46
KB
-rw-r--r--
robot.txt
375
B
-rw-r--r--
search-engine-optimization.php
36.51
KB
-rw-r--r--
sem.php
17.47
KB
-rw-r--r--
sendmail.php
2.9
KB
-rw-r--r--
sitemap.xml
1.53
KB
-rw-r--r--
smm.php
14.85
KB
-rw-r--r--
standard-cms.php
7.51
KB
-rw-r--r--
thankyou.php
11.97
KB
-rw-r--r--
thankyou01.php
6.83
KB
-rw-r--r--
thankyoukeyword.php
14.25
KB
-rw-r--r--
web-design-old.php
18.61
KB
-rw-r--r--
web-design.php
40.94
KB
-rw-r--r--
youtube.php
9.61
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : captcha_code_file.php
<?php /* * * this code is based on captcha code by Simon Jarvis * http://www.white-hat-web-design.co.uk/articles/php-captcha.php * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details: * http://www.gnu.org/licenses/gpl.html */ session_start(); //Settings: You can customize the captcha here $image_width = 120; $image_height = 40; $characters_on_image = 6; $font = './fonts/monofont.ttf'; //The characters that can be used in the CAPTCHA code. //avoid confusing characters (l 1 and i for example) $possible_letters = '23456789bcdfghjkmnpqrstvwxyz'; $random_dots = 0; $random_lines = 20; $captcha_text_color="0x142864"; $captcha_noice_color = "0x142864"; $code = ''; $i = 0; while ($i < $characters_on_image) { $code .= substr($possible_letters, mt_rand(0, strlen($possible_letters)-1), 1); $i++; } $font_size = $image_height * 0.75; $image = @imagecreate($image_width, $image_height); /* setting the background, text and noise colours here */ $background_color = imagecolorallocate($image, 255, 255, 255); $arr_text_color = hexrgb($captcha_text_color); $text_color = imagecolorallocate($image, $arr_text_color['red'], $arr_text_color['green'], $arr_text_color['blue']); $arr_noice_color = hexrgb($captcha_noice_color); $image_noise_color = imagecolorallocate($image, $arr_noice_color['red'], $arr_noice_color['green'], $arr_noice_color['blue']); /* generating the dots randomly in background */ for( $i=0; $i<$random_dots; $i++ ) { imagefilledellipse($image, mt_rand(0,$image_width), mt_rand(0,$image_height), 2, 3, $image_noise_color); } /* generating lines randomly in background of image */ for( $i=0; $i<$random_lines; $i++ ) { imageline($image, mt_rand(0,$image_width), mt_rand(0,$image_height), mt_rand(0,$image_width), mt_rand(0,$image_height), $image_noise_color); } /* create a text box and add 6 letters code in it */ $textbox = imagettfbbox($font_size, 0, $font, $code); $x = ($image_width - $textbox[4])/2; $y = ($image_height - $textbox[5])/2; imagettftext($image, $font_size, 0, $x, $y, $text_color, $font , $code); /* Show captcha image in the page html page */ header('Content-Type: image/jpeg');// defining the image type to be shown in browser widow imagejpeg($image);//showing the image imagedestroy($image);//destroying the image instance $_SESSION['6_letters_code'] = $code; function hexrgb ($hexstr) { $int = hexdec($hexstr); return array("red" => 0xFF & ($int >> 0x10), "green" => 0xFF & ($int >> 0x8), "blue" => 0xFF & $int); } ?>
Close