- 扫描 ID:
- 8a6fa492-b6ff-4e0f-a435-8a55913c319b已完成
- 提交的 URL:
- https://web3-electrum.com/已重定向
- 报告完成时间:
链接 · 找到 0 个
从页面中识别出的传出链接
JavaScript 变量 · 找到 3 个
在页面窗口对象上加载的全局 JavaScript 变量是在函数外部声明的变量,可以从当前范围内的代码中的任何位置访问
名称 | 类型 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
控制台日志消息 · 找到 6 条
记录到 Web 控制台的消息
类型 | 类别 | 记录 |
---|---|---|
error | network |
|
error | network |
|
error | network |
|
error | network |
|
error | network |
|
error | network |
|
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>