Exemplo n.º 1
0
        public void RemoveCustomAttribute(PatchInfo patchInfo, int attributeIndex)
        {
            TypeDef type = FindType(patchInfo);

            if (patchInfo.Method != null)
            {
                MethodDef method = FindMethod(patchInfo);
                method.CustomAttributes.RemoveAt(attributeIndex);
            }
            else
            {
                type.CustomAttributes.RemoveAt(attributeIndex);
            }
        }
Exemplo n.º 2
0
        public void AddCustomAttribute(PatchInfo patchInfo, CustomAttribute attribute)
        {
            TypeDef type = FindType(patchInfo);

            if (patchInfo.Method != null)
            {
                MethodDef method = FindMethod(patchInfo);
                method.CustomAttributes.Add(attribute);
            }
            else
            {
                type.CustomAttributes.Add(attribute);
            }
        }
Exemplo n.º 3
0
        public void ClearCustomAttributes(PatchInfo patchInfo)
        {
            TypeDef type = FindType(patchInfo);

            if (patchInfo.Method != null)
            {
                MethodDef method = FindMethod(patchInfo);
                method.CustomAttributes.Clear();
            }
            else
            {
                type.CustomAttributes.Clear();
            }
        }
Exemplo n.º 4
0
        public PatchInfo[] FindInstructionsByRegex(PatchInfo patchInfo, string pattern, bool ignoreOperand)
        {
            var patchInfos = new List <PatchInfo>();

            if (patchInfo.Namespace != null)
            {
                var type = FindType(patchInfo);
                if (patchInfo.Method != null)
                {
                    string body   = "";
                    var    method = FindMethod(patchInfo);
                    foreach (var instruction in method.Body.Instructions)
                    {
                        if (!ignoreOperand)
                        {
                            body += instruction.OpCode + " " + instruction.Operand + "\n";
                        }
                        else
                        {
                            body += instruction.OpCode + "\n";
                        }
                    }

                    foreach (Match match in Regex.Matches(body, pattern))
                    {
                        int startIndex = body.Split(new string[] { match.Value }, StringSplitOptions.None)[0]
                                         .Split('\n')
                                         .Length - 1;
                        int[] indices = { };
                        for (int i = 0; i < match.Value.Split('\n').Length; i++)
                        {
                            indices[i] = startIndex + i;
                        }

                        var t = new PatchInfo()
                        {
                            Indices       = indices,
                            Method        = patchInfo.Method,
                            Class         = patchInfo.Class,
                            Namespace     = patchInfo.Namespace,
                            NestedClasses = patchInfo.NestedClasses,
                            NestedClass   = patchInfo.NestedClass
                        };
                        patchInfos.Add(t);
                    }
                }
            }

            return(patchInfos.ToArray());
        }
Exemplo n.º 5
0
 public void Patch(PatchInfo patchInfo)
 {
     if ((patchInfo.Indices != null || patchInfo.Index != -1) &&
         (patchInfo.Instruction != null || patchInfo.Instructions != null))
     {
         PatchOffsets(patchInfo);
     }
     else if ((patchInfo.Index == -1 && patchInfo.Indices == null) &&
              (patchInfo.Instruction != null || patchInfo.Instructions != null))
     {
         PatchAndClear(patchInfo);
     }
     else
     {
         throw new Exception("Check your PatchInfo object for inconsistent assignments");
     }
 }
Exemplo n.º 6
0
        public void PatchOperand(PatchInfo patchInfo, int[] operand)
        {
            MethodDef method       = FindMethod(patchInfo);
            var       instructions = method.Body.Instructions;

            if (patchInfo.Indices != null && patchInfo.Index == -1)
            {
                foreach (var index in patchInfo.Indices)
                {
                    instructions[index].Operand = operand[index];
                }
            }
            else
            {
                throw new Exception("Operand error");
            }
        }
Exemplo n.º 7
0
        /// <summary>
        /// 清除方法体并应用破解
        /// </summary>
        /// <param name="patchInfo"></param>
        public void PatchAndClear(PatchInfo patchInfo)
        {
            var method       = FindMethod(patchInfo);
            var instructions = method.Body.Instructions;

            instructions.Clear();
            if (patchInfo.Instructions != null)
            {
                for (int i = 0; i < patchInfo.Instructions.Length; i++)
                {
                    instructions.Insert(i, patchInfo.Instructions[i]);
                }
            }
            else
            {
                instructions.Insert(0, patchInfo.Instruction);
            }
        }
