コード例 #1
0
        /// <summary>
        ///     Disassemble Binary Code.
        /// </summary>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="code">
        ///     A collection of bytes representing the binary code to disassemble. Should not be a null reference.
        /// </param>
        /// <param name="count">
        ///     The number of instructions to disassemble. A 0 indicates all instructions should be disassembled.
        /// </param>
        /// <param name="startingAddress">
        ///     The address of the first instruction in the collection of bytes to disassemble.
        /// </param>
        /// <returns>
        ///     A native instruction handle.
        /// </returns>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the binary code could not be disassembled.
        /// </exception>
        public static SafeNativeInstructionHandle Disassemble(SafeCapstoneHandle handle, byte[] code, int count, long startingAddress) {
            // Copy Code to Unmanaged Memory.
            //
            // ...
            var pCode = MarshalExtension.AllocHGlobal<byte>(code.Length);
            Marshal.Copy(code, 0, pCode, code.Length);

            var pCount = (IntPtr) count;
            var pHandle = handle.DangerousGetHandle();
            var pInstructions = IntPtr.Zero;
            var pSize = (IntPtr) code.Length;
            var uStartingAddress = (ulong) startingAddress;

            // Disassemble Binary Code.
            //
            // ...
            var pResultCode = CapstoneImport.Disassemble(pHandle, pCode, pSize, uStartingAddress, pCount, ref pInstructions);
            if (pResultCode == IntPtr.Zero) {
                throw new InvalidOperationException("Unable to disassemble binary code.");
            }

            var iResultCode = (int) pResultCode;
            var instructions = MarshalExtension.PtrToStructure<NativeInstruction>(pInstructions, iResultCode);

            // Free Unmanaged Memory.
            //
            // Avoid a memory leak.
            Marshal.FreeHGlobal(pCode);

            var instructionHandle = new SafeNativeInstructionHandle(instructions, pInstructions, pResultCode);
            return instructionHandle;
        }
コード例 #2
0
        /// <summary>
        ///     Create a Disassembler.
        /// </summary>
        /// <param name="architecture">
        ///     The disassembler's architecture.
        /// </param>
        /// <param name="mode">
        ///     The disassembler's mode.
        /// </param>
        protected CapstoneDisassembler(DisassembleArchitecture architecture, DisassembleMode mode)
        {
            this._architecture = architecture;
            this._mode         = mode;

            this._handle       = NativeCapstone.Create(this._architecture, this._mode);
            this.EnableDetails = false;
            this.Syntax        = DisassembleSyntaxOptionValue.Default;
        }
コード例 #3
0
        /// <summary>
        ///     Set Disassemble Mode Option.
        /// </summary>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="mode">
        ///     A disassemble mode.
        /// </param>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the disassemble mode option could not be set.
        /// </exception>
        public static void SetDisassembleModeOption(SafeCapstoneHandle handle, DisassembleMode mode)
        {
            var       pHandle = handle.DangerousGetHandle();
            const int iOption = (int)DisassembleOptionType.Mode;

            // Set Disassemble Option.
            //
            // ...
            var resultCode = CapstoneImport.SetOption(pHandle, iOption, (IntPtr)mode);

            if (resultCode != (int)DisassembleErrorCode.Ok)
            {
                throw new InvalidOperationException("Unable to set disassemble mode option.");
            }
        }
コード例 #4
0
        /// <summary>
        ///     Set Disassemble Syntax Option.
        /// </summary>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="value">
        ///     A syntax option value.
        /// </param>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the disassemble syntax option could not be set.
        /// </exception>
        public static void SetDisassembleSyntaxOption(SafeCapstoneHandle handle, DisassembleSyntaxOptionValue value)
        {
            // var pHandle = handle.DangerousGetHandle();
            const int iOption = (int)DisassembleOptionType.Syntax;

            // Set Disassemble Option.
            //
            // ...
            var resultCode = CapstoneImport.SetOption(unchecked ((UIntPtr)(ulong)(ulong)handle.DangerousGetHandle()),
                                                      iOption, (UIntPtr)value);

            if (resultCode != (int)DisassembleErrorCode.Ok)
            {
                throw new InvalidOperationException("Unable to set disassemble syntax option.");
            }
        }
