Home All Groups Group Topic Archive Search About

.NET Security

microsoft.public.dotnet.security
Score Basic CAS Question
Robert Zurer - 7 Jan 2006 12:19 PM - 2 messages
I am new to CAS and sould like to know if it is possible to do the following: I would like to attribute properties and methods ClassA  so that they may only be called by ClassB otherwise an error will be thrown. ...
Score SecurityException when app moved to network
pargat.singh - 6 Jan 2006 9:43 PM - 6 messages
Hi Everyone:    I have asimple app as below using System; using System.IO; using System.Security; class App{    public static void Main(string[] args){       StreamReader reader = new StreamReader(args[0]);       Console.WriteLine(reader.ReadToEnd()); ...
Score HTTPS Posting Help needed
Paul Phillips - 6 Jan 2006 9:25 PM - 4 messages
I have been struggling with this for a couple of weeks. I have a digital certificate installed in my certificate collection store on my local computer.  The site I am trying to post to also has our certificate installed is said it is ready to recieve transactions.  I have created a file ...
Score ASP.NET app files security
Vi - 6 Jan 2006 9:23 PM - 4 messages
I'm working on a ASP.NET app and as part of the app I'm uploading some pictures to the web server and these pictures can then be accessed by authorized users by clicking on a link. All the aspx files a protected by a custom security solution that checks if ...
Score Where to get good security advice?
Mad_Gerbil - 6 Jan 2006 9:23 PM - 2 messages
I'm reading O'Reilly's .NET Security right now and it is very informative.  The book is filling me in on the various classes in the Security namespace and teaching me the very basics on how to use it. ...
Score FIPS Validated AES Encryption
Ron IPS - 6 Jan 2006 2:08 PM - 2 messages
I'm needing to use FIPS 140-2 validated AES encryption with in .NET 1.1.  I have gotten conflicting reports regarding the validation status of this particular class.  Can someone please verify whether or not the Rijndael ...
Score CAS and FileIOPermission
wbarthol - 5 Jan 2006 2:09 AM - 4 messages
I am trying to restrict an application I am writing to a single directory (not known until run-time) to prevent any possible directory traversal attacks (the application needs to deal with untrusted-user-supplied paths). What I have done is: ...
Score Limiting File IO
Spike - 4 Jan 2006 7:10 PM - 5 messages
How can i limit the access to file IO? Im using C#, the code is executing on the local machine i can enable access to file IO with: PermissionSet ssc = new PermissionSet(null); ssc.AddPermission(new SecurityPermission(SecurityPermissionFlag.Execution)); ssc.AddPermission(new FileIOPermission(PermissionState.Unrestricted)); ...
Score Unable to emit assemble:
Bill S. - 4 Jan 2006 6:39 PM - 2 messages
Hi, I'm trying to run my app from a server. I've given it a strong name using sn.exe and have put the AssmeblyKeyFile("mypath") attribute into the AssemblyInfo.vb module. Now I get the error, "Unable to emit assembly: ...
Score Question about client certificates retrieval process in ASP.NET
José Ignacio Aguillo - 4 Jan 2006 9:23 AM - 3 messages
Hi all, I'm developing a web application (ASP.NET, VB.NET) with client authentication based on personal certificates. My web server (IIS 5.0) is configured correctly to perform the authentication but here it is my problem: To retrieve the client certificate in server I can use the traditional ...
Score Validating an assembly
Anthony - 3 Jan 2006 3:23 PM - 8 messages
I am attempting to write a application using .net remoting. i would like to validate that the client code has not been tampered with. From my understanding there is a way to validate the client's assembly, possibly using digital signing. I understand how to create the hash values and even ...
Score Get a WindowsPrincipal from a SecurityIdentifier (or system accoun
Bart Vries - 3 Jan 2006 3:19 PM - 11 messages
Hi, I'vr written a function which checks if a use has rights to write a file. This function uses WindowsPrincipal.IsInRole to check if the user is part of a role defined on the file acl. Now I want ot change the function to also ...
Score Security request failure
Bill S. - 2 Jan 2006 9:28 PM - 6 messages
Hi, My app runs fine when it's in a folder on any given user's machine on the network. However, when I move the app to a location on the server, I get this error: Request for the permission of type ...
Next » 2 3 4 5 6 7 8 9 10