-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (52 loc) · 2.34 KB
/
index.html
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
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Convert DuckyScript to Keyboard Scripts">
<meta name="keywords" content="bad usb, rubber ducky, esp32 hid, ble ducky, HackerNowful, convert, script, digispark">
<title>LetchuScriptor</title>
<link rel="icon" href="logo.png" type="image/gif" sizes="16x16">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<h1>LetchuScriptor</h1>
<p>by Letchu Pkt</p>
</div>
<!-- Main Content -->
<div class="container">
<div class="about">
<p>Convert DuckyScript scripts to Keyboard scripts that you can use with various platforms.</p>
<p>Why DuckyScript and why Keyboard? DuckyScript is simple and easy to learn and has become a standard in the BadUSB and pentesting community.
Keyboard library is a standard library for Arduino which makes it compatible with various Arduino boards including Digispark and ESP32.</p>
</div>
<!-- Input and Output Textareas -->
<div class="input-output">
<textarea id="inputBox" placeholder="Enter DuckyScript to convert..."></textarea>
<center>
<select id="platformSelect">
<option value="" disabled selected>Select your board</option>
<option value="arduino">Arduino</option>
<option value="digispark">Digispark</option>
<option value="esp32">ESP32</option>
</select>
</center>
<center>
<button class="btn5" onclick="if(document.getElementById('inputBox').value != ''){convert()}">Convert</button>
</center>
<textarea id="outputBox" placeholder="Converted Keyboard script will appear here. Paste it into the Arduino IDE to load it onto your board."></textarea>
</div>
</div>
<!-- Footer -->
<footer>
<p>
<span id="contact">GitHub:
<a href="https://github.com/letchupkt">https://github.com/letchupkt</a>
</span>
</p>
</footer>
</body>
</html>