コード例 #5
0
        /// <summary>
        ///     Set Disassemble Details Option.
        /// </summary>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="flag">
        ///     A flag indicating whether to disable or enable the disassemble details option.
        /// </param>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the disassemble details option could not be set.
        /// </exception>
        public static void SetDisassembleDetails(SafeCapstoneHandle handle, bool flag)
        {
            var       pHandle = handle.DangerousGetHandle();
            const int iOption = (int)DisassembleOptionType.Detail;
            var       value   = flag ? (IntPtr)DisassembleOptionValue.On : (IntPtr)DisassembleOptionValue.Off;

            // Set Disassemble Option.
            //
            // ...
            var resultCode = CapstoneImport.SetOption(pHandle, iOption, value);

            if (resultCode != (int)DisassembleErrorCode.Ok)
            {
                throw new InvalidOperationException("Unable to set disassemble details option.");
            }
        }
コード例 #6
0
        /// <summary>
        ///     Create a Capstone Disassembler.
        /// </summary>
        /// <param name="architecture">
        ///     The disassemble architecture.
        /// </param>
        /// <param name="mode">
        ///     The disassemble mode.
        /// </param>
        /// <returns>
        ///     A Capstone handle.
        /// </returns>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if a Capstone disassembler could not be created.
        /// </exception>
        public static SafeCapstoneHandle Create(DisassembleArchitecture architecture, DisassembleMode mode) {
            var iArchitecture = (int) architecture;
            var iMode = (int) mode;
            var pHandle = IntPtr.Zero;

            // Open Capstone Handle.
            //
            // ...
            var resultCode = CapstoneImport.Open(iArchitecture, iMode, ref pHandle);
            if (resultCode != (int) DisassembleErrorCode.Ok) {
                throw new InvalidOperationException("Unable to create a Capstone disassembler.");
            }

            var handle = new SafeCapstoneHandle(pHandle);
            return handle;
        }
コード例 #7
0
        /// <summary>
        ///     Create a Capstone Disassembler.
        /// </summary>
        /// <param name="architecture">
        ///     The disassemble architecture.
        /// </param>
        /// <param name="mode">
        ///     The disassemble mode.
        /// </param>
        /// <returns>
        ///     A Capstone handle.
        /// </returns>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if a Capstone disassembler could not be created.
        /// </exception>
        public static SafeCapstoneHandle Create(DisassembleArchitecture architecture, DisassembleMode mode)
        {
            var iArchitecture = (int)architecture;
            var iMode         = (int)mode;
            var pHandle       = IntPtr.Zero;

            // Open Capstone Handle.
            //
            // ...
            var resultCode = CapstoneImport.Open(iArchitecture, iMode, ref pHandle);

            if (resultCode != (int)DisassembleErrorCode.Ok)
            {
                throw new InvalidOperationException("Unable to create a Capstone disassembler.");
            }

            var handle = new SafeCapstoneHandle((UIntPtr)(ulong)(long)pHandle);

            return(handle);
        }
