-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
index.html
69 lines (65 loc) · 1.73 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
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript Deobfuscator</title>
<script defer data-domain="willnode.github.io" src="https://stat.wellosoft.net/js/plausible.js"></script>
<style>
* {
box-sizing: border-box;
}
body {
height: 100vh;
margin: 0px;
display: flex;
flex-direction: column;
overflow: hidden;
}
#container {
flex-grow: 1;
}
#navbar {
padding: 2px 8px;
display: flex;
align-items: center;
}
button {
background-color: white;
padding: 5px 10px;
margin: 0px 5px;
border: 1px solid black;
cursor: pointer;
}
button:hover {
background-color: gainsboro;
}
</style>
</head>
<body>
<div id="navbar">
<span>Formatting Tools: </span>
<button onclick="beautify()">Format Document</button>
<span> Simplify: </span>
<button onclick="simplifyString()">String</button>
<button onclick="simplifyNumber()">Number</button>
<button onclick="simplifyAccess()">Object Access</button>
<button onclick="simplifyHex()">Hex Name</button>
<span style="flex-grow:1"></span>
<button onclick="gotoRepo()">Help</button>
</div>
<div id="navbar">
<span>Evaluating Tools: </span>
<button onclick="evalPush()">Push</button>
<button onclick="evalPop()">Pop</button>
<button onclick="evalStr()">Eval Selected</button>
<button onclick="evalAuto()">Auto Eval</button>
<button onclick="syncVar()">Sync Vars</button>
<span style="flex-grow:1"></span>
<span>(Open developer tools for useful information)</span>
</div>
<div id="container"></div>
<script type="module" src="./src/index.js"></script>
</body>
</html>