https://cfinder.xyz/

ID da verificação
e459347a-7d69-4fc1-adc4-e13f4aa7ad10Concluído
URL enviado:
https://cfinder.xyz/
Relatório concluído:

Variáveis JavaScript · 22 encontrada(s)

NomeTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject
AOSobject
$function
jQueryfunction
slideobject
slideTotalnumber
slideCurrentnumber
initBulletsfunction

Mensagens de registro do console · 1 encontrada(s)

TipoCategoriaLog
errornetwork
URL
https://i.postimg.cc/Hx1zFRx1/Spotify-Premium.png
Texto
Failed to load resource: the server responded with a status of 503 ()

HTML

<html lang="en"><head><style>
    /* everyone in poppins */
    * {
        font-family: 'Poppins', sans-serif;
    }
</style>
<link rel="icon" href="../assets/Favicon.ico">






    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!-- icon -->
    <link rel="icon" type="image/png" href="assets/Favicon.ico" sizes="16x16">
    <!-- css -->
    <link rel="stylesheet" href="nnp_style.css?v=6">
    <title>cFinder</title>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
    <link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
  </head>

<body data-aos-easing="ease" data-aos-duration="400" data-aos-delay="0">

      <link rel="stylesheet" href="css/navbar.css?v=5">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css">
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">

    <style>
        @import 'https://fonts.googleapis.com/css?family=Raleway';


        .profile {
            width: 330px;
            height: 100px;
            position: fixed;
            bottom: 10;
            right: 10;
            border-radius: 5px;
            background-color: #ec2929;
            box-shadow: 0 0 2rem black;
            animation: show-profile 0.5s forwards ease-in-out;
        }
        @keyframes show-profile {
        0% {
            width: 0;
        }
        }
        .profile .photo, .profile .ctnnt {
            box-sizing: border-box;
        }
        .profile .photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid #ec2929;
            background-color: #fafafa;
            margin-left: -50px;
            box-shadow: 0 0 0.5rem #ec2929;
            animation: rotate-photo 0.5s forwards ease-in-out;
        }
        @keyframes rotate-photo {
        100% {
            transform: rotate(-360deg);
        }
        }
        .profile .photo img {
        width: 100%;
        }
        .profile .ctnnt {
            padding: 10px;
            overflow: hidden;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }
        .profile .ctnnt::before {
            content: "";
            position: absolute;
            width: 230px;
            height: 150px;
            background-color: #0b0c0f;
            left: 0;
            top: -20px;
            z-index: -1;
            transform: rotate(-8deg);
        }
        .profile .ctnnt .text {
            margin-top: 20px;
            margin-left: 51px;
            color: white;
            font-family: Raleway;
        }
        .profile .ctnnt .text h3, .profile .ctnnt .text h6 {
            font-weight: normal;
            margin: 3px 0;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .profile .ctnnt .btn {
            background-color: white;
            width: 50px;
            height: 50px;
            position: absolute;
            right: 25px;
            top: 25px;
            border-radius: 50%;
            z-index: 1;
            cursor: pointer;
            transition-duration: 0.3s;
            animation: pop-btn 0.3s both ease-in-out 0.5s;
        }
        @keyframes pop-btn {
        0% {
            transform: scale(0);
        }
        80% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
        }
        }
        .profile .ctnnt .btn:hover {
            /* box-shadow: 0 0 0 5px rgba(170, 187, 204, 0.5); */
            box-shadow: 0 0 2rem white;

        }
        .profile .ctnnt .btn span {
            width: 60%;
            height: 2px;
            position: absolute;
            background-color: #ec2929;
            top: 50%;
            left: 20%;
            transform: translateY(-50%);
            animation: to-hamburger 0.3s forwards ease-in-out;
        }
        .profile .ctnnt .btn span::before, .profile .ctnnt .btn span::after {
            content: "";
            width: 100%;
            height: 2px;
            position: absolute;
            background-color: #ec2929;
            transition-duration: 0.3s;
            transform: rotate(0deg);
            right: 0;
        }
        .profile .ctnnt .btn span::before {
        margin-top: -7px;
        }
        .profile .ctnnt .btn span::after {
        margin-top: 7px;
        }
        .profile .ctnnt .btn.active span {
        animation: to-arrow 0.3s forwards ease-in-out;
        }
        .profile .ctnnt .btn.active span::before, .profile .ctnnt .btn.active span::after {
        width: 60%;
        right: -1px;
        }
        .profile .ctnnt .btn.active span::before {
        transform: rotate(45deg);
        }
        .profile .ctnnt .btn.active span::after {
        transform: rotate(-45deg);
        }
        @keyframes to-hamburger {
        from {
            transform: translateY(-50%) rotate(-180deg);
        }
        }
        @keyframes to-arrow {
        from {
            transform: translateY(-50%) rotate(0deg);
        }
        to {
            transform: translateY(-50%) rotate(180deg);
        }
        }
        .profile .box {
            width: 150px;
            height: 150px;
            opacity: 0;
            border-radius: 50%;
            /* background-color: rgba(255, 255, 255, 0.7); */
            position: absolute;
            top: 50%;
            right: -40%;
            transform: translate(-50%, -50%);
            transition-duration: 0.3s;
        }
        .profile .box i {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ececec;
            font-size: 26px;
            text-align: center;
            line-height: 50px;
            position: absolute;
            left: 18px;
            top: calc(75px - 50px/2);
            box-shadow: 0 0 0.5rem #babbbc;
            transition-duration: 0.3s;
        }
        .profile .box i:hover {
        transition-delay: initial !important;
        box-shadow: 0 0 0 5px #babbbc;
        }
        .profile .box.open {
        opacity: 1;
        }
        .profile .box.open i {
        left: -275px;
        }
        .profile .box.open i:nth-of-type(1) {
        transform: rotate(-90deg) translateX(120px) rotate(90deg);
        transition-delay: 0s;
        }
        .profile .box.open i:nth-of-type(2) {
        transform: rotate(-135deg) translateX(120px) rotate(135deg);
        transition-delay: 0.1s;
        }
        .profile .box.open i:nth-of-type(3) {
        transform: rotate(180deg) translateX(120px) rotate(180deg);
        transition-delay: 0.2s;
        }
        .profile .box.open i:nth-of-type(4) {
        transform: rotate(45deg) translateX(120px) rotate(-45deg);
        transition-delay: 0.3s;
        }
        .profile .box.open i:nth-of-type(5) {
        transform: rotate(90deg) translateX(120px) rotate(-90deg);
        transition-delay: 0.4s;
        }
    </style>
            
    <div class="nav" style="margin-top: 53px">
        <input type="checkbox" id="nav-check">
        <a href="https://www.cfinder.xyz" style="margin-left: 20px"><img src="assets/logo.png" class="logo"></a>
        
        <div class="nav-btn">
            <label for="nav-check">
                <span></span>
                <span></span>
                <span></span>
            </label>
        </div>

        <!-- <div class="nav-links highlightTextIn link-effect-14" id="link-effect-14">
            
                <a href="../index.php" class="nav-link-bar"><span>Accueil</span></a>
                <a href="../jeux.php" class="nav-link-bar"><span>Jeux</span></a>
                <a href="../support.php" class="nav-link-bar"><span>Support</span></a>
                <a href="../dmca.php" class="nav-link-bar"><span>DMCA</span></a>
                <a href="../prerequis.php" class="nav-link-bar"><span>Prérequis</span></a>
                <a><form method="get" action="../jeux.php"><input style="border-radius: 5px; height: 25px" type="text" id="recherche" name="q" placeholder="&#x270e;  Rechercher un jeu..."></form></a>
        </div> -->
        <section class="links nav-links highlightTextIn">
                <nav class="link-effect-14" id="link-effect-14">
                    <a href="https://www.cfinder.xyz" class="nav-link-bar"><span>Accueil</span></a>
                    <a href="../autocrack" class="nav-link-bar"><span>AutoCrack</span></a>
                    <a href="../jeux" class="nav-link-bar"><span>Jeux</span></a>
                    <a href="../support" class="nav-link-bar"><span>Support</span></a>
                    <a href="../dmca" class="nav-link-bar"><span>DMCA</span></a>
                    <a href="../prerequis" class="nav-link-bar"><span>Prérequis</span></a>
                    <a><form method="get" action="../jeux.php" style="margin:0"><input style="border-radius: 30px; height: 25px; color:black" type="text" id="recherche" name="q" placeholder="✎  Rechercher un jeu..."></form></a>
                                    </nav>
            </section>
    </div>
        <script>
            (function() {
            $('.btn').click(function() {
                $(this).toggleClass('active');
                return $('.box').toggleClass('open');
            });

            }).call(this);
        </script>
    
    <!-- ACCEUIL -->
    <div class="home">
        <video src="np_assets/backgroundfinder.mp4" autoplay="" loop="" muted="" id="cfVideo"></video>
        <form method="get" action="jeux.php">
        <div class="infos">
            <h1>cFinder<span class="xyz">.xyz</span><span class="floating-text" style="font-size: 4.5rem;">  V2</span></h1>
            <input type="text" name="q" id="q" placeholder="✎   Rechercher un jeu...">
            <!-- <input type="search" name="" id="" placeholder="✎   Rechercher un jeu..." /> -->
            <h4>TOUS VOS JEUX &amp; LOGICIELS EN UN SEUL CLIC</h4>
                
              <button type="button" class="discordBtn" onclick="window.location.href = 'discord_link/init-oauth.php';"><img src="np_assets/logo_discord.png" alt="logo_discord">Connexion</button>
                    </div>
        </form>
        <div class="custom-shape-divider-bottom-1712749082">
    <svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
        <path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
    </svg>
