This commit is contained in:
Brother-x86
2024-12-05 22:28:35 +01:00
parent a30f3748dc
commit 625ebb180e
3 changed files with 1 additions and 106 deletions
+1 -1
View File
@@ -594,7 +594,7 @@ list: ["DEBUG-W10"], operator: OR }), DomainJoin(DomainJoin { list: ["sevenkingd
And we got a session in Sliver !
![Sliver session](sliver_session.png?raw=true "Kaboum!")
![Sliver session](doc/sliver_session.png?raw=true "Kaboum!")
## Stop Antivirus

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 17 KiB

-105
View File
@@ -1,105 +0,0 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - Maintenance Industrielle</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f3f4f6;
margin: 0;
padding: 0;
}
.login-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.login-box {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
width: 100%;
max-width: 400px;
padding: 20px;
}
.login-box h1 {
text-align: center;
color: #003366;
font-size: 24px;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
color: #333333;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 10px;
border: 1px solid #cccccc;
border-radius: 4px;
font-size: 14px;
}
input[type="submit"] {
width: 100%;
padding: 10px;
background-color: #003366;
color: #ffffff;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #0055a5;
}
.footer {
text-align: center;
margin-top: 10px;
font-size: 12px;
color: #666666;
}
</style>
</head>
<body>
<div class="login-container">
<div class="login-box">
<h1>Connexion</h1>
<form action="process_login.php" method="POST">
<div class="form-group">
<label for="username">Nom d'utilisateur</label>
<input type="text" id="username" name="username" placeholder="Entrez votre nom d'utilisateur" required>
</div>
<div class="form-group">
<label for="password">Mot de passe</label>
<input type="password" id="password" name="password" placeholder="Entrez votre mot de passe" required>
</div>
<input type="submit" value="Se connecter">
</form>
<div class="footer">
© 2024 Maintenance Industrielle - Tous droits réservés.
</div>
</div>
</div>
</body>
</html>