Exemplo n.º 8
0
        /// <summary>
        /// 写入BOOL值作为方法返回体
        /// </summary>
        /// <param name="PatchInfo"></param>
        /// <param name="trueOrFalse"></param>
        public void WriteReturnBody(PatchInfo PatchInfo, bool trueOrFalse)
        {
            PatchInfo = FixPatchInfo(PatchInfo);
            if (trueOrFalse)
            {
                PatchInfo.Instructions = new Instruction[]
                {
                    Instruction.Create(OpCodes.Ldc_I4_1), Instruction.Create(OpCodes.Ret)
                };
            }
            else
            {
                PatchInfo.Instructions = new Instruction[]
                {
                    Instruction.Create(OpCodes.Ldc_I4_0), Instruction.Create(OpCodes.Ret)
                };
            }

            PatchAndClear(PatchInfo);
        }
Exemplo n.º 9
0
        public void RemoveInstruction(PatchInfo patchInfo)
        {
            var method       = FindMethod(patchInfo);
            var instructions = method.Body.Instructions;

            if (patchInfo.Index != -1 && patchInfo.Indices == null)
            {
                instructions.RemoveAt(patchInfo.Index);
            }
            else if (patchInfo.Index == -1 && patchInfo.Indices != null)
            {
                foreach (var index in patchInfo.Indices.OrderByDescending(v => v))
                {
                    instructions.RemoveAt(index);
                }
            }
            else
            {
                throw new Exception("PatchInfo object built wrong");
            }
        }
Exemplo n.º 10
0
        public void RewriteProperty(PatchInfo patchInfo)
        {
            TypeDef             type         = FindType(patchInfo);
            PropertyDef         property     = FindProperty(type, patchInfo.Property);
            IList <Instruction> instructions = null;

            if (patchInfo.PropertyMethod == PropertyMethod.Get)
            {
                instructions = property.GetMethod.Body.Instructions;
            }
            else
            {
                instructions = property.SetMethod.Body.Instructions;
            }

            instructions.Clear();
            foreach (var instruction in patchInfo.Instructions)
            {
                instructions.Add(instruction);
            }
        }
Exemplo n.º 11
0
        public void ReplaceInstruction(PatchInfo patchInfo)
        {
            var method       = FindMethod(patchInfo);
            var instructions = method.Body.Instructions;

            if (patchInfo.Index != -1 && patchInfo.Instruction != null)
            {
                instructions[patchInfo.Index] = patchInfo.Instruction;
            }
            else if (patchInfo.Indices != null && patchInfo.Instructions != null)
            {
                for (int i = 0; i < patchInfo.Indices.Length; i++)
                {
                    var index = patchInfo.Indices[i];
                    instructions[index] = patchInfo.Instructions[i];
                }
            }
            else
            {
                throw new Exception("PatchInfo object built wrong");
            }
        }
Exemplo n.º 12
0
        public int FindInstruction(PatchInfo patchInfo, Instruction instruction, int occurence)
        {
            occurence--; // Fix the occurence, e.g. second occurence must be 1 but hoomans like to write like they speak so why don't assist them?
            MethodDef method           = FindMethod(patchInfo);
            var       instructions     = method.Body.Instructions;
            int       index            = 0;
            int       occurenceCounter = 0;

            foreach (var i in instructions)
            {
                if (i.Operand == null && instruction.Operand == null)
                {
                    if (i.OpCode.Name == instruction.OpCode.Name && occurenceCounter < occurence)
                    {
                        occurenceCounter++;
                    }
                    else if (i.OpCode.Name == instruction.OpCode.Name && occurenceCounter == occurence)
                    {
                        return(index);
                    }
                }
                else if (i.OpCode.Name == instruction.OpCode.Name &&
                         i.Operand.ToString() == instruction.Operand.ToString() && occurenceCounter < occurence)
                {
                    occurenceCounter++;
                }
                else if (i.OpCode.Name == instruction.OpCode.Name &&
                         i.Operand.ToString() == instruction.Operand.ToString() && occurenceCounter == occurence)
                {
                    return(index);
                }

                index++;
            }

            return(-1);
        }