</div>

    </div>

    <!-- SLIDER -->
   <div class="slider-container aos-init" data-aos="fade-up">

    <div class="slider-content aos-init" data-aos="fade-up">
      

            <div class="slider-single proactivede aos-init" data-aos="fade-up" onclick="window.location.href = 'consult.php?id=159';">
                <img class="slider-single-image" src="https://i.ytimg.com/vi/qLZenOn7WUo/maxresdefault.jpg" alt="1">
            </div>
            

            <div class="slider-single aos-init preactive" data-aos="fade-up" onclick="window.location.href = 'consult.php?id=859';">
                <img class="slider-single-image" src="https://i.ibb.co/nB3tW5z/1172620-modified.jpg" alt="2">
            </div>
            

            <div class="slider-single aos-init active" data-aos="fade-up" onclick="window.location.href = 'consult.php?id=290';">
                <img class="slider-single-image" src="https://i.postimg.cc/Hx1zFRx1/Spotify-Premium.png" alt="3">
            </div>
            

            <div class="slider-single aos-init proactive" data-aos="fade-up" onclick="window.location.href = 'consult.php?id=849';">
                <img class="slider-single-image" src="https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/2322010/header.jpg?t=1726764322" alt="4">
            </div>
            

            <div class="slider-single proactivede aos-init" data-aos="fade-up" onclick="window.location.href = 'consult.php?id=860';">
                <img class="slider-single-image" src="https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/3070070/header.jpg?t=1727334511" alt="5">
            </div>
            
    </div>
