I stumbled upon this code:
static void Main()
{
typeof(string).GetField("Empty").SetValue(null, "evil");//from DailyWTF
Console.WriteLine(String.Empty);//check
//how does it behave?
if ("evil" == String.Empty) Console.WriteLine("equal");
//output:
//evil
//equal
}
and I wonder how is it even possible to compile this piece of code. My reasoning is:
According to MSDN String.Empty is read-only therefore changing it should be impossible and compiling should end with "A static readonly field cannot be assigned to" or similar error.
I thought Base Class Library assemblies are somehow protected and signed and whatnot to prevent exactly this kind of attack. Next time someone may change System.Security.Cryptography or another critical class.
I thought Base Class Library assemblies are compiled by NGEN after .NET installation therefore changing fields of String class should require advanced hacking and be much harder.
And yet this code compiles and works. Can somebody please explain what is wrong with my reasoning?
IntPtr.Zero? OrInt32.MaxValue? Maybe what you're really suggesting is thatinitonlyinSystem.dllshould never be bypassed by reflection. – Ben Voigt Jun 9 '11 at 14:13initonlyis sufficient or perhaps it'd be cutting too deep; we can't really tell. Point is, the CLR team should fix it. – Andre Luus Jun 9 '11 at 14:19