https://web3-electrum.com/

제출된 URL:
https://v2-electrum.com/리디렉션됨
보고서 완료:

링크 · 0개 결과

페이지에서 식별된 외부 링크

JavaScript 변수 · 3개 결과

페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다

이름유형
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

콘솔 로그 메시지 · 6개 결과

웹 콘솔에 기록된 메시지

유형카테고리로그
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/team-member1.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/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>