Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
qzxtu committed Sep 4, 2023
1 parent a6c70eb commit d55652c
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,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/tailwindcss@2.2.19/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/qzxtu" class="text-blue-500 hover:underline">@qzxtu</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>

0 comments on commit d55652c

Please sign in to comment.