コード例 #8
0
        /// <summary>
        ///     Disassemble Binary Code.
        /// </summary>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="code">
        ///     A collection of bytes representing the binary code to disassemble. Should not be a null reference.
        /// </param>
        /// <param name="count">
        ///     The number of instructions to disassemble. A 0 indicates all instructions should be disassembled.
        /// </param>
        /// <param name="startingAddress">
        ///     The address of the first instruction in the collection of bytes to disassemble.
        /// </param>
        /// <returns>
        ///     A native instruction handle.
        /// </returns>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the binary code could not be disassembled.
        /// </exception>
        public static SafeNativeInstructionHandle Disassemble(SafeCapstoneHandle handle, byte[] code, int count, ulong startingAddress)
        {
            // Copy Code to Unmanaged Memory.
            //
            // ...
            var pCode = MarshalExtension.AllocHGlobal <byte>(code.Length);

            Marshal.Copy(code, 0, pCode, code.Length);

            var pCount        = (UIntPtr)count;
            var pHandle       = handle.DangerousGetHandle();
            var pInstructions = IntPtr.Zero;
            var pSize         = (UIntPtr)code.Length;
            // var uStartingAddress = (ulong) startingAddress;

            // Disassemble Binary Code.
            //
            // ...
            var pResultCode = CapstoneImport.Disassemble(unchecked ((UIntPtr)(ulong)(ulong)handle.DangerousGetHandle()), pCode, pSize,
                                                         startingAddress, pCount, ref pInstructions);

            if (pResultCode == UIntPtr.Zero)
            {
                throw new InvalidOperationException("Unable to disassemble binary code.");
            }

            var iResultCode  = (int)pResultCode;
            var instructions = MarshalExtension.PtrToStructure <NativeInstruction>(pInstructions, iResultCode);

            // Free Unmanaged Memory.
            //
            // Avoid a memory leak.
            Marshal.FreeHGlobal(pCode);

            var instructionHandle = new SafeNativeInstructionHandle(instructions, pInstructions, pResultCode);

            return(instructionHandle);
        }
コード例 #9
0
 /// <summary>
 ///     Enable Intel Disassemble Syntax Option.
 /// </summary>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the disassemble syntax option could not be set.
 /// </exception>
 public static void EnableIntelDisassembleSyntaxOption(SafeCapstoneHandle handle) {
     NativeCapstone.SetDisassembleSyntaxOption(handle, DisassembleSyntaxOptionValue.Intel);
 }
コード例 #10
0
 /// <summary>
 ///     Enable Disassemble Details Option.
 /// </summary>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the disassemble details option could not be enabled.
 /// </exception>
 public static void EnableDisassembleDetails(SafeCapstoneHandle handle)
 {
     NativeCapstone.SetDisassembleDetails(handle, true);
 }
コード例 #11
0
        /// <summary>
        ///     Disassemble All Binary Code.
        /// </summary>
        /// <remarks>
        ///     Convenient method to disassemble binary code with the assumption that the address of the first
        ///     instruction in the collection of bytes to disassemble is 0x1000. Equivalent to calling
        ///     <c>NativeCapstone.DisassembleAll(handle, code, 0x1000)</c>.
        /// </remarks>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="code">
        ///     A collection of bytes representing the binary code to disassemble. Should not be a null reference.
        /// </param>
        /// <returns>
        ///     A native instruction handle.
        /// </returns>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the binary code could not be disassembled.
        /// </exception>
        public static SafeNativeInstructionHandle DisassembleAll(SafeCapstoneHandle handle, byte[] code)
        {
            var instructions = NativeCapstone.DisassembleAll(handle, code, 0x1000);

            return(instructions);
        }
コード例 #12
0
        /// <summary>
        ///     Disassemble Binary Code.
        /// </summary>
        /// <remarks>
        ///     Convenient method to disassemble binary code with the assumption that the address of the first
        ///     instruction in the collection of bytes to disassemble is 0x1000. Equivalent to calling
        ///     <c>NativeCapstone.Disassemble(handle, code, 0x1000, count)</c>.
        /// </remarks>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="code">
        ///     A collection of bytes representing the binary code to disassemble. Should not be a null reference.
        /// </param>
        /// <param name="count">
        ///     The number of instructions to disassemble. A 0 indicates all instructions should be disassembled.
        /// </param>
        /// <returns>
        ///     A native instruction handle.
        /// </returns>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the binary code could not be disassembled.
        /// </exception>
        // public static SafeNativeInstructionHandle Disassemble(SafeCapstoneHandle handle, byte[] code, int count) {
        //     var instructionHandle = NativeCapstone.Disassemble(handle, code, 0x1000, count);
        //     return instructionHandle;
        // }

        /// <summary>
        ///     Disassemble All Binary Code.
        /// </summary>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="code">
        ///     A collection of bytes representing the binary code to disassemble. Should not be a null reference.
        /// </param>
        /// <param name="startingAddress">
        ///     The address of the first instruction in the collection of bytes to disassemble.
        /// </param>
        /// <returns>
        ///     A native instruction handle.
        /// </returns>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the binary code could not be disassembled.
        /// </exception>
        public static SafeNativeInstructionHandle DisassembleAll(SafeCapstoneHandle handle, byte[] code, ulong startingAddress)
        {
            var instructionHandle = NativeCapstone.Disassemble(handle, code, 0, startingAddress);

            return(instructionHandle);
        }
