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> <head> <title>BOTIFY</title> <style> body { ..

Decoded Output download

<!DOCTYPE html> 
<html> 
<head> 
    <title>BOTIFY</title> 
    <style> 
        body { 
            color: white; 
            font-family: Arial, sans-serif; 
            background-color: #202324;  
            margin: 0; 
            display: flex; 
            justify-content: center; 
            align-items: center; 
            height: 100vh; 
        } 
 
        .container { 
            text-align: center; 
            background-color: #181a1b; 
            padding: 20px; 
            border-radius: 10px; 
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        } 
         
        .rainbow-text { 
            background: linear-gradient( 
                to right, 
                #7953cd 20%, 
                #00affa 30%, 
                #0190cd 70%, 
                #764ada 80% 
            ); 
            -webkit-background-clip: text; 
            background-clip: text; 
            -webkit-text-fill-color: transparent; 
            text-fill-color: transparent; 
            background-size: 500% auto; 
            animation: textShine 3s ease-in-out infinite alternate; 
        } 
         
        @keyframes textShine { 
            0% { 
                background-position: 0% 50%; 
            } 
            100% { 
                background-position: 100% 50%; 
            } 
        } 
    </style> 
</head> 
<body> 
    <div class="container"> 
        <?php 
        if (isset($_GET['data'])) { 
            $data = $_GET['data']; 
            $parts = explode("BOTIFY", $data); 
            $actual_data = $parts[0];  
            echo "<h1>Here is your <span class='rainbow-text'>". "key" . "</span> !<br><h1>key: <span class='rainbow-text'>" . htmlspecialchars($actual_data) . "</span></h1>"; 
        } else { 
            echo "<h1>No data could be parsed.</h1>"; 
        } 
        ?> 
    </div> 
</body> 
</html> 

Did this file decode correctly?

Original Code

<!DOCTYPE html>
<html>
<head>
    <title>BOTIFY</title>
    <style>
        body {
            color: white;
            font-family: Arial, sans-serif;
            background-color: #202324; 
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .container {
            text-align: center;
            background-color: #181a1b;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .rainbow-text {
            background: linear-gradient(
                to right,
                #7953cd 20%,
                #00affa 30%,
                #0190cd 70%,
                #764ada 80%
            );
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-fill-color: transparent;
            background-size: 500% auto;
            animation: textShine 3s ease-in-out infinite alternate;
        }
        
        @keyframes textShine {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 100% 50%;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <?php
        if (isset($_GET['data'])) {
            $data = $_GET['data'];
            $parts = explode("BOTIFY", $data);
            $actual_data = $parts[0]; 
            echo "<h1>Here is your <span class='rainbow-text'>". "key" . "</span> !<br><h1>key: <span class='rainbow-text'>" . htmlspecialchars($actual_data) . "</span></h1>";
        } else {
            echo "<h1>No data could be parsed.</h1>";
        }
        ?>
    </div>
</body>
</html>

Function Calls

explode 1

Variables

$data None
$parts None

Stats

MD5 08f6b4640734e443feacf3afb6f1cf6d
Eval Count 0
Decode Time 252 ms