Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

void-stack/NET-Reactor-String-Cleaner-6.7.0.0

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NET Reactor String Cleaner 6.7.X.X (Use Cflow remover first)

What is .NET Reactor?

.NET Reactor is a powerful code protection and software licensing system for software written for the .NET Framework, and supports all languages that generate .NET assemblies.

What is String Encryption?

String encryption makes it difficult for a hacker to understand your code and to attempt a code patch of your assembly, as he will be unable to identify the text of messages or other useful strings, making it much more difficult to identify where to patch your code. This feature has a built-in protection against assembly manipulation.

  • Control Flow Remover for .NET Reactor 6.7.0.0: Click me!

Showcase

Before

public static void Main(string[] args)
{
	Console.WriteLine(rxJ1soFU9jN03iRO2i.xQI1in9X2(0));
	Console.ReadKey();
}

After

public static void Main(string[] args)
{
    Console.WriteLine("Hello, type anything.");
    Console.ReadKey();
}

Credits