View Single Post
  #105  
Old 01-21-2023, 15:59
TheDutchJewel's Avatar
TheDutchJewel TheDutchJewel is offline
VIP
 
Join Date: Aug 2002
Posts: 667
Rept. Given: 26
Rept. Rcvd 461 Times in 264 Posts
Thanks Given: 19
Thanks Rcvd at 466 Times in 133 Posts
TheDutchJewel Reputation: 400-499 TheDutchJewel Reputation: 400-499 TheDutchJewel Reputation: 400-499 TheDutchJewel Reputation: 400-499 TheDutchJewel Reputation: 400-499
dnSpy v6.3.0
2023-01-20

Changelog
Quote:
dnSpyEx 6.3.0 brings many improvements to the already existing components in dnSpy as well as features an improved search component. Many bugs and issues caused by obfuscated or malformed binaries have been fixed. The debugger received quite a lot of improvements for both the CorDebug and Mono APIs to improve the debugging experience. The decompiler has also received quite a few changes to help fix crashes and incorrect decompiled code. This update is recommended for all users of dnSpy and dnSpyEx!

New features:
• Improved Search tool window
  ○ Display member types in search results (return types, parameter types, etc.) to make it easier to locate the right member.
  ○ Tooltips on search results now contain more information, including full member signatures. If the result is located in a method body, the appropriate instruction is also included in the tooltip.
  ○ Literal and enum fields are now included in search results when searching for a constant.
  ○ Improved analysis of custom attributes. Previously arrays in custom attributes or boxed custom attributes were not searched, now they are.
  ○ Added an option to disable searching compiler-generated members.
  ○ Added support for searching DateTime resources when searching for constants.
  ○ Reduced heap allocations that occurred during the search process.
  ○ Include properties with literal constants in search results when searching for constants.
  ○ Refresh search results when a member was modified or deleted.
• Added a command under the File menu to close all framework and system assemblies (by @mitchcapper).
• Added a new context menu command for methods to replace their body with one which returns a default value and initializes all out parameters.
• Added support for exporting projects in the new SDK format in the form of a toggle in the project export dialog.
• Added additional toggles to the metadata writer options screen.
• Added support for .NET 7 assembly resolution.
• Added Vietnamese translations.
• Added an update checker to the About screen.
• Added support for displaying structure information for V1 multifile resources in the hex viewer.
• ILSpy decompiler:
  ○ Add an option to the decompiler settings to decompile calli instructions to invocation expressions. (co-authored by @cnsheds)
  ○ Add MethodCodeType field to [MethodImplOptions] attribute if necessary
• Debugger:
  ○ Add a new Static Fields tool window which displays and allows editing of values of all static fields available in the current context.
  ○ Add support for GetObjectValueAtAddress Roslyn expression compiler intrinsic. It is now possible to enter expressions like @0x12345678 to retrieve an object at a specific memory address. Due to debugger API limitations, this is only available when utilizing the CorDebug API (.NET Framework, .NET Core, .NET 5/6/7/etc.)
  ○ CorDebug:
    ■ Add support for Just My Code debugging including an option to disable stepping into system modules and an option to avoid stepping into code outside the primary module.
  ○ Mono/Unity:
    ■ Mono debugger API version of the debuggee is now written to the Output window when debugging is initiated.
    ■ Add support for dereferencing pointers in the Locals, Watch, etc. tool windows when using newer Mono debugger API versions.

