-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
71 lines (61 loc) · 2.23 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
70
71
<!-- Lysis Web Decompiler Wrapper
-
- Copyright (C) 2017 Michael Flaherty // michaelwflaherty.com // michaelwflaherty@me.com
-
- This program is free software: you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the Free
- Software Foundation, either version 3 of the License, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful, but WITHOUT
- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License along with
- this program. If not, see http://www.gnu.org/licenses/.
-
-->
<!DOCTYPE html>
<html>
<head>
<title>Lysis SourceMod/AMX Decompiler</title>
<link rel="stylesheet" href="styles.css">
<div class="std">
<br>
<p>
<center>
<h1>Lysis Decompiler</h1>
</center>
</p>
</div>
<hr width="800">
</head>
<body>
<div class="std">
<div class="alert">
<span class="closebtn" onclick="this.parentElement.style.display='none';">×</span>
Tip: Decompiled plugins are not meant to be recompiled!
</div>
<h2>
Lysis is a sourcepawn/pawn plugin decompiler which attempts to convert binary files to human-readable source code.
</h2>
<form action="upload.php" method="post" enctype="multipart/form-data">
Select a plugin to decompile (*.smx or *.amxx):
<br>
<br>
<input type="file" name="fileToUpload" id="fileToUpload">
<input type="submit" value="Decompile" name="submit">
<br>
<br>
<input type="checkbox" value="Output to file" name="fileOutput"><label for="fileOutput">Download file output</label>
</form>
<br>
<br>
<p>
<font size="2">The lysis decompiler used was <a href="https://github.com/peace-maker">peace-maker</a>'s java port that is available on <a href="https://github.com/peace-maker/lysis-java">GitHub</a>.</font>
<br>
<font size="2">This software is free and open source, visit our github <a href="https://github.com/Headline22/Lysis-Web">here</a> and contribute.</font>
</p>
</div>
</body>
</html>