-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
56 lines (51 loc) · 2.72 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anti-De4dot</title>
<!-- Include Tailwind CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
<header class="bg-blue-500 text-white p-6">
<h1 class="text-4xl font-semibold">Anti-De4dot</h1>
<p class="mt-2">Safeguard .NET binaries from De4dot decompiler.</p>
</header>
<main class="container mx-auto p-6">
<section class="bg-white shadow-lg rounded-lg p-6 mb-6">
<h2 class="text-xl font-semibold mb-4">Features</h2>
<ul class="list-disc ml-6">
<li>You can drop the application or write the path to the file.</li>
<li>Random generation of type names: The code uses an instance of the "RandomNumberGenerator" class to generate an array of random bytes that are used to create unique type names.</li>
<li>Use of "using" blocks: The code uses "using" blocks to ensure that objects are properly cleaned up after use and to free resources such as memory used by the "RandomNumberGenerator" instance.</li>
</ul>
</section>
<section class="bg-white shadow-lg rounded-lg p-6 mb-6">
<h2 class="text-xl font-semibold mb-4">Screenshots</h2>
<img src="https://cdn.discordapp.com/attachments/1008195045960204349/1097785288748699648/New_Website_Blue_Mockup_Instagram_-_Laptop.png" alt="Anti-De4dot Screenshot" class="w-full rounded-lg">
</section>
<section class="bg-white shadow-lg rounded-lg p-6 mb-6">
<h2 class="text-xl font-semibold mb-4">License</h2>
<p>
<a href="https://choosealicense.com/licenses/mit/" class="text-blue-500 hover:underline">MIT License</a>
</p>
</section>
<section class="bg-white shadow-lg rounded-lg p-6 mb-6">
<h2 class="text-xl font-semibold mb-4">Authors</h2>
<p>
<a href="https://github.com/fl2on" class="text-blue-500 hover:underline">@fl2on</a>
</p>
</section>
<section class="bg-white shadow-lg rounded-lg p-6">
<h2 class="text-xl font-semibold mb-4">Support</h2>
<a href="https://paypal.me/nova355killer" class="bg-blue-700 text-white py-2 px-4 rounded-full text-lg inline-block m-2 hover:bg-blue-600">
PayPal
</a>
<a href="https://ko-fi.com/nova355" class="bg-blue-700 text-white py-2 px-4 rounded-full text-lg inline-block m-2 hover:bg-blue-600">
Ko-Fi
</a>
</section>
</main>
</body>
</html>