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 ?> <!-- index.php --> <!DOCTYPE html> <html lang="en"> <head> <meta charse..

Decoded Output download

<?php 
?> 
<!-- index.php --> 
<!DOCTYPE html> 
<html lang="en"> 
<head> 
    <meta charset="UTF-8"> 
    <meta name="viewport" content="width=device-width, initial-scale=1.0"> 
    <link rel="stylesheet" href="style.css"> 
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap"> 
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> 
    <title>Novaria-Network.de</title> 
</head> 
 
<body> 
    <div class="top-container"> 
            <img src="./img/webicon.png" class= "toplogo"> 
            <div id="logotext" onclick="copyText(this)"> Novaria-Network.de</div> 
    </div> 
    <div class="fixed-menu"> 
         <a href="./index.php"> 
             <i class="fa-solid fa-landmark" title="Home"></i></a> 
        <a href="http://novaria-network.de:8080/"> 
            <i class="fa-regular fa-compass" title="Dynmap"></i></a> 
        <a href="https://discord.gg/UkxAsVKC2Q"> 
            <i class="fab fa-discord" title="Join our Discord"></i></a> 
            <div class="li"> 
        <span id="player-count">290</span>/100 Players 
    </div> 
    </div> 
    <div class="container"> 
    <h1>Welcome to Novaria-Network!</h1> 
    <p> Dive into an exciting world full of adventures, creativity, and thrilling challenges. Our server offers you a unique gaming environment where you can create, explore, and experience your builds together with other players. Here's an overview of our server features: 
    <ul> 
   <li> Compelling Worlds: Explore different biomes, secret caves, and fantastic landscapes. Each world provides a unique gaming experience. 
    <li>Community Events: Participate in regular events where you can compete against other players or collaborate with them. Fun and teamwork take center stage. 
    <li>Friendly Community: Meet like-minded individuals, form new friendships, and collectively experience the fascinating world of Minecraft. Our community is always ready to help and welcome you. 
    <li>Plugins: We have integrated a variety of plugins to enhance the gaming experience and add additional features. 
    </ul> 
    <h2>To join our server:</h2> 
    <ul> 
    <li> Connect with our IP address: Enter the IP address in your Minecraft client to access our server directly. 
        <br> 
        <br> 
    <li> Join our Discord server to learn more. 
        <br> 
        <br> 
    <li> Begin your adventure: Immerse yourself in the world of our server and experience the fascination of Minecraft like never before! 
    </ul></p> 
    </div> 