Exemplo n.º 13
0
        public int GetLdcI4Operand(PatchInfo patchInfo)
        {
            MethodDef method = FindMethod(patchInfo);

            return(method.Body.Instructions[patchInfo.Index].GetLdcI4Value());
        }
Exemplo n.º 14
0
        public MethodDef FindMethod(PatchInfo patchInfo)
        {
            TypeDef type = FindType(patchInfo);

            return(FindMethod(type, patchInfo.Method, patchInfo.Parameters, patchInfo.ReturnType));
        }
Exemplo n.º 15
0
        public PatchInfo[] FindInstructionsByOpcode(OpCode[] opcode)
        {
            List <ObfuscatedPatchInfo> obfuscatedPatchInfos = new List <ObfuscatedPatchInfo>();
            List <string> operands = opcode.Select(o => o.Name).ToList();

            foreach (var type in Module.Types)
            {
                if (!type.HasNestedTypes)
                {
                    foreach (var method in type.Methods)
                    {
                        if (method.Body != null)
                        {
                            List <int> indexList           = new List <int>();
                            var        obfuscatedPatchInfo = new ObfuscatedPatchInfo()
                            {
                                Type = type, Method = method
                            };
                            int i = 0;
                            foreach (var instruction in method.Body.Instructions)
                            {
                                if (operands.Contains(instruction.OpCode.Name))
                                {
                                    indexList.Add(i);
                                    operands.Remove(instruction.OpCode.Name);
                                }

                                i++;
                            }

                            if (indexList.Count == opcode.Length)
                            {
                                obfuscatedPatchInfo.Indices = indexList;
                                obfuscatedPatchInfos.Add(obfuscatedPatchInfo);
                            }

                            operands = opcode.Select(o => o.Name).ToList();
                        }
                    }
                }
                else
                {
                    var nestedTypes = type.NestedTypes;
NestedWorker:
                    foreach (var nestedType in nestedTypes)
                    {
                        foreach (var method in type.Methods)
                        {
                            if (method.Body != null)
                            {
                                List <int> indexList           = new List <int>();
                                var        obfuscatedPatchInfo = new ObfuscatedPatchInfo()
                                {
                                    Type = type, Method = method
                                };
                                int i = 0;
                                obfuscatedPatchInfo.NestedTypes.Add(nestedType.Name);
                                foreach (var instruction in method.Body.Instructions)
                                {
                                    if (operands.Contains(instruction.OpCode.Name))
                                    {
                                        indexList.Add(i);
                                        operands.Remove(instruction.OpCode.Name);
                                    }

                                    i++;
                                }

                                if (indexList.Count == opcode.Length)
                                {
                                    obfuscatedPatchInfo.Indices = indexList;
                                    obfuscatedPatchInfos.Add(obfuscatedPatchInfo);
                                }

                                operands = opcode.Select(o => o.Name).ToList();
                            }
                        }

                        if (nestedType.HasNestedTypes)
                        {
                            nestedTypes = nestedType.NestedTypes;
                            goto NestedWorker;
                        }
                    }
                }
            }

            List <PatchInfo> patchInfos = new List <PatchInfo>();

            foreach (var obfuscatedPatchInfo in obfuscatedPatchInfos)
            {
                PatchInfo t = new PatchInfo()
                {
                    Namespace     = obfuscatedPatchInfo.Type.Namespace,
                    Class         = obfuscatedPatchInfo.Type.Name,
                    Method        = obfuscatedPatchInfo.Method.Name,
                    NestedClasses = obfuscatedPatchInfo.NestedTypes.ToArray()
                };
                if (obfuscatedPatchInfo.Indices.Count == 1)
                {
                    t.Index = obfuscatedPatchInfo.Indices[0];
                }
                else if (obfuscatedPatchInfo.Indices.Count > 1)
                {
                    t.Indices = obfuscatedPatchInfo.Indices.ToArray();
                }

                patchInfos.Add(t);
            }

            return(patchInfos.ToArray());
        }
