- ID scansione:
- 37260e14-3269-4882-bacf-a2bf6a552741Fatto
- URL inviato:
- https://v2-electrum.com/Reindirizzato
- Report terminato:
Link · 0 trovati
I link in uscita identificati dalla pagina
Variabili JavaScript · 3 trovate
Le variabili JavaScript globali caricate sull'oggetto finestra di una pagina sono variabili dichiarate all'esterno delle funzioni e accessibili da qualsiasi punto del codice nell'ambito corrente
Nome | Tipo |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Messaggi di log della console · 6 trovati
Messaggi registrati nella console Web
Tipo | Categoria | Log |
---|---|---|
error | network |
|
error | network |
|
error | network |
|
error | network |
|
error | network |
|
error | network |
|
HTML
Il corpo HTML non elaborato della pagina
<!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>