vote up 7 vote down star
1

I want to get some other opinions on this...

I like the idea of Code Access Security for desktop applications. But in the lifetime of .NET I have to admit I've never actually had a situation where CAS has actually blocked something to my benefit.

I have, however, had many times where something as simple as sharing a quick .NET application across a mapped drive becomes an enterprise code access nightmare. Having to break out caspol.exe to create trusted path rules and having no clear way of knowing why something failed makes it seem like CAS adds way more frustration to the development and deployment process than it offers in security.

I'd like to hear either some situations where CAS has actually helped more than hurt, or if there are other people out there frustrated with its current implementation and defaults.

flag
There's a patch for .net 3.5 that specifically addresses the issue of CAS over a networked drive – Chris Ballance Jun 26 at 4:17

3 Answers

vote up 2 vote down check

The .NET team them self have comed to the same conclusion the assembly access security is being reworked for .NET#4. Take a look at this blog for more info: .NET Security blog

link|flag
vote up 3 vote down

Here, here! I've shared many of the same frustrations. And of course, the over-complication and horrid documentation basically encourage developers to bypass it or use overly broad rules. Security will always be a tough nut for anyone but CAS is really difficult to do right.

link|flag
1  
Good point. After you beat your head against the wall enough and just jack everything up to "Full Trust" the whole point to it is defeated... – routeNpingme Jun 26 at 4:12
vote up 1 vote down

I've had to deal with CAS but it wasn't too difficult since I only had to deploy it on a dozen workstations or so. You can also push out the required settings via Group Policy.

But to answer your question, no, I don't think it ever helped.

Look on the bright side though, starting with .NET 3.5 you can run apps across a network share without CAS.

link|flag
I didn't know they made that change in 3.5.. is it 3.5 or 3.5 SP1? – routeNpingme Jun 26 at 4:15
SP 1 according to this:stackoverflow.com/questions/221689/… Haven't tried it myself though. – Jay Riggs Jun 26 at 4:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.