A
A
azaznioo2015-04-16 12:36:59
Programming
azaznioo, 2015-04-16 12:36:59

How to protect a .Net program?

Hello, what are the ways to protect the code of the .net framework 4.5 program so that the pirate suffers at least a little? I am also interested in a code or a method for generating a key that I could check with the server. c# language.

Answer the question

In order to leave comments, you need to log in

4 answer(s)
D
Denis Kozlov, 2015-04-16
@deniskozlov

Visual Studio has a Dotfuscator tool ( https://msdn.microsoft.com/ru-ru/library/ms227240%... ), which, when compiled to IL, will confuse the code, change the name of the variables, so that they are not readable. After this, IL is no longer readable, and if you decompile
, for example, with the same dotPeek, then it’s almost impossible to parse the code there, but you can if you have strong nerves and a lot of time :)

V
Vladimir Martyanov, 2015-04-16
@vilgeforce

Google for "obfuscation".

T
Timur Sharipov, 2015-04-16
@shtr

I recommend IntelliLock .
I'm buying the second year, there are trial-mode settings.

A
AxisPod, 2015-04-17
@AxisPod

bit.ly/1yydxDq
PS I just don't understand how you can be so lazy as to ask questions like this when it's already been answered hundreds of times.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question