如何通过 C#.NET 在 C#.net 创建的 Exe 中注入代码

发布于 2024-08-12 00:50:20 字数 236 浏览 1 评论 0原文

我在 C#.net 中创建了一个表单,要求提供密钥并检查有效性(到期日期)。我将此表单作为我的应用程序中的第一个运行表单。第一次获取密钥时,每次加载时都会检查通过注册表中的密钥保存的过期策略。这个表格工作正常。但现在我想创建另一个应用程序,它浏览用 C# 或其他语言创建的任何 exe 并生成新的 exe(使用我的验证表单作为启动表单)。 意味着我想创建一个软件,将我的表单作为启动表单放置到任何 Exe 中。这样它就可以作为任何应用程序(exe)的反盗版。

I have created a form in C#.net which ask for key and check validity (expiry date). i place this form as first running form in my application. first time it takes key and every next time loading it check for expiration policy which saved through key in registry. this form is working fine. but now i want to create a another application which browse any exe created in C# or other language and generate new exe (with my validation form as startup form).
means i want to create software which place my form as startup form to any Exe. so that it can work as anti piracy for any application (exe).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

衣神在巴黎 2024-08-19 00:50:20

您可以使用 Cecil 库分析和修改 .NET 应用程序。
http://www.mono-project.com/Cecil

您需要添加表单类。然后记住原来加载的类
应用。从您的表单加载它,并将启动更改为您的表单。

You can analyse and modify .NET applications with the Cecil Library.
http://www.mono-project.com/Cecil

You need to add your form class. Then remember the class that gets loaded in the original
application. Load that instead from your form and change the startup to your form.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文