在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → .NET程序集的混淆工具源码(Obfuscar)

.NET程序集的混淆工具源码(Obfuscar)

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:5.81M
  • 下载次数:0
  • 浏览次数:9
  • 发布时间:2024-05-09
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: .NET Obfuscar 混淆

实例介绍

【实例简介】

【实例截图】
【核心代码】
文件清单
└── obfuscar-1650cd6edc75861fa0819712db15ef238462e462
    ├── Baml
    │   ├── Baml.csproj
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── build
    │   └── obfuscar.props
    ├── CODE_OF_CONDUCT.md
    ├── Console
    │   ├── app.config
    │   ├── Obfuscar.Console.csproj
    │   ├── Program.cs
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── dist.pack.bat
    ├── dist.publish2nugetdotorg.bat
    ├── GlobalTools
    │   ├── GlobalTools.csproj
    │   └── Program.cs
    ├── install.nuget.bat
    ├── LICENSE
    ├── Obfuscar
    │   ├── AssemblyCache.cs
    │   ├── AssemblyInfo.cs
    │   ├── EventKey.cs
    │   ├── EventTester.cs
    │   ├── FieldKey.cs
    │   ├── FieldTester.cs
    │   ├── Filter.cs
    │   ├── Helper.cs
    │   ├── Helpers
    │   │   ├── AssemblyDefinitionExtensions.cs
    │   │   ├── EventDefinitionExtensions.cs
    │   │   ├── FieldDefinitionExtensions.cs
    │   │   ├── ILProcessorExtensions.cs
    │   │   ├── MemberDefinitionExtensions.cs
    │   │   ├── MethodDefinitionExtensions.cs
    │   │   ├── PropertyDefinitionExtensions.cs
    │   │   ├── TypeDefinitionExtensions.cs
    │   │   └── TypeReferenceExtensions.cs
    │   ├── InheritMap.cs
    │   ├── LdStrInstructionReplacement.cs
    │   ├── LICENSE
    │   ├── ListHelper.cs
    │   ├── MapWriter.cs
    │   ├── MethodKey.cs
    │   ├── MethodTester.cs
    │   ├── NameGroup.cs
    │   ├── NameMaker.cs
    │   ├── NameParamSig.cs
    │   ├── NamespaceTester.cs
    │   ├── Obfuscar.csproj
    │   ├── ObfuscarException.cs
    │   ├── ObfuscateAttribute.cs
    │   ├── ObfuscationMap.cs
    │   ├── Obfuscator.cs
    │   ├── ParamSig.cs
    │   ├── PredicateCollection.cs
    │   ├── Project.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── PropertyKey.cs
    │   ├── PropertyTester.cs
    │   ├── Settings.cs
    │   ├── TypeKey.cs
    │   ├── TypeNameCache.cs
    │   ├── TypeTester.cs
    │   └── Variables.cs
    ├── Obfuscar.nuspec.txt
    ├── obfuscar.png
    ├── Obfuscar.sln
    ├── Potion-icon.png
    ├── pre.build.ps1
    ├── Raindropmemory-Legendora-Potion.ico
    ├── readme.md
    ├── release.ps1
    ├── sign.ps1
    ├── test.bat
    ├── Tests
    │   ├── AssemblyD.dll
    │   ├── AssemblyF.dll
    │   ├── AssemblyG.dll
    │   ├── AssemblyHelper.cs
    │   ├── AttributeTests.cs
    │   ├── AutoSkipTypeTests.cs
    │   ├── BamlTests.cs
    │   ├── CleanPoolTests.cs
    │   ├── CustomAttributeTests.cs
    │   ├── CustomAttributeWithArgTests.cs
    │   ├── default.runsettings
    │   ├── DelaySigned.dll
    │   ├── DependencyTests.cs
    │   ├── DockPanelSuiteTests.cs
    │   ├── FilterTests.cs
    │   ├── FSharp.Compiler.dll
    │   ├── FSharp.Core.dll
    │   ├── FSharpTests.cs
    │   ├── FunctionOverridingTests.cs
    │   ├── HideStringsTests.cs
    │   ├── IncludeTests.cs
    │   ├── Input
    │   │   ├── AssemblyA.cs
    │   │   ├── AssemblyB.cs
    │   │   ├── AssemblyForCleanPoolClass.cs
    │   │   ├── AssemblyForCleanPoolInterface.cs
    │   │   ├── AssemblyForSigning2.cs
    │   │   ├── AssemblyForSigning.cs
    │   │   ├── AssemblyWithAttrs.cs
    │   │   ├── AssemblyWithClosedOverrideGeneric.cs
    │   │   ├── AssemblyWithCustomAttr.cs
    │   │   ├── AssemblyWithCustomAttrTypeArg.cs
    │   │   ├── AssemblyWithEnums.cs
    │   │   ├── AssemblyWithEvents.cs
    │   │   ├── AssemblyWithGenericOverrides2.cs
    │   │   ├── AssemblyWithGenericOverrides.cs
    │   │   ├── AssemblyWithInterfaces2.cs
    │   │   ├── AssemblyWithInterfaces.cs
    │   │   ├── AssemblyWithNestedTypes2.cs
    │   │   ├── AssemblyWithNestedTypes.cs
    │   │   ├── AssemblyWithOverrides.cs
    │   │   ├── AssemblyWithProperties.cs
    │   │   ├── AssemblyWithSpecializedGenerics.cs
    │   │   ├── AssemblyWithStrings.cs
    │   │   ├── AssemblyWithTypesAttrs2.cs
    │   │   ├── AssemblyWithTypesAttrs3.cs
    │   │   ├── AssemblyWithTypesAttrs.cs
    │   │   ├── AssemblyWithTypes.cs
    │   │   ├── ManyStrings.cs
    │   │   ├── ManyStrings.tt
    │   │   ├── public.snk
    │   │   ├── SigningKey.snk
    │   │   ├── SkipVirtualMethodTest.cs
    │   │   ├── TestIncludeModule.xml
    │   │   └── TestInclude.xml
    │   ├── InterfaceTests.cs
    │   ├── Microsoft.Practices.ServiceLocation.dll
    │   ├── Microsoft.Practices.Unity.dll
    │   ├── NetStandard20.dll
    │   ├── NetStandardTests.cs
    │   ├── ObfuscarTests.csproj
    │   ├── ObfuscationAttributeTests.cs
    │   ├── OutPathTests.cs
    │   ├── PathFailureTests.cs
    │   ├── PortableTests.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── ResourcesTests.cs
    │   ├── SettingsTests.cs
    │   ├── SharpSnmpLib.NetStandard.dll
    │   ├── SharpSnmpLib.Portable.dll
    │   ├── SigningTests.cs
    │   ├── SkipEnumTests.cs
    │   ├── SkipEventTests.cs
    │   ├── SkipNestedTypeTests.cs
    │   ├── SkipPropertyTests.cs
    │   ├── SkipVirtualMethodTest.cs
    │   ├── SpecializedGenericsTests.cs
    │   ├── System.ComponentModel.TypeConverter.dll
    │   ├── System.Windows.Controls.DataVisualization.Toolkit.dll
    │   ├── TestClasses2.cs
    │   ├── TestClasses.cs
    │   ├── TesterTests.cs
    │   ├── TestHelper.cs
    │   ├── TestIncludeModule.xml
    │   ├── TestInclude.xml
    │   ├── UnityTests.cs
    │   ├── VariablesTests.cs
    │   ├── WeifenLuo.WinFormsUI.Docking.dll
    │   ├── WildcardTests.cs
    │   ├── WindowsFormsApplication1.exe
    │   ├── WpfApplication1.dll
    │   ├── WPFToolkit.dll
    │   ├── WpfToolkitTests.cs
    │   └── xunit.runner.json
    └── ThirdParty
        └── ILSpy

15 directories, 161 files

标签: .NET Obfuscar 混淆

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警