1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OpenCortex</title>
<meta name="description" content="OpenCortex decrypt and decode.">
<meta name="authors" content="Simone Margaritelli / Thomas Van Iseghem">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./style.css"/>
<script src="./sha1.js"></script>
<script src="./main.js"></script>
</head>
<body>
<header>
<img src="./images/OpenCortex-logo.png" alt="OpenCortex-logo" class="header-logo">
<h1 class="header-title">OpenCortex file decryption</h1>
</header>
<div class="content">
<div class="serial-input">
<h3>Enter your Quad Cortex serial number</h3>
<p>(leave blank for global encrypted file)</p>
<input type="text" id="serial-input" />
</div>
<div class="file-upload">
<h3 class="file-upload-title">Encrypted file:</h3>
<label class="file-input-label upload-disabled" id="file-input-label" for="file-input">
<i class="fa-solid fa-cloud-arrow-up pr-5"></i>
<p>Choose File</p>
</label>
<input class="file-input" id="file-input" type="file" disabled>
</div>
</div>
<footer class="ethics-message">
<p>
We do not condone any misuse or illegal use of this tool as it is intended for educational purposes only. Everything is computed locally using JS and no data is being stored or sent to any server at any time.
</p>
<button class="ethics-message-ack">I understand</button>
</footer>
</body>
</html>
|