如何通过 C#.NET 在 C#.net 创建的 Exe 中注入代码
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 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.