-
sailro committed revision 145 to the Reflexil SVN repository, changing 54 files.
2009-11-13 22:25:05 UTC by sailro
-
sailro committed revision 144 to the Reflexil SVN repository, changing 27 files.
2009-11-13 21:40:51 UTC by sailro
-
Thanks for report. i will forward this to Jb Evain who is in charge of Mono.Cecil.
2009-10-27 21:19:29 UTC by sailro
-
Update: tests showed that bug in Mono.Cecil project.
Mono.Cecil.Metadata.MetadataWriter.AddUserString method use this command:
byte [] us = Encoding.Unicode.GetBytes (str);
Should work if change it to something this:
byte[] us = new Byte[Encoding.Unicode.GetByteCount(str)];
for (Int32 i = 0; i < (str).Length; i++)
Array.Copy(BitConverter.GetBytes(str[i]), 0, us, i * UnicodeEncoding.CharSize...
2009-10-25 17:39:08 UTC by nobody
-
I just open obfuscated assembly, don't change it and save it in Reflexil.
String in original assembly:
ldstr "\u0d5e\u0460\u0562\u0964\u0266\u0a68\u1f6a\u026c\u1d6e\u5f70\u3272\u0574\u0776\u1578\u127a\u1e7c\u1e7e\uf580\uea82\uea84\ue986\ua788\uca8a\ufd8c\uff8e\ufd90\ufa92\uf694\uf696\ued98\uf29a\uf29c\uf19e\ueca0\uc2a2\ucba4\uc6a6\ucea8\uceaa\udfac"
This string after saving in Reflexil...
2009-10-25 13:56:55 UTC by nobody
-
news:
- proper configuration for code injection with .NET 3.5 compiled files
- using up to date Mono.Cecil.Pdb (now fully managed)
bugfixes:
- fixed ArgumentOutOfRange with some compile errors (replace all with code)
- fixed error CS0006: Metadata file '...' could not be found.
2009-10-23 21:40:28 UTC by sailro
-
sailro made 1 file-release changes.
2009-10-23 21:39:03 UTC by sailro
-
sailro made 1 file-release changes.
2009-10-23 21:37:01 UTC by sailro
-
sailro made 2 file-release changes.
2009-10-23 21:31:02 UTC by sailro
-
sailro made 2 file-release changes.
2009-10-23 21:15:01 UTC by sailro