Skip to content

Commit 6d7d742

Browse files
authored
Add files via upload
1 parent 4abbd4d commit 6d7d742

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

multi_cipher_v2_5.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<head>
55
<meta charset="UTF-8">
6-
<title>🔐 Multi-Cipher Cracker v2.5</title>
6+
<title>🔐 Multi-Cipher Cracker v2.5.1</title>
77
<style>
88
* { box-sizing: border-box; }
99
body {
@@ -124,7 +124,7 @@
124124

125125
<div class="container">
126126
<h1>🔐 Multi-Cipher Cracker</h1>
127-
<div class="version">v2.5 <span class="new-badge">3 Workers + Live Results</span></div>
127+
<div class="version">v2.5.1 <span class="new-badge">Force 2-3-4 + Live</span></div>
128128
<p class="subtitle">
129129
<span class="worker-status">
130130
<span class="worker-dot" id="workerDot"></span>
@@ -861,8 +861,9 @@ <h2>⚙️ Options</h2>
861861
let keyLengths;
862862
if (keyLengthVal === 'auto') {
863863
const analysis = analyzeKeyLength(text);
864-
keyLengths = analysis.filter(a => a.percentage >= 1).map(a => a.length);
865-
if (keyLengths.length === 0) keyLengths = [3, 4, 5];
864+
const suggested = analysis.filter(a => a.percentage >= 1).map(a => a.length);
865+
// TOUJOURS tester 2, 3, 4 : brute force rapide et l'analyse statistique peut les rater
866+
keyLengths = [...new Set([2, 3, 4, ...suggested])].sort((a, b) => a - b);
866867
} else {
867868
keyLengths = [parseInt(keyLengthVal)];
868869
}

0 commit comments

Comments
 (0)