https://web3-electrum.com/

送信済みURL:
https://v2-electrum.com/リダイレクト済み
レポート終了日:

リンク · 0件検出

ページから特定された発信リンク

JavaScript変数 · 3件検出

ページのウィンドウオブジェクトにロードされたグローバルのJavaScript変数は関数以外の場所で宣言された変数で、現在のスコープ内であればコードのどこからでもアクセス可能です

名前規模
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

コンソールログメッセージ · 6件検出

Webコンソールにログ記録されたメッセージ

規模分類ログ
errornetwork
URL
https://web3-electrum.com/
テキスト
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/favicon.ico
テキスト
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/team-member2.jpg
テキスト
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/script.js
テキスト
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/team-member1.jpg
テキスト
Failed to load resource: the server responded with a status of 403 ()
errornetwork
URL
https://web3-electrum.com/favicon.ico
テキスト
Failed to load resource: the server responded with a status of 403 ()

HTML

未加工のHTMLページ本文

<!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>