Sign In
.NET Security Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
CAS
ClickOnce
CLR v4
CNG
Cryptography
Debugging
Orcas
Other
Pages
Policy
SecAnnotate
Security
Silverlight
SSCLI
StrongName
Transparency
Under the Hood
Visual Studio
Windows
XML
Archive
Archives
April 2010
(1)
February 2010
(1)
November 2009
(7)
June 2009
(4)
May 2009
(6)
March 2009
(1)
December 2008
(2)
August 2008
(1)
July 2008
(2)
May 2008
(2)
March 2008
(2)
February 2008
(1)
January 2008
(1)
October 2007
(2)
June 2007
(1)
May 2007
(5)
April 2007
(1)
March 2007
(5)
February 2007
(3)
January 2007
(5)
December 2006
(2)
November 2006
(3)
October 2006
(5)
September 2006
(2)
August 2006
(1)
July 2006
(6)
June 2006
(6)
May 2006
(7)
April 2006
(7)
March 2006
(6)
February 2006
(7)
January 2006
(9)
December 2005
(7)
November 2005
(8)
October 2005
(8)
September 2005
(13)
August 2005
(7)
July 2005
(8)
June 2005
(4)
May 2005
(10)
April 2005
(6)
March 2005
(10)
February 2005
(9)
January 2005
(10)
December 2004
(27)
November 2004
(12)
October 2004
(12)
September 2004
(10)
August 2004
(10)
July 2004
(10)
June 2004
(11)
May 2004
(7)
April 2004
(15)
March 2004
(21)
February 2004
(12)
January 2004
(3)
December 2003
(1)
November 2003
(5)
October 2003
(1)
June 2003
(2)
MSDN Blogs
>
.NET Security Blog
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
.NET Security Blog
Declarative Security and Reflection
Posted
over 2 years ago
by
shawnfa
4
Comments
If you’re using the CustomAttributeData APIs to examine declarative security permission, you might notice that the returned information looks a little strange. The CustomAttributeData object that you’ll see for the declarative security attribute...
.NET Security Blog
Is CAS dead in .NET 4?
Posted
over 2 years ago
by
shawnfa
7
Comments
With all the changes in the security system of .NET 4, the question frequently arises “so, is CAS dead now?”. One of the reasons that this question comes up so frequently, is that the term CAS in the .NET 1 security model was overloaded to refer to many...
.NET Security Blog
Using SecAnnotate to Analyze Your Assemblies for Transparency Violations – An Example
Posted
over 3 years ago
by
shawnfa
0
Comments
SecAnnotate (available in the final .NET 4 SDK, and in beta form here ) can be used to analyze your assemblies, especially APTCA assemblies in order to find transparency violations without needing code coverage from a test case. Instead, the static analysis...
.NET Security Blog
SecAnnotate Beta
Posted
over 3 years ago
by
shawnfa
0
Comments
One of the design goals of the security transparency system in the CLR is that it should be as static as possible and not rely on dynamic state (such as the call stack) to function. A fallout of this is that we can write tools to analyze assemblies and...
.NET Security Blog
Differences Between the Security Rule Sets
Posted
over 3 years ago
by
shawnfa
0
Comments
In my last post I talked about the two different security rule sets supported by the v4 CLR . At a high level, level 1 is the v2.0 security transparency model, and level 2 encompasses the updated v4 security transparency model. Digging down...
.NET Security Blog
Transparency Models: A Tale of Two Levels
Posted
over 3 years ago
by
shawnfa
0
Comments
Earlier this week, we looked at how the v4 CLR continued the evolution of the security transparency model that started in v2 and started evolving with Silverlight in order to make it the primary security enforcement mechanism of the .NET 4 runtime. The...
.NET Security Blog
Transparency as Enforcement in CLR v4
Posted
over 3 years ago
by
shawnfa
0
Comments
Now that we know the basics of security transparency , let's look at how it evolved over time. In .NET v2.0, many of the transparency rules we previously looked at were in place , with the exception of some of the inheritance rules that were introduced...
.NET Security Blog
Bridging the Gap Between Transparent and Critical Code
Posted
over 3 years ago
by
shawnfa
0
Comments
Last time we looked at the set of operations that can only be performed by security critical code . One interesting observation is that just because you are doing one of these operations does not mean that your method in and of itself is security sensitive...
.NET Security Blog
Transparency 101: Basic Transparency Rules
Posted
over 3 years ago
by
shawnfa
1
Comments
One of the biggest changes in the .NET 4 security model is a move toward security transparency as a primary security enforcement mechanism of the platform. As you'll recall, we introduced security transparency in the v2 release of .NET as more of an audit...
.NET Security Blog
CLR v4 Security Policy Roundup
Posted
over 3 years ago
by
shawnfa
3
Comments
Over the last few weeks we’ve been taking a look at the updates to the CLR security policy system in the v4 release of the .NET Framework. Here’s a quick index of those topics: Overview Security Policy in the v4 CLR Sandboxing in .NET 4...
.NET Security Blog
Temporarily re-enabling CAS policy during migration
Posted
over 3 years ago
by
shawnfa
4
Comments
Over the last few weeks we’ve been looking at the changes to security policy in .NET 4, namely that security policy is now in the hands of the host and the operating system. While we’ve looked at how to update code that implicitly uses CAS policy , loads...
.NET Security Blog
Coding with Security Policy in .NET 4 part 2 – Explicit uses of CAS policy
Posted
over 3 years ago
by
shawnfa
1
Comments
Over the last few posts, I’ve been looking at how the update to the CLR v4 security policy interacts with how you write managed code against the v4 .NET Framework. So far we’ve looked at the implicit uses of CAS policy, such as loading assemblies...
.NET Security Blog
More Implicit Uses of CAS Policy: loadFromRemoteSources
Posted
over 3 years ago
by
shawnfa
6
Comments
In my last post about changes to the CLR v4 security policy model, I looked at APIs which implicitly use CAS policy in their operation (such as Assembly.Load overloads that take an Evidence parameter), and how to migrate code that was using those APIs...
.NET Security Blog
CLR 4 Security on Channel 9
Posted
over 3 years ago
by
shawnfa
1
Comments
A while back I did an interview with Charles Torre about the changes to security in CLR v4, and he posted it to the Channel 9 videos site yesterday. I start out talking about the security policy changes I've been covering here over the last week...
.NET Security Blog
Visual Studio 10 Security Tab Changes
Posted
over 3 years ago
by
shawnfa
1
Comments
Kris Makey, who works on the Visual Studio team, has written up a good blog post about the changes you’ll see on the security tab in Visual Studio 10 when it comes to editing permission sets . He covers what the changes are, and some of the reasons...
.NET Security Blog
Coding with Security Policy in .NET 4.0 – Implicit uses of CAS policy
Posted
over 3 years ago
by
shawnfa
4
Comments
Last week we looked at sandboxing and the v4 CLR – with the key change being that the CLR now defers exclusively to the host application when setting up sandboxed domains by moving away from the old CAS policy model, and moving instead to simple sandboxed...
.NET Security Blog
Sandboxing in .NET 4.0
Posted
over 3 years ago
by
shawnfa
7
Comments
Yesterday I talked about the changes in security policy for managed applications , namely that managed applications will run with full trust - the same as native applications - when you execute them directly. That change doesn’t mean that managed code...
.NET Security Blog
Security Policy in the v4 CLR
Posted
over 3 years ago
by
shawnfa
13
Comments
One of the first changes that you might see to security in the v4 CLR is that we’ve overhauled the security policy system. In previous releases of the .NET Framework, CAS policy applied to all assemblies loaded into an application (except for in...
.NET Security Blog
.NET 4.0 Security
Posted
over 3 years ago
by
shawnfa
11
Comments
The first beta of the v4.0 .NET Framework is now available , and with it comes a lot of changes to the CLR's security system. We've updated both the policy and enforcement portions of the runtime in a lot of ways that I'm pretty excited to finally see...
.NET Security Blog
Authenticated Symmetric Encryption in .NET
Posted
over 3 years ago
by
shawnfa
5
Comments
Over the last week, we've made a couple of updates to our Codeplex projects to add authenticated symmetric encryption to the managed cryptography surface area for the first time. Since we've never supported authenticated symmetric algorithms in managed...
.NET Security Blog
MD5 on Silverlight
Posted
over 4 years ago
by
shawnfa
1
Comments
Reid Borsuk, an SDE/T on the CLR security team, has released a fully transparent implementation of the MD5 hash algorithm to the MSDN Code Gallery . Since the code is entirely transparent, it can be used as part of a Silverlight application that...
.NET Security Blog
CryptoConfig
Posted
over 4 years ago
by
shawnfa
1
Comments
The crypto config schema has been a bit of a hot topic around here lately, specifically around how to modify the CLR's machine.config to get custom crypto types registered with CryptoConfig. Let's take a quick look at what CryptoConfig is first, and then...
.NET Security Blog
Using RSACryptoServiceProvider for RSA-SHA256 signatures
Posted
over 4 years ago
by
shawnfa
11
Comments
Earlier this month, we released .NET 3.5 SP 1 . One of the new features available in this update is that RSACryptoServiceProvider has gained the ability to create and verify RSA-SHA256 signatures. Since RSACryptoServiceProvider relies on the underlying...
.NET Security Blog
CLR Security Team CodePlex Site
Posted
over 4 years ago
by
shawnfa
1
Comments
The CLR Security Team just launched our CodePlex site: http://www.codeplex.com/clrsecurity . Currently, it contains two assemblies that provide additional functionality to the security APIs shipped in v3.5 of the .NET Framework. We'd love your feedback...
.NET Security Blog
Dr. Dobbs Looks at Silverlight Security
Posted
over 4 years ago
by
shawnfa
1
Comments
Dino Esposito has an article in the March Dr. Dobb's Journal taking a look at the Silverlight platform from a security perspective: The Silverlight 2.0 Security Model . The second half in particular boils down some of the details of the transparency...
Page 1 of 15 (368 items)
1
2
3
4
5
»