コード例 #13
0
 /// <summary>
 ///     Disassemble Binary Code.
 /// </summary>
 /// <remarks>
 ///     Convenient method to disassemble binary code with the assumption that the address of the first
 ///     instruction in the collection of bytes to disassemble is 0x1000. Equivalent to calling
 ///     <c>NativeCapstone.Disassemble(handle, code, 0x1000, count)</c>.
 /// </remarks>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <param name="code">
 ///     A collection of bytes representing the binary code to disassemble. Should not be a null reference.
 /// </param>
 /// <param name="count">
 ///     The number of instructions to disassemble. A 0 indicates all instructions should be disassembled.
 /// </param>
 /// <returns>
 ///     A native instruction handle.
 /// </returns>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the binary code could not be disassembled.
 /// </exception>
 public static SafeNativeInstructionHandle Disassemble(SafeCapstoneHandle handle, byte[] code, int count) {
     var instructionHandle = NativeCapstone.Disassemble(handle, code, 0x1000, count);
     return instructionHandle;
 }
コード例 #14
0
 /// <summary>
 ///     Disassemble All Binary Code.
 /// </summary>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <param name="code">
 ///     A collection of bytes representing the binary code to disassemble. Should not be a null reference.
 /// </param>
 /// <param name="startingAddress">
 ///     The address of the first instruction in the collection of bytes to disassemble.
 /// </param>
 /// <returns>
 ///     A native instruction handle.
 /// </returns>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the binary code could not be disassembled.
 /// </exception>
 public static SafeNativeInstructionHandle DisassembleAll(SafeCapstoneHandle handle, byte[] code, long startingAddress) {
     var instructionHandle = NativeCapstone.Disassemble(handle, code, 0, startingAddress);
     return instructionHandle;
 }
コード例 #15
0
 /// <summary>
 ///     Disassemble All Binary Code.
 /// </summary>
 /// <remarks>
 ///     Convenient method to disassemble binary code with the assumption that the address of the first
 ///     instruction in the collection of bytes to disassemble is 0x1000. Equivalent to calling
 ///     <c>NativeCapstone.DisassembleAll(handle, code, 0x1000)</c>.
 /// </remarks>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <param name="code">
 ///     A collection of bytes representing the binary code to disassemble. Should not be a null reference.
 /// </param>
 /// <returns>
 ///     A native instruction handle.
 /// </returns>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the binary code could not be disassembled.
 /// </exception>
 public static SafeNativeInstructionHandle DisassembleAll(SafeCapstoneHandle handle, byte[] code) {
     var instructions = NativeCapstone.DisassembleAll(handle, code, 0x1000);
     return instructions;
 }
コード例 #16
0
 /// <summary>
 ///     Enable Default Disassemble Syntax Option.
 /// </summary>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the disassemble syntax option could not be set.
 /// </exception>
 public static void EnableDefaultDisassembleSyntaxOption(SafeCapstoneHandle handle)
 {
     NativeCapstone.SetDisassembleSyntaxOption(handle, DisassembleSyntaxOptionValue.Default);
 }
コード例 #17
0
 /// <summary>
 ///     Enable Disassemble Details Option.
 /// </summary>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the disassemble details option could not be enabled.
 /// </exception>
 public static void EnableDisassembleDetails(SafeCapstoneHandle handle) {
     NativeCapstone.SetDisassembleDetails(handle, true);
 }
コード例 #18
0
 /// <summary>
 ///     Enable Default Disassemble Syntax Option.
 /// </summary>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the disassemble syntax option could not be set.
 /// </exception>
 public static void EnableDefaultDisassembleSyntaxOption(SafeCapstoneHandle handle) {
     NativeCapstone.SetDisassembleSyntaxOption(handle, DisassembleSyntaxOptionValue.Default);
 }
