├── Advanced Cflow Protection ├── Block.cs ├── BlockParser.cs ├── CflowObf.cs └── JumpCflow.cs ├── Advanced Protection ├── Anti Dump │ ├── ADHelper.cs │ └── AntiDump.cs └── Injections │ ├── InjectHelper.cs │ └── MethodHider.cs ├── Anti Protection ├── Anti De4dot │ └── AntiDe4dot.cs ├── Anti Dnspy │ └── AntiDnspy.cs └── Anti Ildasm │ └── AntiIldams.cs ├── Context Example └── Context.cs ├── Controlflow Protection ├── Version 1 │ └── Cflow.cs └── Version 2 │ └── CflowV2.cs ├── Fake Attributes Protection └── FakeAttributes.cs ├── Import Protection └── ImportProtection.cs ├── Int Protection ├── Encoding │ └── IntEncoding.cs ├── Version 1 │ └── Int.cs └── Version 2 │ └── IntV2.cs ├── Invalid Protection ├── Metadata │ └── InvalidMD.cs └── Opcodes │ └── InvalidOpcodes.cs ├── Junk Protection └── Junk.cs ├── L2F Protection └── Local2Field.cs ├── LICENSE ├── Melting Protection └── ConstMelting.cs ├── Mutation Protection ├── Const Mutation │ └── ConstMelting.cs ├── Mutation.cs └── MutationHelper.cs ├── Proxy Protection ├── Int Proxy │ └── IntProxy.cs ├── Many Proxy │ └── ManyProxy.cs └── String Proxy │ └── StringProxy.cs ├── README.md ├── Rename Protection ├── Version 1 │ └── Renamer.cs └── Version 2 │ └── RenamerV2.cs ├── Stack Protection └── Stack.cs ├── String Protection ├── Base64 │ └── Base64.cs └── Cipher │ ├── Injection.cs │ └── StringEcnryption.cs ├── Suf Protection └── SufConfusion.cs └── Watermark ├── Credits └── Credits.cs └── Watermark.cs /Advanced Cflow Protection/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Advanced Cflow Protection/Block.cs -------------------------------------------------------------------------------- /Advanced Cflow Protection/BlockParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Advanced Cflow Protection/BlockParser.cs -------------------------------------------------------------------------------- /Advanced Cflow Protection/CflowObf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Advanced Cflow Protection/CflowObf.cs -------------------------------------------------------------------------------- /Advanced Cflow Protection/JumpCflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Advanced Cflow Protection/JumpCflow.cs -------------------------------------------------------------------------------- /Advanced Protection/Anti Dump/ADHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Advanced Protection/Anti Dump/ADHelper.cs -------------------------------------------------------------------------------- /Advanced Protection/Anti Dump/AntiDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Advanced Protection/Anti Dump/AntiDump.cs -------------------------------------------------------------------------------- /Advanced Protection/Injections/InjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Advanced Protection/Injections/InjectHelper.cs -------------------------------------------------------------------------------- /Advanced Protection/Injections/MethodHider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Advanced Protection/Injections/MethodHider.cs -------------------------------------------------------------------------------- /Anti Protection/Anti De4dot/AntiDe4dot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Anti Protection/Anti De4dot/AntiDe4dot.cs -------------------------------------------------------------------------------- /Anti Protection/Anti Dnspy/AntiDnspy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Anti Protection/Anti Dnspy/AntiDnspy.cs -------------------------------------------------------------------------------- /Anti Protection/Anti Ildasm/AntiIldams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Anti Protection/Anti Ildasm/AntiIldams.cs -------------------------------------------------------------------------------- /Context Example/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Context Example/Context.cs -------------------------------------------------------------------------------- /Controlflow Protection/Version 1/Cflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Controlflow Protection/Version 1/Cflow.cs -------------------------------------------------------------------------------- /Controlflow Protection/Version 2/CflowV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Controlflow Protection/Version 2/CflowV2.cs -------------------------------------------------------------------------------- /Fake Attributes Protection/FakeAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Fake Attributes Protection/FakeAttributes.cs -------------------------------------------------------------------------------- /Import Protection/ImportProtection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Import Protection/ImportProtection.cs -------------------------------------------------------------------------------- /Int Protection/Encoding/IntEncoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Int Protection/Encoding/IntEncoding.cs -------------------------------------------------------------------------------- /Int Protection/Version 1/Int.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Int Protection/Version 1/Int.cs -------------------------------------------------------------------------------- /Int Protection/Version 2/IntV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Int Protection/Version 2/IntV2.cs -------------------------------------------------------------------------------- /Invalid Protection/Metadata/InvalidMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Invalid Protection/Metadata/InvalidMD.cs -------------------------------------------------------------------------------- /Invalid Protection/Opcodes/InvalidOpcodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Invalid Protection/Opcodes/InvalidOpcodes.cs -------------------------------------------------------------------------------- /Junk Protection/Junk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Junk Protection/Junk.cs -------------------------------------------------------------------------------- /L2F Protection/Local2Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/L2F Protection/Local2Field.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/LICENSE -------------------------------------------------------------------------------- /Melting Protection/ConstMelting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Melting Protection/ConstMelting.cs -------------------------------------------------------------------------------- /Mutation Protection/Const Mutation/ConstMelting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Mutation Protection/Const Mutation/ConstMelting.cs -------------------------------------------------------------------------------- /Mutation Protection/Mutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Mutation Protection/Mutation.cs -------------------------------------------------------------------------------- /Mutation Protection/MutationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Mutation Protection/MutationHelper.cs -------------------------------------------------------------------------------- /Proxy Protection/Int Proxy/IntProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Proxy Protection/Int Proxy/IntProxy.cs -------------------------------------------------------------------------------- /Proxy Protection/Many Proxy/ManyProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Proxy Protection/Many Proxy/ManyProxy.cs -------------------------------------------------------------------------------- /Proxy Protection/String Proxy/StringProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Proxy Protection/String Proxy/StringProxy.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/README.md -------------------------------------------------------------------------------- /Rename Protection/Version 1/Renamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Rename Protection/Version 1/Renamer.cs -------------------------------------------------------------------------------- /Rename Protection/Version 2/RenamerV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Rename Protection/Version 2/RenamerV2.cs -------------------------------------------------------------------------------- /Stack Protection/Stack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Stack Protection/Stack.cs -------------------------------------------------------------------------------- /String Protection/Base64/Base64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/String Protection/Base64/Base64.cs -------------------------------------------------------------------------------- /String Protection/Cipher/Injection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/String Protection/Cipher/Injection.cs -------------------------------------------------------------------------------- /String Protection/Cipher/StringEcnryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/String Protection/Cipher/StringEcnryption.cs -------------------------------------------------------------------------------- /Suf Protection/SufConfusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Suf Protection/SufConfusion.cs -------------------------------------------------------------------------------- /Watermark/Credits/Credits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Watermark/Credits/Credits.cs -------------------------------------------------------------------------------- /Watermark/Watermark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nak0823/ObfuscationMethods/HEAD/Watermark/Watermark.cs --------------------------------------------------------------------------------