puff / EazyDevirt

A tool for automatically reconstructing IL code from an assembly virtualized with Eazfuscator.NET
GNU General Public License v3.0
148 stars 33 forks source link

Support out parameter modifier in virtualized methods. #5

Closed puff closed 1 year ago

puff commented 1 year ago

Currently, EazyDevirt will fail to discover virtualized methods that set parameters using the out keyword. It's possible the local variable location may need to be resolved from the parameter array as well.

image

puff commented 1 year ago

Looks to be resolved. Works on ref and out parameters.