Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<!DOCTYPE html> <html lang='en'> <head> <title>{$title}</title> <meta name='descriptio..

Decoded Output download

<?  <!DOCTYPE html> 
<html lang='en'> 
<head> 
<title>{$title}</title> 
<meta name='description' content='{$description}'> 
<meta name='keywords' content='{$keywords}'> 
<style> 
  body, html { 
    margin: 0; 
    padding: 0; 
    height: 100%; 
    overflow: hidden; 
  } 
  #dynamic { 
    width: 100%; 
    height: 100vh; 
    border: none; 
  } 
</style> 
</head> 
<body> 
 
<script type='text/javascript'> 
    eval(atob('{$encodedJsCode}')); 
</script> 
</body> 
</html> ?>

Did this file decode correctly?

Original Code

<!DOCTYPE html>
<html lang='en'>
<head>
<title>{$title}</title>
<meta name='description' content='{$description}'>
<meta name='keywords' content='{$keywords}'>
<style>
  body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }
  #dynamic {
    width: 100%;
    height: 100vh;
    border: none;
  }
</style>
</head>
<body>

<script type='text/javascript'>
    eval(atob('{$encodedJsCode}'));
</script>
</body>
</html>

Function Calls

None

Variables

None

Stats

MD5 2879d10282b577d4acc27cd2d7bd838f
Eval Count 0
Decode Time 49 ms