uawdijnntqw1x1x1
IP : 216.73.216.93
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
/
codeskitter
/
..
/
facebook.codeskitter.site
/
xhr
/
pay_with_bitcoin.php
/
/
<?php if ($f == 'pay_with_bitcoin') { if ($s == 'pay') { if (!empty($_GET['amount']) && is_numeric($_GET['amount']) && $_GET['amount'] > 0) { $amount = (int)Wo_Secure($_GET[ 'amount' ]); if (empty($wo['config']['coinpayments_coin'])) { $wo['config']['coinpayments_coin'] = 'BTC'; } $result = coinpayments_api_call(array('key' => $wo['config']['coinpayments_public_key'], 'version' => '1', 'format' => 'json', 'cmd' => 'create_transaction', 'amount' => $amount, 'currency1' => $wo['config']['currency'], 'currency2' => $wo['config']['coinpayments_coin'], 'custom' => $amount, 'success_url' => $wo['config']['site_url'] . '/wallet', 'cancel_url' => $wo['config']['site_url'] . '/requests.php?f=pay_with_bitcoin&s=cancel_coinpayments', 'buyer_email' => $wo['user']['email'])); if (!empty($result) && $result['status'] == 200) { $db->insert(T_PENDING_PAYMENTS,array('user_id' => $wo['user']['user_id'], 'payment_data' => $result['data']['txn_id'], 'method_name' => 'coinpayments', 'time' => time())); $data = array( 'status' => 200, 'url' => $result['data']['checkout_url'] ); } else{ $data = array( 'status' => 400, 'message' => $result['message'] ); } } else{ $data = array( 'status' => 400, 'message' => $wo['lang']['empty_amount'] ); } header("Content-type: application/json"); echo json_encode($data); exit(); } if ($s == 'cancel_coinpayments') { $db->where('user_id', $wo['user']['user_id'])->where('method_name', 'coinpayments')->delete(T_PENDING_PAYMENTS); header('Location: ' . Wo_SeoLink('index.php?link1=wallet')); exit(); } }
/home/users/unlimited/www/codeskitter/../facebook.codeskitter.site/xhr/pay_with_bitcoin.php