<!--    <div class="container"> 
    <h1>et hendrerit aliquet, dolor diam</h1> 
    <p>ligula mi congue nunc, vitae euismod ligula urna in dolor. Mauris sollicitudin fermentum libero. Praesent nonummy mi in odio. Nunc interdum lacus sit amet orci. Vestibulum rutrum, mi nec elementum vehicula, eros quam gravida nisl, id fringilla neque ante vel mi. Morbi mollis tellus ac sapien. Phasellus volutpat, metus eget egestas mollis, lacus lacus blandit dui, id egestas quam mauris ut lacus. Fusce vel dui. Sed in libero ut nibh placerat accumsan. Proin faucibus arcu quis ante. In consectetuer turpis ut velit. Nulla sit amet est. Praesent metus tellus, elementum eu, semper a, adipiscing nec, purus. Cras risus ipsum, faucibus ut, ullamcorper id, varius ac, leo. Suspendisse feugiat. Suspendisse enim turpis, dictum sed, iaculis a, condimentum nec, nisi. Praesent nec nisl a purus blandit viverra. Praesent ac massa at ligula laoreet iaculis. Nulla neque dolor, sagittis eget, iaculis quis, molestie non, velit. Mauris turpis nunc, blandit et, volutpat molestie, porta ut, ligula. Fusce pharetra convallis urna. Quisque ut nisi. Donec mi odio, faucibus at, scelerisque quis, </p> --> 
    </div> 
        <div class="container-end"> 
    <p>No cookies here! JavaScript is only used to make the website look as it should. If you still have questions, feel free to send a support ticket on Discord. Thank you!</p> 
    </div> 
    <script> 
    // Einmalig beim Laden der Seite aufrufen, um den initialen Status der Leiste zu setzen 
    window.onload = function() { 
        fixNavbarOnScroll(); 
        // Event Listener hinzufgen, um auf das Scroll-Ereignis zu reagieren 
        window.addEventListener('scroll', fixNavbarOnScroll); 
    }; 
 
    function fixNavbarOnScroll() { 
        var navbar = document.querySelector('.fixed-menu'); 
        var container = document.querySelector('.top-container'); 
 
        // berprfen, ob die Seite nach unten gescrollt wurde und die .fixed-menu Leiste sichtbar ist 
        if (window.pageYOffset > container.offsetTop && window.pageYOffset > container.offsetHeight) { 
            navbar.style.position = "fixed"; 
            navbar.style.top = "0"; 
            navbar.style.left = "50%"; 
            navbar.style.transform = "translateX(-50%)"; 
            navbar.style.width= "90%"; 
            navbar.style.minWidth= "80%"; 
 
        } else { 
            navbar.style.position = "static"; 
            navbar.style.transform = "none"; 
            navbar.style.width= "auto"; 
        } 
    } 
    function initServerData(serverIp, serverPort) { 
            const serverIpElement = document.getElementById('player-count'); 
 
            if (!serverIpElement) { 
                console.error("Element with ID 'player-count' not found."); 
                return; 
            } 
 
            serverIpElement.innerHTML = serverIp; 
            fetch('https://mcapi.us/server/status?ip=' + serverIp + '&port=' + serverPort) 
                .then(response => response.json()) 
                .then(data => handleServerStatus(data)); 
 
            function handleServerStatus(data) { 
                if (data.status == 'error') { 
                    console.log(data.error); 
                    return false; 
                } 
                const playerCounter = document.getElementById("player-count"); 
                playerCounter.innerHTML = data.players.now; 
            } 
        } 
 
        // Initiiere das Skript 
        initServerData("novaria-network.de", "25565"); 
      function copyText(element) { 
   var range, selection, worked; 
 
   if (document.body.createTextRange) { 
     range = document.body.createTextRange(); 
     range.moveToElementText(element); 
     range.select(); 
   } else if (window.getSelection) { 
     selection = window.getSelection();         
     range = document.createRange(); 
     range.selectNodeContents(element); 
     selection.removeAllRanges(); 
     selection.addRange(range); 
   } 
    
   try { 
     document.execCommand("copy"); 
 
 
 
    /* alert('text copied'); 
     */ 
   } 
   catch (err) { 
  /*   alert('unable to copy text'); 
  */ 
   } 
  } 
</script> 
 
</body> 
</html> 

Did this file decode correctly?

Original Code

<?php
?>
<!-- index.php -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
    <title>Novaria-Network.de</title>
</head>

<body>
    <div class="top-container">
            <img src="./img/webicon.png" class= "toplogo">
            <div id="logotext" onclick="copyText(this)"> Novaria-Network.de</div>
    </div>
    <div class="fixed-menu">
         <a href="./index.php">
             <i class="fa-solid fa-landmark" title="Home"></i></a>
        <a href="http://novaria-network.de:8080/">
            <i class="fa-regular fa-compass" title="Dynmap"></i></a>
        <a href="https://discord.gg/UkxAsVKC2Q">
            <i class="fab fa-discord" title="Join our Discord"></i></a>
            <div class="li">
        <span id="player-count">290</span>/100 Players
    </div>
    </div>
    <div class="container">
    <h1>Welcome to Novaria-Network!</h1>
    <p> Dive into an exciting world full of adventures, creativity, and thrilling challenges. Our server offers you a unique gaming environment where you can create, explore, and experience your builds together with other players. Here's an overview of our server features:
    <ul>
   <li> Compelling Worlds: Explore different biomes, secret caves, and fantastic landscapes. Each world provides a unique gaming experience.
    <li>Community Events: Participate in regular events where you can compete against other players or collaborate with them. Fun and teamwork take center stage.
    <li>Friendly Community: Meet like-minded individuals, form new friendships, and collectively experience the fascinating world of Minecraft. Our community is always ready to help and welcome you.
    <li>Plugins: We have integrated a variety of plugins to enhance the gaming experience and add additional features.
    </ul>
    <h2>To join our server:</h2>
    <ul>
    <li> Connect with our IP address: Enter the IP address in your Minecraft client to access our server directly.
        <br>
        <br>
    <li> Join our Discord server to learn more.
        <br>
        <br>
    <li> Begin your adventure: Immerse yourself in the world of our server and experience the fascination of Minecraft like never before!
    </ul></p>
    </div>