Exemplo n.º 16
0
        public TypeDef FindType(PatchInfo patchInfo)
        {
            return(FindType(patchInfo.Namespace + "." + patchInfo.Class, patchInfo.NestedClasses));

            ;
        }
Exemplo n.º 17
0
 public void WriteEmptyBody(PatchInfo patchInfo)
 {
     patchInfo             = this.FixPatchInfo(patchInfo);
     patchInfo.Instruction = Instruction.Create(OpCodes.Ret);
     PatchAndClear(patchInfo);
 }
Exemplo n.º 18
0
        public PatchInfo[] FindInstructionsByOperand(PatchInfo patchInfo, int[] operand, bool removeIfFound = false)
        {
            List <ObfuscatedPatchInfo> obfuscatedPatchInfos = new List <ObfuscatedPatchInfo>();
            List <int> operands = operand.ToList();
            TypeDef    type     = FindType(patchInfo);
            MethodDef  m        = null;

            if (patchInfo.Method != null)
            {
                m = FindMethod(patchInfo);
            }
            if (m != null)
            {
                List <int> indexList           = new List <int>();
                var        obfuscatedPatchInfo = new ObfuscatedPatchInfo()
                {
                    Type = type, Method = m
                };
                int i = 0;
                foreach (var instruction in m.Body.Instructions)
                {
                    if (instruction.Operand != null)
                    {
                        if (operands.Contains(Convert.ToInt32(instruction.Operand.ToString())))
                        {
                            indexList.Add(i);
                            if (removeIfFound)
                            {
                                operands.Remove(Convert.ToInt32(instruction.Operand.ToString()));
                            }
                        }
                    }

                    i++;
                }

                if (indexList.Count == operand.Length || removeIfFound == false)
                {
                    obfuscatedPatchInfo.Indices = indexList;
                    obfuscatedPatchInfos.Add(obfuscatedPatchInfo);
                }

                operands = operand.ToList();
            }
            else
            {
                foreach (var method in type.Methods)
                {
                    if (method.Body != null)
                    {
                        List <int> indexList           = new List <int>();
                        var        obfuscatedPatchInfo = new ObfuscatedPatchInfo()
                        {
                            Type = type, Method = method
                        };
                        int i = 0;
                        foreach (var instruction in method.Body.Instructions)
                        {
                            if (instruction.Operand != null)
                            {
                                if (operands.Contains(Convert.ToInt32(instruction.Operand.ToString())))
                                {
                                    indexList.Add(i);
                                    if (removeIfFound)
                                    {
                                        operands.Remove(Convert.ToInt32(instruction.Operand.ToString()));
                                    }
                                }
                            }

                            i++;
                        }

                        if (indexList.Count == operand.Length || removeIfFound == false)
                        {
                            obfuscatedPatchInfo.Indices = indexList;
                            obfuscatedPatchInfos.Add(obfuscatedPatchInfo);
                        }

                        operands = operand.ToList();
                    }
                }
            }

            List <PatchInfo> patchInfos = new List <PatchInfo>();

            foreach (var obfuscatedPatchInfo in obfuscatedPatchInfos)
            {
                PatchInfo t = new PatchInfo()
                {
                    Namespace     = obfuscatedPatchInfo.Type.Namespace,
                    Class         = obfuscatedPatchInfo.Type.Name,
                    Method        = obfuscatedPatchInfo.Method.Name,
                    NestedClasses = obfuscatedPatchInfo.NestedTypes.ToArray()
                };
                if (obfuscatedPatchInfo.Indices.Count == 1)
                {
                    t.Index = obfuscatedPatchInfo.Indices[0];
                }
                else if (obfuscatedPatchInfo.Indices.Count > 1)
                {
                    t.Indices = obfuscatedPatchInfo.Indices.ToArray();
                }

                patchInfos.Add(t);
            }

            return(patchInfos.ToArray());
        }
Exemplo n.º 19
0
        public string GetOperand(PatchInfo patchInfo)
        {
            MethodDef method = FindMethod(patchInfo);

            return(method.Body.Instructions[patchInfo.Index].Operand.ToString());
        }