Improvements and bug fixes:
• Added more links to the Help menu.
• Added support for displaying special C# types like nint, nuint, and dynamic in tooltips. Tuple element names are now also included.
• Added support for loading XMLDoc for .NET Core framework assemblies.
• Extended XMLDoc parser and analyzer to support documentation files generated by the MSVC compiler.
• Properly display the __arglist method parameter across the dnSpy UI.
• Properly update MethodSemanticsAttributes in the AsmEditor component.
• Fixed various bugs in the EventFiredBy analyzer.
• Fixed some bugs relating to parsing custom attributes.
• Improved detection of member obsolescence when displaying tooltips.
• Added support for displaying init property accessors in tooltips.
• Fixed an analyzer crash caused by invalid type attributes generated by obfuscators.
• Fixed a jump to reference issue in the entry point comment added when decompiling a module node
• ILSpy decompiler:
  ○ Fixed array initializer detection for enum arrays where the enum was located in a different module.
  ○ Fixed syntax highlighting color for preprocessor directives.
  ○ Fixed and improved delegate construction detection (co-authored by @mobile46).
  ○ Fixed decompiler not removing unnecessary parameter names in anonymous functions leading to compiler errors.
  ○ Improve debug info generation for inlined finally methods in yield return state machines.
  ○ Improve performance and reduced heap allocations in the decompiler and IL disassembler.
  ○ Extended type analysis for switch, throw, and ckfinite OpCodes.
  ○ Fixed a crash that occurred when the HandlerStart property of an exception handler was null (by @mobile46).
  ○ Fixed setting incorrect brace annotations for switch case blocks.
  ○ Extended support for methods utilizing the __arglist parameter.
  ○ Improved jump-to-reference navigation in the IL disassembler.
  ○ Improved ambiguous type name analysis.
  ○ Fixed a missing space not being added before the new() generic parameter constraint.
  ○ Fixed a rare bug that occurred when decompiling obfuscated exception handler filter blocks.
  ○ Fixed incorrect placement of the [Optional] attribute on a parameter with a decimal constant.
  ○ Fixed a nasty indentation bug in the C# decompiler leading to broken indentation of long property/method call chains
  ○ Improved decompilation of nested generic types for obfuscated assemblies where the type name does not contain generic argument count
• Debugger:
  ○ Fix a potential exception when searching a dynamic module (by @mitchcapper).
  ○ Improved debugger evaluation correctness and accuracy.
  ○ Fix timing issues in debugger thread dispatchers.
  ○ Display a warning message when detaching the debugger will lead to process termination.
  ○ Fix Locals windows failing to display locals when debugging a module with an invalid MVID.
  ○ Child nodes should not be displayed for values of types IntPtr and UIntPtr.
  ○ Fix the architecture incompatibility warning for files targeting .NET Framework 1.x but being executed on CLR version 2.
  ○ CorDebug:
    ■ Improve suppression of NGEN image loading leading to a better debugging experience for modules present in the GAC.
    ■ Introduce a workaround for a .NET 6.0 bug that occurred when a debugger was attached to a process that utilized dynamic modules. (by @josegomez)
    ■ Use the CorDebug API directly to read thread and exception information to avoid issues with certain anti-dumping techniques.
    ■ Improve debugging support for legacy .NET Framework versions.
  ○ Mono/Unity:
    ■ Improved dynamic module detection and metadata fetching for newer Mono debugger API versions.
    ■ Fix computation of OffsetToStringData value resulting in improved evaluation accuracy and fixed Show in Memory command result.
    ■ Improved and optimized computation of OffsetToArrayData, it should now work smoother on newer Mono debugger API versions.
    ■ Use MDToken-based resolution for types and methods when possible on newer Mono debugger API versions.
    ■ Improve the result of the Show in Memory command for objects on newer Mono debugger API versions.
• BAML decompiler:
  ○ Improved analysis of BAML connection IDs.
  ○ Fixed incorrect decompilation of readonly properties in XAML code.
  ○ Fixed a crash resulting from unescaped member identifiers.

Dependency updates:
• Updated dnlib to 3.6.0
• Updated Iced to 1.18.0
• Roslyn compiler to 4.4.0
• VS MEF to 17.2.4
Download
Code:
https://github.com/dnSpyEx/dnSpy/releases/tag/v6.3.0
- Standalone x86:
Code:
https://github.com/dnSpyEx/dnSpy/releases/download/v6.3.0/dnSpy-net-win32.zip
- Standalone x64:
Code:
https://github.com/dnSpyEx/dnSpy/releases/download/v6.3.0/dnSpy-net-win64.zip
- Standalone with .NET Core x86:
Code:
https://github.com/dnSpyEx/dnSpy/releases/download/v6.3.0/dnSpy-netframework.zip
__________________
thedutchjewel.freehostia.com
Reply With Quote
The Following User Gave Reputation+1 to TheDutchJewel For This Useful Post:
chessgod101 (01-21-2023)
The Following 15 Users Say Thank You to TheDutchJewel For This Useful Post:
alekine322 (01-22-2023), belisarius (02-27-2023), besoeso (01-21-2023), chessgod101 (01-21-2023), CRC32 (01-21-2023), kienmanowar (02-27-2023), MarcElBichon (01-21-2023), niculaita (01-21-2023), TQN (01-22-2023), user_hidden (01-21-2023), WillyTerra (01-28-2023), wilson bibe (01-22-2023), WRP (01-22-2023), Zeokat (01-21-2023)