• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

.NET Obfuscar v2.2.32 - Open source obfuscation tool for .NET assemblies

Status
Not open for further replies.

itsMe

*KillmeMories*
Staff member
Administrator
Super Moderator
Hacker
Specter
Crawler
Shadow
Joined
Jan 8, 2019
Messages
56,602
Solutions
2
Reputation
32
Reaction score
100,445
Points
2,313
Credits
32,540
‎6 Years of Service‎
 
76%
obfuscar-3_x7omsv.png


Obfuscar is a basic obfuscator for .NET assemblies. It uses massive overloading to rename metadata in .NET assemblies (including the names of methods, properties, events, fields, types, and namespaces) to a minimal set, distinguishable in most cases only by signature.

For example, if a class contains only methods that accept different parameters, they can all be renamed ‘A’. If another method is added to the class that accepts the same parameters as an existing method, it could be named ‘a’.

It makes the decompiled code very difficult to follow.

Basically, Obfuscar scrambles the metadata in a set of assemblies. It renames everything to the minimal set of names that can be used to identify them, given signatures and type information. Since these new names are shorter than the old ones, it also dramatically shrinks the executable size.

Feature

    Simple Configuration
    Hide everything private, while keeping everything public. You can achieve such simply via default settings.
    Name Obfuscation
    Hide class/method/property/event names that you don’t want to expose. This is irreversible.
    String Compression
    String contents can be compressed so that end-users won’t easily learn them. However, this is reversible by certain tools.

Changelog v2.2.32

    Bumped dependencies.
    Removed .NET Core 2.1 support.
    Added .NET 6 support.
    Fixed #276 by merging #342 .


To see this hidden content, you must like this content.
 
Status
Not open for further replies.
Back
Top