ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-12 04:13:17
Editing: clickserver_api_management.php
Cancel
Save Changes
<?php if ($_SERVER['REQUEST_METHOD'] == 'POST') { if ($_POST['clickserver_id']) { $api_key = base64_decode($_POST['api_key']); $clickserverId = base64_encode($_POST['clickserver_id']); if (clickserver_api_domain_act_deact($api_key, $clickserverId, $_POST['method'])) { $data = true; echo $data; } } } function clickserver_api_domain_act_deact($key, $csid, $method){ //Initiate curl $ch = curl_init(); // Disable SSL verification curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Will return the response, if false it print the response curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Set the url curl_setopt($ch, CURLOPT_URL, 'http://my.tracking202.com/api/v1/'.$method.'/?apiKey='.$key.'&clickserverId='.$csid); // Execute $result=curl_exec($ch); $data = json_decode($result, true); if ($method == 'activate') { $success = $data['isActivationSuccess']; } else { $success = $data['isDeactivationSuccess']; } if ($data['isValidKey'] != 'true' || $success != 'true') { return false; die(); } return true; curl_close($ch); } function clickserver_api_domain_list($key){ //Initiate curl $ch = curl_init(); // Disable SSL verification curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Will return the response, if false it print the response curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Set the url curl_setopt($ch, CURLOPT_URL, 'http://my.tracking202.com/api/v1/list/?apiKey='.$key); // Execute $result=curl_exec($ch); $data = json_decode($result, true); return $data; curl_close($ch); } function clickserver_api_license($key){ //Initiate curl $ch = curl_init(); // Disable SSL verification curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // Will return the response, if false it print the response curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Set the url curl_setopt($ch, CURLOPT_URL, 'http://my.tracking202.com/api/v1/license/?apiKey='.$key); // Execute $result=curl_exec($ch); $data = json_decode($result, true); return $data; curl_close($ch); } ?>
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete