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)
November, 2004
MSDN Blogs
>
.NET Security Blog
>
November, 2004
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
.NET Security Blog
Refactoring the Managed StrongName Project
Posted
over 8 years ago
by
shawnfa
1
Comments
Looking over the Managed StrongName code for today's post, I've become dissatisfied with several things in the current code base, and I think that a bit of refactoring is in store for this project before its next addition. One of the major things is the...
.NET Security Blog
Extracting Public Key Blobs
Posted
over 8 years ago
by
shawnfa
2
Comments
(Updated 12/3/04 for code refactoring ) Before letting another two months pass, its time to once again update the managed sn.exe port . Today's update adds three modes, each of which allow extraction of a public key blob from various sources: Flag Description...
.NET Security Blog
Next Generation Hardware Speculation
Posted
over 8 years ago
by
shawnfa
0
Comments
Yesterday there were a couple of announcements that seem to impact the next generation of video game consoles. First, IBM, Sony and Toshiba announced that they will be making an announcement about the details of the Cell chip early next year. Not too...
.NET Security Blog
Managed Hosting API Take 3: the Host SecurityManager
Posted
over 8 years ago
by
shawnfa
4
Comments
Now that we've examined how to customize the AppDomain creation process , lets go back to our EchoAppDomainManager and look at some other places the CLR lets a managed host customize its behavior. Looking back at the output of running HelloWorld with...
.NET Security Blog
An Interesting Take On Two-Factor Authentication
Posted
over 8 years ago
by
shawnfa
6
Comments
(via Bruce Schneier ) Two banks in New Zealand are introducing an interesting form of two-factor authentication. Looks like anyone who tries to transfer $2,500 or more to a third party bank account via the website will be required to use their new technology...
.NET Security Blog
What's the FullTrust List For Anyway?
Posted
over 8 years ago
by
shawnfa
0
Comments
Time for a quick break from managed hosting. I've been asked several times on this blog and in the newsgroups about the FullTrust list that the CLR keeps. What is it, and why does it exist? The reason for the list is due to a problem that exists when...
.NET Security Blog
Customizing the AppDomain Creation Process
Posted
over 8 years ago
by
shawnfa
8
Comments
Last week, I posted about AppDomainManagers . Today, I'm going to look a little more closely at how the AppDomainManager allows you to customize the domain creation process. Specifically there are two methods that, when overridden, allow you to modify...
.NET Security Blog
ZoneSandboxAppDomainManager.cs
Posted
over 8 years ago
by
shawnfa
4
Comments
1 using System; 2 using System.Reflection; 3 using System.Security; 4 using System.Security.Policy; 5 6 namespace AppDomainManagers 7 { 8 public sealed class ZoneSandboxAppDomainManager : AppDomainManager 9 { 10 private AppDomain internetDomain = null...
.NET Security Blog
The Managed Hosting API
Posted
over 8 years ago
by
shawnfa
12
Comments
With v1.0 and v1.1 of the CLR, if you wanted to have much control over how the CLR was working under the covers, you needed to write an unmanaged host. The unmanaged hosting API still exists with Whidbey (in fact, its gotten quite a few improvements of...
.NET Security Blog
Peter Torr Provides More Details on Sandboxing AppDomains
Posted
over 8 years ago
by
shawnfa
3
Comments
Peter Torr from the Visual Studio Tools for Office team recently expanded on my sandboxed AppDomain set of posts. Peter adds some aditional code to change the code base of the AppDomain, which prevents untrusted addin types from sneaking into the FullTrust...
.NET Security Blog
Another Fix for the Infamous Calc Problem
Posted
over 8 years ago
by
shawnfa
0
Comments
Last month I wrote about replacing Calc with CalcPlus . If you'd really like to keep the default calculator around, I've stumbled across another fix for the problem. This involves editing the registry, so the standard disclaimers apply . Recall root of...
.NET Security Blog
An Enhanced Version of the Sandboxed AppDomain
Posted
over 8 years ago
by
shawnfa
14
Comments
Last week I showed how to create an AppDomain with a limited set of permissions . I also presented an easy way to create a StrongNameMembershipCondition . Now I'll put the two together to make an enhanced version of the sandboxed AppDomain. Why create...
Page 1 of 1 (12 items)