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 /* ----------- Server configuration ---------- */ $ip = "178.32.107.151"; $port..

Decoded Output download

<?php 
/* ----------- Server configuration ---------- */ 
 
$ip = "178.32.107.151"; 
$port = "3307"; 
 
/* ----- No need to edit below this line ----- */ 
/* ------------------------------------------- */ 
 
$fp = @fsockopen($ip,$port,$errno,$errstr,1); 
if (!$fp)  
	{  
	echo "Radyo Kapal!"; // Displays when sever is offline 
	}  
	else 
	{  
	fputs($fp, "GET /7.html HTTP/1.0
User-Agent: Mozilla

"); 
	while (!feof($fp))  
		{ 
		$info = fgets($fp); 
		} 
	$info = str_replace('</body></html>', "", $info); 
	$split = explode(',', $info); 
	if (empty($split[6]) ) 
		{ 
		echo "uanda alan ark yok!"; // Displays when sever is online but no song title 
		} 
	else 
		{ 
		$title = str_replace('\'', '`', $split[6]); 
		$title = str_replace(',', ' ', $title); 
		echo "$title"; // Displays song 
				} 
	} 
	 
	 
?> 
 

Did this file decode correctly?

Original Code

<?php
/* ----------- Server configuration ---------- */

$ip = "178.32.107.151";
$port = "3307";

/* ----- No need to edit below this line ----- */
/* ------------------------------------------- */

$fp = @fsockopen($ip,$port,$errno,$errstr,1);
if (!$fp) 
	{ 
	echo "Radyo Kapal!"; // Displays when sever is offline
	} 
	else
	{ 
	fputs($fp, "GET /7.html HTTP/1.0\r\nUser-Agent: Mozilla\r\n\r\n");
	while (!feof($fp)) 
		{
		$info = fgets($fp);
		}
	$info = str_replace('</body></html>', "", $info);
	$split = explode(',', $info);
	if (empty($split[6]) )
		{
		echo "uanda alan ark yok!"; // Displays when sever is online but no song title
		}
	else
		{
		$title = str_replace('\'', '`', $split[6]);
		$title = str_replace(',', ' ', $title);
		echo "$title"; // Displays song
				}
	}
	
	
?>

Function Calls

fsockopen 1

Variables

$ip 178.32.107.151
$port 3307

Stats

MD5 2e0eaff1c8f8319ee010bd39a58afffd
Eval Count 0
Decode Time 99 ms