B
bayam
I have a web application that inserts several enumerated lists into the Cache
on the Initialize event of global.asax:
Cache _cache = Context.Cache;
_cache.Insert("Countries", htCountries);
Sometime last night, the cached variable htCountries started to return a
null value, causing our code to crash. Nothing in the code assigns this
variable to null. Restarting the applicaton fixed the problem. (This
particular code has been around for 3 months, and this error has never
occurred before.)
Is there a know security exploit of the .NET Cache object that would allow a
hacker to do this?
on the Initialize event of global.asax:
Cache _cache = Context.Cache;
_cache.Insert("Countries", htCountries);
Sometime last night, the cached variable htCountries started to return a
null value, causing our code to crash. Nothing in the code assigns this
variable to null. Restarting the applicaton fixed the problem. (This
particular code has been around for 3 months, and this error has never
occurred before.)
Is there a know security exploit of the .NET Cache object that would allow a
hacker to do this?