Téléverser les fichiers vers "/"
This commit is contained in:
93
demo-python.html
Normal file
93
demo-python.html
Normal file
@@ -0,0 +1,93 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>DÉMO : Python BruteForce Tool - BARUA Aditta</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css" rel="stylesheet">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto+Mono:wght@400;700&display=swap" rel="stylesheet">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r128/three.min.js"></script>
|
||||
|
||||
<style>
|
||||
.demo-section {
|
||||
min-height: 80vh;
|
||||
padding: 80px 10%;
|
||||
background: rgba(0, 0, 0, 0.7);
|
||||
border-radius: 0;
|
||||
margin-bottom: 0;
|
||||
backdrop-filter: blur(8px);
|
||||
}
|
||||
.cli-container {
|
||||
background: rgba(0, 0, 0, 0.9);
|
||||
border: 1px solid #00ffcc;
|
||||
border-radius: 8px;
|
||||
padding: 20px;
|
||||
font-family: 'Roboto Mono', monospace;
|
||||
color: #00ffcc;
|
||||
white-space: pre-wrap;
|
||||
box-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
|
||||
max-width: 900px;
|
||||
margin: 40px auto;
|
||||
}
|
||||
.cli-output {
|
||||
color: #fff;
|
||||
}
|
||||
.cli-input {
|
||||
color: #00ffcc;
|
||||
}
|
||||
.cli-success {
|
||||
color: #ff0077;
|
||||
font-weight: bold;
|
||||
}
|
||||
.cli-info {
|
||||
color: #00aaff;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<canvas id="background-canvas"></canvas>
|
||||
<header id="page-header"></header>
|
||||
|
||||
<main>
|
||||
<section id="demo-python" class="demo-section" data-aos="fade-up">
|
||||
<h2>Simulation : Python BruteForce Tool</h2>
|
||||
<p class="subtitle">Illustration d'un outil de sécurité ciblant un service HTTP avec gestion multithread.</p>
|
||||
|
||||
<div class="cli-container">
|
||||
<span class="cli-input">python3 bruteforce.py -t http://test.com/login -w dict_secu.txt -u "admin" --threads 10</span><br><br>
|
||||
<span class="cli-info">[INFO]</span> Démarrage de l'attaque sur http://test.com/login<br>
|
||||
<span class="cli-info">[INFO]</span> 10 threads actifs. Dictionnaire : dict_secu.txt (15,000 mots)<br>
|
||||
<span class="cli-output">Tentative : a... [FAILED]</span><br>
|
||||
<span class="cli-output">Tentative : b... [FAILED]</span><br>
|
||||
<span class="cli-output">Tentative : c... [FAILED]</span><br>
|
||||
<span class="cli-output">...</span><br>
|
||||
<span class="cli-output">Tentative : password123... [FAILED]</span><br>
|
||||
<span class="cli-output">Tentative : MonCodeSecret1... [FAILED]</span><br>
|
||||
<span class="cli-info">[INFO]</span> Temps écoulé : 4.25s. Taux : 2300 tentatives/s.<br>
|
||||
<span class="cli-success">[SUCCESS]</span> Mot de passe trouvé : <span class="cli-success">CIEL2025</span><br>
|
||||
<span class="cli-success">[SUCCESS]</span> Utilisateur : admin | Code : 200 OK<br>
|
||||
</div>
|
||||
|
||||
<h3 style="margin-top: 50px;">Détails Techniques</h3>
|
||||
<ul style="list-style-type: square; margin-left: 30px; line-height: 1.8;">
|
||||
<li>**Multithreading :** Utilisation du module `threading` en Python pour accélérer les requêtes.</li>
|
||||
<li>**Robustesse :** Gestion des erreurs de connexion et des timeouts pour éviter le blocage.</li>
|
||||
<li>**Interface :** Programme CLI conçu pour être rapide et intuitif pour un pentester.</li>
|
||||
</ul>
|
||||
|
||||
<p style="text-align: center; margin-top: 80px; opacity: 0.6;">
|
||||
Ceci est une simulation d'exécution conçue par Aditta Barua pour illustrer l'efficacité du programme Python.
|
||||
<br><a href="projects.html" style="color: #00c8ff;">Retour aux Projets</a>
|
||||
</p>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer id="page-footer"></footer>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"></script>
|
||||
<script>AOS.init();</script>
|
||||
<script src="script.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user