<div class="bullet-container"><div class="bullet" id="bullet-index-0"></div><div class="bullet" id="bullet-index-1"></div><div class="bullet active" id="bullet-index-2"></div><div class="bullet" id="bullet-index-3"></div><div class="bullet" id="bullet-index-4"></div></div><a class="slider-left">
<i class="fa-solid fa-arrow-left" title="arrow-left"></i>
</a><a class="slider-right">
<i class="fa-solid fa-arrow-right" title="arrow-right"></i>
</a></div>

<!-- VIP -->
<div class="vipContainer">
  <div class="vipImg aos-init" data-aos="fade-up">
    <img src="np_assets/vip.png" alt="image vip">
  </div>
  <div class="vipInfo aos-init" data-aos="fade-up">
    <h2>VIP <span>+</span></h2>
    <p>Obtenir le VIP+ pour seulement <span>5.99€</span><br>
    Le VIP+ a énormément d'avantages tels que l'accès à l'autocrack en BÊTA, ou encore la suppression des liens intermédiaires (Linkvertise).</p>
    <button class="vipBtn" onclick="window.location.href = 'https://discord.gg/finder';">Voir plus</button>
  </div>
</div>
  
<!-- Nouveautés -->
<div class="newsContainer aos-init" data-aos="fade-up">
  <h2>Nouveautés</h2>
  <hr>
  <div class="newsImagesContainer">
    <div class="newsImage" onclick="window.location.href = 'consult.php?id=915';">
      <img src="https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/1796220/header.jpg?t=1728655845" alt="news1">
    </div>
    <div class="newsImage" onclick="window.location.href = 'consult.php?id=914';">
      <img src="https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/474960/header.jpg?t=1682524073" alt="news2">
    </div>
    <div class="newsImage" onclick="window.location.href = 'consult.php?id=913';">
      <img src="https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/543460/header.jpg?t=1644282464" alt="news3">
    </div>
  </div>
</div>

<!-- pop up -->
<div class="bottom-center-text" bis_skin_checked="1">
        © 2021 - 2024 cFinder V2
    </div>
  <script defer="" src="https://static.cloudflareinsights.com/beacon.min.js/vcd15cbe7772f49c399c6a5babf22c1241717689176015" integrity="sha512-ZpsOmlRQV6y907TI0dKBHq9Md29nnaEIPlkf84rnaERnq6zvWvPUqr2ft8M1aS28oN72PdrCzSjY4U6VaAw1EQ==" data-cf-beacon="{&quot;rayId&quot;:&quot;8d5c13d458663845&quot;,&quot;version&quot;:&quot;2024.10.1&quot;,&quot;r&quot;:1,&quot;serverTiming&quot;:{&quot;name&quot;:{&quot;cfExtPri&quot;:true,&quot;cfL4&quot;:true,&quot;cfSpeedBrain&quot;:true,&quot;cfCacheStatus&quot;:true}},&quot;token&quot;:&quot;dbe2061f1f4642529bc41e4e44fbf226&quot;,&quot;b&quot;:1}" crossorigin="anonymous"></script>




<script src="np_app.js"></script>

</body></html>