https://web3-electrum.com/

ID da verificação
2688d2e8-8fe4-43eb-98ff-a30d1bb768a8Concluído
URL enviado:
https://v2-electrum.com/Redirecionado
Relatório concluído:

Ligações · 0 encontradas

As ligações de saída identificadas na página

Variáveis JavaScript · 3 encontradas

Variáveis JavaScript globais carregadas no objeto janela de uma página são variáveis declaradas fora das funções e acessíveis de qualquer parte do código dentro do âmbito atual

NomeTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Mensagens de registo da consola · 6 encontradas

Mensagens registadas na consola web

TipoCategoriaRegisto
errornetwork
URL
https://web3-electrum.com/
Texto
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/favicon.ico
Texto
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/team-member2.jpg
Texto
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/team-member1.jpg
Texto
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/script.js
Texto
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/favicon.ico
Texto
Failed to load resource: the server responded with a status of 403 ()

HTML

O corpo HTML em bruto da página

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cyber Security Services</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            color: #ffffff;
            background-color: #000000;
            margin: 0;
            padding: 0;
        }

        header {
            background-color: #000033;
            padding: 20px;
            text-align: center;
        }

        h1 {
            margin: 0;
        }

        nav ul {
            list-style-type: none;
            padding: 0;
        }

        nav ul li {
            display: inline;
            margin-right: 20px;
        }

        nav ul li a {
            text-decoration: none;
            color: #ffffff;
        }

        nav ul li a:hover {
            color: #cccccc;
        }

        section {
            padding: 40px;
        }

        h2 {
            color: #0000cc;
        }

        .service {
            margin-bottom: 30px;
        }

        .member {
            text-align: center;
        }

        .member img {
            border-radius: 50%;
            margin-bottom: 10px;
        }

        form label,
        form input,
        form textarea {
            display: block;
            margin-bottom: 10px;
        }

        form input,
        form textarea {
            width: 100%;
            padding: 10px;
            border: none;
            background-color: #000033;
            color: #ffffff;
        }

        form button {
            padding: 10px 20px;
            border: none;
            background-color: #0000cc;
            color: #ffffff;
            cursor: pointer;
        }

        form button:hover {
            background-color: #000066;
        }
    </style>
</head>
<body>
    <header>
        <h1>Cyber Security Services</h1>
        <nav>
            <ul>
                <li><a href="#services">Services</a></li>
                <li><a href="#team">Team</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>

    <section id="services">
        <h2>Our Services</h2>
        <div class="service">
            <h3>Penetration Testing</h3>
            <p>Identify vulnerabilities in your systems before attackers do with our comprehensive penetration testing services.</p>
        </div>
        <div class="service">
            <h3>Security Audits</h3>
            <p>Assess the security posture of your organization with our thorough security audits, identifying weaknesses and recommending solutions.</p>
        </div>
        <div class="service">
            <h3>Incident Response</h3>
            <p>Be prepared for cyber incidents with our incident response services, minimizing damage and restoring operations swiftly.</p>
        </div>
    </section>

    <section id="team">
        <h2>Our Team</h2>
        <div class="member">
            <img src="team-member1.jpg" alt="John Doe">
            <h3>John Doe</h3>
            <p>Security Analyst</p>
        </div>
        <div class="member">
            <img src="team-member2.jpg" alt="Jane Smith">
            <h3>Jane Smith</h3>
            <p>Cybersecurity Engineer</p>
        </div>
    </section>

    <section id="contact">
        <h2>Contact Us</h2>
        <p>Reach out to us for inquiries, consultations, or any other questions you might have.</p>
        <form>
            <label for="name">Name:</label>
            <input type="text" id="name" name="name" required="">
            <label for="email">Email:</label>
            <input type="email" id="email" name="email" required="">
            <label for="message">Message:</label>
            <textarea id="message" name="message" required=""></textarea>
            <button type="submit">Send</button>
        </form>
    </section>

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




   
</body></html>