Skip to content

Added batch modules loading using a wildcard#481

Open
ozaiats wants to merge 3 commits into
mkaring:masterfrom
ozaiats:feature/batch_modules_loading
Open

Added batch modules loading using a wildcard#481
ozaiats wants to merge 3 commits into
mkaring:masterfrom
ozaiats:feature/batch_modules_loading

Conversation

@ozaiats

@ozaiats ozaiats commented May 4, 2022

Copy link
Copy Markdown

The change allows using a wildcard to batch load modules that need to be obfuscated.
Usage example:

	<module path="*.dll"                                         >
	    <rule preset="none" pattern="true" inherit="false">
			<protection id="ctrl flow" />
			<protection id="invalid metadata" />
			<protection id="ref proxy" />
			<protection id="rename" />
			<protection id="resources" />
		</rule>
	</module>

@mkaring what do you think?

@AppVeyorBot

Copy link
Copy Markdown

Build ConfuserEx 986 completed (commit 55008ed32d by @)

Comment thread Confuser.Core/Project/ConfuserProject.cs Outdated
Comment thread Confuser.Core/Project/ConfuserProject.cs Outdated
@AppVeyorBot

Copy link
Copy Markdown

Build ConfuserEx 987 completed (commit 9c41530ab1 by @)

mcpolo99 added a commit to mcpolo99/ConfuserExx that referenced this pull request Jun 7, 2026
) (#35)

Cherry-pick of mkaring#481 — allows using wildcards like
*.dll in module paths to batch-load modules from the base directory.

The Load method now accepts an optional baseDirRoot parameter to
resolve relative base directory paths. New internal helpers AddModule,
IsWildcard, and BatchLoadModules handle wildcard expansion using
Directory.GetFiles with TopDirectoryOnly search.

Co-authored-by: RandomCrocodile <[email protected]>
mcpolo99 added a commit to mcpolo99/ConfuserExx that referenced this pull request Jun 10, 2026
* fix(ci): add pre-release branch to CI triggers (#36)

Co-authored-by: RandomCrocodile <[email protected]>

* fix(renamer): fix WPF relative resource renaming (#30)

* fix WPF relative resource renaming

* Update Confuser.Renamer/Analyzers/WPFAnalyzer.cs

Co-authored-by: Copilot <[email protected]>

---------

Co-authored-by: Ryan <[email protected]>
Co-authored-by: Copilot <[email protected]>

* fix(core): support .NET Standard library obfuscation (#31)

* Add types in referencing assembly to netstandard DLL.

Types defined in AssemblyRefs of netstandard (e.g. mscorlib) will be moved to netstandard. Therefore, subsequence ModuleDef.Find will return AssemblyRef to netstandard. As a result, the confused module will only reference to netstandard.

* Remove AssemblyAttributes.PA_NoPlatform from assembly.

Net standard project may refer to NuGet package (e.g. System.ComponentModel.Composition) in order to use the Framework libraries. However, DLL in NuGet may have this attribute set but the actual Framework DLL does not. As a result, dnlib treats them as different assemblies and confused DLL will reference to two identical assemblies.

* Fix assembly reference to assemblies that hidden by netstandard assembly.

TargetModule.GetAssemblyRef returns null if type is defined in assembly hidden by netstandard. This change searches assemblies hidden by netstandard and returns the fixed type reference.

* Returns the method from CorLib of module to be confused instead from runtime.

MSBuild may runs on .net framework and runtime help will reference to mscorlib instead of netstandard. This change try resolve it from CorLib before from runtime type.

---------

Co-authored-by: KC Ip <[email protected]>

* fix(core): don't create PDB files when debug=false (upstream mkaring#532) (#32)

Co-authored-by: RandomCrocodile <[email protected]>

* fix(renamer): fix generic name parsing null case (upstream mkaring#516) (#33)

When preserveGenericParams is true but name is null or empty,
ParseGenericName would crash. Add a null/empty guard to prevent this.

Cherry-pick of mkaring#516.

Co-authored-by: RandomCrocodile <[email protected]>

* 修复控制流保护在#153的错误 (#34)

注意到 mkaring 在 1.4.0版本中对控制流保护做出了误操作(272行)
将src => statementLast.Contains(src),错误修改成了src => !statementLast.Contains(src),导致了保护后的程序出现了错误的循环,这里特此做出修复!

Co-authored-by: wujiayang2007 <[email protected]>

* feat(core): add wildcard module loading in .crproj (upstream mkaring#481) (#35)

Cherry-pick of mkaring#481 — allows using wildcards like
*.dll in module paths to batch-load modules from the base directory.

The Load method now accepts an optional baseDirRoot parameter to
resolve relative base directory paths. New internal helpers AddModule,
IsWildcard, and BatchLoadModules handle wildcard expansion using
Directory.GetFiles with TopDirectoryOnly search.

Co-authored-by: RandomCrocodile <[email protected]>

* fix(renamer): skip renaming of DataContract/DataMember/JsonProperty attributed types and members (#38)

Detect serialization-related attributes and exclude decorated types and
members from renaming to prevent WCF/DataContract serialization breakage
at runtime.

Attributes now checked:
- DataContractAttribute on types
- DataMemberAttribute on fields and properties
- EnumMemberAttribute on enum fields

Fixes mcpolo99/private-ConfuserEx#9
Upstream: mkaring#147

Co-authored-by: RandomCrocodile <[email protected]>

* fix(renamer): preserve anonymous type constructor arg names for JSON serialization (#39)

Co-authored-by: RandomCrocodile <[email protected]>

* feat(cli): add --snkey and --snkeypass options for CI/CD signing (#40)

Co-authored-by: RandomCrocodile <[email protected]>

* fix(runtime): catch ReflectionTypeLoadException in packer startup (#41)

Co-authored-by: RandomCrocodile <[email protected]>

* fix(protections): use non-throwing resolution in ref proxy mild mode for external types (#42)

Co-authored-by: RandomCrocodile <[email protected]>

* fix(renamer): handle FnPtr type signatures instead of throwing NotSupportedException (#43)

Co-authored-by: RandomCrocodile <[email protected]>

* fix(renamer): skip renaming WPF theme resources in themes/Generic.xaml (#44)

Co-authored-by: RandomCrocodile <[email protected]>

* fix(protections): skip unresolvable external types in ref proxy phase (#45)

Co-authored-by: RandomCrocodile <[email protected]>

* feat(analysis): enable .NET analyzers and configure severity rules (#50)

Co-authored-by: RandomCrocodile <[email protected]>

* feat(analysis): add Roslynator.Analyzers for broader code quality coverage (#51)

Co-authored-by: RandomCrocodile <[email protected]>

* fix(analysis): resolve analyzer warnings and suppress noisy rules (#52)

Co-authored-by: RandomCrocodile <[email protected]>

* fix(core): improve error message for .NET 6+ native host .exe files (#19) (#56)

Co-authored-by: RandomCrocodile <[email protected]>

* docs: update README for ConfuserExx fork — fix links, add features, modernize (#57)

Co-authored-by: RandomCrocodile <[email protected]>

* feat(core): tolerate missing dependencies — warn instead of crash (#4) (#58)

Co-authored-by: RandomCrocodile <[email protected]>

* feat(renamer): add opt-in overload confusion — rename methods with different signatures to same name (#25)

* feat(ci): add pre-release builds with downloadable binaries (#pre-release) (#61)

Co-authored-by: RandomCrocodile <[email protected]>

* feat(core): auto-detect .NET runtime paths for assembly resolution (#55)

* feat(core): auto-detect .NET Core/5+/6/7/8+ runtime paths for assembly resolution (#12)

* fix(core): probe all installed .NET runtime versions for cross-version dependencies (#12)

* refactor(core): add logging to DotNetCorePathResolver, address review feedback (#12)

---------

Co-authored-by: RandomCrocodile <[email protected]>

---------

Co-authored-by: RandomCrocodile <[email protected]>
Co-authored-by: Ryan <[email protected]>
Co-authored-by: Copilot <[email protected]>
Co-authored-by: KC Ip <[email protected]>
Co-authored-by: wujiayang2007 <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants