Added batch modules loading using a wildcard#481
Open
ozaiats wants to merge 3 commits into
Open
Conversation
|
✅ Build ConfuserEx 986 completed (commit 55008ed32d by @) |
KvanTTT
reviewed
May 4, 2022
|
✅ Build ConfuserEx 987 completed (commit 9c41530ab1 by @) |
This was referenced Jun 7, 2026
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]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The change allows using a wildcard to batch load modules that need to be obfuscated.
Usage example:
@mkaring what do you think?