コード例 #19
0
 /// <summary>
 ///     Enable Intel Disassemble Syntax Option.
 /// </summary>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the disassemble syntax option could not be set.
 /// </exception>
 public static void EnableIntelDisassembleSyntaxOption(SafeCapstoneHandle handle)
 {
     NativeCapstone.SetDisassembleSyntaxOption(handle, DisassembleSyntaxOptionValue.Intel);
 }
コード例 #20
0
        /// <summary>
        ///     Set Disassemble Details Option.
        /// </summary>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="flag">
        ///     A flag indicating whether to disable or enable the disassemble details option.
        /// </param>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the disassemble details option could not be set.
        /// </exception>
        public static void SetDisassembleDetails(SafeCapstoneHandle handle, bool flag) {
            var pHandle = handle.DangerousGetHandle();
            const int iOption = (int) DisassembleOptionType.Detail;
            var value = flag ? (IntPtr) DisassembleOptionValue.On : (IntPtr) DisassembleOptionValue.Off;

            // Set Disassemble Option.
            //
            // ...
            var resultCode = CapstoneImport.SetOption(pHandle, iOption, value);
            if (resultCode != (int) DisassembleErrorCode.Ok) {
                throw new InvalidOperationException("Unable to set disassemble details option.");
            }
        }
コード例 #21
0
 /// <summary>
 ///     Disable Disassemble Details Option.
 /// </summary>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the disassemble details option could not be disabled.
 /// </exception>
 public static void DisableDetailOption(SafeCapstoneHandle handle)
 {
     NativeCapstone.SetDisassembleDetails(handle, false);
 }
コード例 #22
0
        /// <summary>
        ///     Set Disassemble Mode Option.
        /// </summary>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="mode">
        ///     A disassemble mode.
        /// </param>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the disassemble mode option could not be set.
        /// </exception>
        public static void SetDisassembleModeOption(SafeCapstoneHandle handle, DisassembleMode mode) {
            var pHandle = handle.DangerousGetHandle();
            const int iOption = (int) DisassembleOptionType.Mode;

            // Set Disassemble Option.
            //
            // ...
            var resultCode = CapstoneImport.SetOption(pHandle, iOption, (IntPtr) mode);
            if (resultCode != (int) DisassembleErrorCode.Ok) {
                throw new InvalidOperationException("Unable to set disassemble mode option.");
            }
        }
コード例 #23
0
 /// <summary>
 ///     Disable Disassemble Details Option.
 /// </summary>
 /// <param name="handle">
 ///     A Capstone handle. Should not be a null reference.
 /// </param>
 /// <exception cref="System.InvalidOperationException">
 ///     Thrown if the disassemble details option could not be disabled.
 /// </exception>
 public static void DisableDetailOption(SafeCapstoneHandle handle) {
     NativeCapstone.SetDisassembleDetails(handle, false);
 }
コード例 #24
0
        /// <summary>
        ///     Disassemble Binary Code.
        /// </summary>
        /// <remarks>
        ///     Convenient method to disassemble binary code with the assumption that the address of the first
        ///     instruction in the collection of bytes to disassemble is 0x1000. Equivalent to calling
        ///     <c>NativeCapstone.Disassemble(handle, code, 0x1000, count)</c>.
        /// </remarks>
        /// <param name="handle">
        ///     A Capstone handle. Should not be a null reference.
        /// </param>
        /// <param name="code">
        ///     A collection of bytes representing the binary code to disassemble. Should not be a null reference.
        /// </param>
        /// <param name="count">
        ///     The number of instructions to disassemble. A 0 indicates all instructions should be disassembled.
        /// </param>
        /// <returns>
        ///     A native instruction handle.
        /// </returns>
        /// <exception cref="System.InvalidOperationException">
        ///     Thrown if the binary code could not be disassembled.
        /// </exception>
        public static SafeNativeInstructionHandle Disassemble(SafeCapstoneHandle handle, byte[] code, int count)
        {
            var instructionHandle = NativeCapstone.Disassemble(handle, code, 0x1000, count);

            return(instructionHandle);
        }