<!--    <div class="container">
    <h1>et hendrerit aliquet, dolor diam</h1>
    <p>ligula mi congue nunc, vitae euismod ligula urna in dolor. Mauris sollicitudin fermentum libero. Praesent nonummy mi in odio. Nunc interdum lacus sit amet orci. Vestibulum rutrum, mi nec elementum vehicula, eros quam gravida nisl, id fringilla neque ante vel mi. Morbi mollis tellus ac sapien. Phasellus volutpat, metus eget egestas mollis, lacus lacus blandit dui, id egestas quam mauris ut lacus. Fusce vel dui. Sed in libero ut nibh placerat accumsan. Proin faucibus arcu quis ante. In consectetuer turpis ut velit. Nulla sit amet est. Praesent metus tellus, elementum eu, semper a, adipiscing nec, purus. Cras risus ipsum, faucibus ut, ullamcorper id, varius ac, leo. Suspendisse feugiat. Suspendisse enim turpis, dictum sed, iaculis a, condimentum nec, nisi. Praesent nec nisl a purus blandit viverra. Praesent ac massa at ligula laoreet iaculis. Nulla neque dolor, sagittis eget, iaculis quis, molestie non, velit. Mauris turpis nunc, blandit et, volutpat molestie, porta ut, ligula. Fusce pharetra convallis urna. Quisque ut nisi. Donec mi odio, faucibus at, scelerisque quis, </p> -->
    </div>
        <div class="container-end">
    <p>No cookies here! JavaScript is only used to make the website look as it should. If you still have questions, feel free to send a support ticket on Discord. Thank you!</p>
    </div>
    <script>
    // Einmalig beim Laden der Seite aufrufen, um den initialen Status der Leiste zu setzen
    window.onload = function() {
        fixNavbarOnScroll();
        // Event Listener hinzufgen, um auf das Scroll-Ereignis zu reagieren
        window.addEventListener('scroll', fixNavbarOnScroll);
    };

    function fixNavbarOnScroll() {
        var navbar = document.querySelector('.fixed-menu');
        var container = document.querySelector('.top-container');

        // berprfen, ob die Seite nach unten gescrollt wurde und die .fixed-menu Leiste sichtbar ist
        if (window.pageYOffset > container.offsetTop && window.pageYOffset > container.offsetHeight) {
            navbar.style.position = "fixed";
            navbar.style.top = "0";
            navbar.style.left = "50%";
            navbar.style.transform = "translateX(-50%)";
            navbar.style.width= "90%";
            navbar.style.minWidth= "80%";

        } else {
            navbar.style.position = "static";
            navbar.style.transform = "none";
            navbar.style.width= "auto";
        }
    }
    function initServerData(serverIp, serverPort) {
            const serverIpElement = document.getElementById('player-count');

            if (!serverIpElement) {
                console.error("Element with ID 'player-count' not found.");
                return;
            }

            serverIpElement.innerHTML = serverIp;
            fetch('https://mcapi.us/server/status?ip=' + serverIp + '&port=' + serverPort)
                .then(response => response.json())
                .then(data => handleServerStatus(data));

            function handleServerStatus(data) {
                if (data.status == 'error') {
                    console.log(data.error);
                    return false;
                }
                const playerCounter = document.getElementById("player-count");
                playerCounter.innerHTML = data.players.now;
            }
        }

        // Initiiere das Skript
        initServerData("novaria-network.de", "25565");
      function copyText(element) {
   var range, selection, worked;

   if (document.body.createTextRange) {
     range = document.body.createTextRange();
     range.moveToElementText(element);
     range.select();
   } else if (window.getSelection) {
     selection = window.getSelection();        
     range = document.createRange();
     range.selectNodeContents(element);
     selection.removeAllRanges();
     selection.addRange(range);
   }
   
   try {
     document.execCommand("copy");



    /* alert('text copied');
     */
   }
   catch (err) {
  /*   alert('unable to copy text');
  */
   }
  }
</script>

</body>
</html>

Function Calls

None

Variables

None

Stats

MD5 25f1f9980b6f87a4ca7e0f4f6de478c9
Eval Count 0
Decode Time 58 ms