-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (71 loc) · 2.64 KB
/
index.html
File metadata and controls
84 lines (71 loc) · 2.64 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html>
<head>
<script>
{
let math = Math;
Object.defineProperty(window,"Math",{
value : math,
writeable : false
});
let rnd = Math.random;
Object.defineProperty(Math,"random",{
get : ()=>{ return rnd.bind(Math); },
writeble:false
});
let cl = console.log;
Object.defineProperty( console, "log", {
get : () => { return cl.bind(console); },
writeable : false
});
let ci = console.info;
Object.defineProperty( console, "info", {
get : () => { return ci.bind(console); },
writeable : false
});
let e = window.eval;
Object.defineProperty( window, "eval", {
get : () => {
//console.error("eval");
return e;
},
writeable : false
});
}
</script>
<meta charset="utf-8"/>
<script src="/js/core/import.js"></script>
<script src="/js/core/core.js"></script>
<script src="/js/core/SHA1.js"></script>
<script src="/js/control/jszip/dist/jszip.min.js"></script>
<link rel="stylesheet" href="/js/control/bootstrap/4.5.2/bootstrap.min.css" />
<script src="/js/control/jquery/3.5.1/jquery-3.5.1.slim.min.js"></script>
<script src="/js/control/popper/1.16.1/popper.min.js"></script>
<script src="/js/control/bootstrap/4.5.2/bootstrap.min.js"></script>
<link rel="stylesheet" href="/js/control/chart.js/Chart.css" />
<script src="/js/control/chart.js/Chart.js"></script>
<script src="/js/control/ejs/ejs.min.js"></script>
<script>
var require={ paths : { vs : '/js/control/monaco/dev/vs'} };
</script>
<script src="/js/control/monaco/dev/vs/loader.js"></script>
<title>Webshell</title>
<style>
body {
background-color:#555;
}
</style>
<script>
UI.init(async ()=>{
UI.Body.canSelect(true);
var schema = await UI.Body.elementPushPacketAsync(`
<Component id="app" src="/app.superml"></Component>
`);
});
</script>
<link rel="icon" href="favicon.png">
<link rel="shortcut icon" href="favicon.png">
</head>
<body>
</body>
</hmtl>