uawdijnntqw1x1x1
IP : 216.73.217.77
Hostname : panel.codeskitter.com
Kernel : Linux panel.codeskitter.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
Disable Function : apache_child_terminate, apache_note, apache_setenv, define_syslog_variables, dl, link, opcache_get_status, openlog, pcntl_exec, pcntl_fork, pcntl_setpriority, popen, posix_getpwuid, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid
OS : Linux
PATH:
/
home
/
users
/
unlimited
/
www
/
facebook.codeskitter.site
/
ffmpeg
/
..
/
nodejs
/
..
/
api
/
v2
/
endpoints
/
mute.php
/
/
<?php if (!empty($_POST['chat_id']) && is_numeric($_POST['chat_id']) && $_POST['chat_id'] > 0 && !empty($_POST['type']) && in_array($_POST['type'], array('user','page','group'))) { if (!empty($_POST['notify']) || !empty($_POST['call_chat']) || !empty($_POST['archive']) || !empty($_POST['pin'])) { $update_data = array(); if (!empty($_POST['notify']) && in_array($_POST['notify'], array('yes','no'))) { $update_data['notify'] = Wo_Secure($_POST['notify']); } if (!empty($_POST['call_chat']) && in_array($_POST['call_chat'], array('yes','no'))) { $update_data['call_chat'] = Wo_Secure($_POST['call_chat']); } if (!empty($_POST['archive']) && in_array($_POST['archive'], array('yes','no'))) { $update_data['archive'] = Wo_Secure($_POST['archive']); } if (!empty($_POST['pin']) && in_array($_POST['pin'], array('yes','no'))) { $update_data['pin'] = Wo_Secure($_POST['pin']); } $chat = $db->where('id',Wo_Secure($_POST['chat_id']))->getOne(T_U_CHATS); if (!empty($chat)) { if (!empty($update_data)) { $info = $db->where('type',Wo_Secure($_POST['type']))->where('user_id',$wo['user']['id'])->where('chat_id',Wo_Secure($_POST['chat_id']))->getOne(T_MUTE); if (!empty($info)) { $update_data['chat_id'] = Wo_Secure($_POST['chat_id']); $db->where('id',$info->id)->update(T_MUTE,$update_data); } else{ $update_data['user_id'] = $wo['user']['id']; $update_data['type'] = Wo_Secure($_POST['type']); $update_data['time'] = time(); $update_data['chat_id'] = Wo_Secure($_POST['chat_id']); $db->insert(T_MUTE,$update_data); } $response_data = array( 'api_status' => 200, 'message' => 'chat updated' ); } else{ $error_code = 6; $error_message = 'notify or call_chat or archive or pin or fav can not be empty'; } } else{ $error_code = 7; $error_message = 'Chat not found'; } } else{ $error_code = 5; $error_message = 'notify or call_chat or archive or pin or fav can not be empty'; } } else{ $error_code = 4; $error_message = 'chat_id and type can not be empty'; }
/home/users/unlimited/www/facebook.codeskitter.site/ffmpeg/../nodejs/../api/v2/endpoints/mute.php