| Thread | Last Post | Replies |
|
| .NET security allowing fulltrust but shouldn't ?!? | 31 Jul 2004 19:43 GMT | 1 |
I'm trying to set up a SANDBOX-directory to test security issues. Therefor I created a Permission Set with low (or even no) permissions, so that a test application in that Code Group must throw an exception. I created a Code Group (Code Groups\All_Code\.NET Sandbox) with an URL
|
| Protect IL Code | 31 Jul 2004 12:09 GMT | 19 |
All, What is the best way to protect IL code? --------------------------------------------------- Typical scenario:
|
| Windows Service connecting to Web Service | 30 Jul 2004 12:29 GMT | 5 |
I've got a console app that uses a filesystemwatcher to monitor a directory for new log files. It then parses the data in the file into a dataset upon creation, then connects and sends the dataset to a webservice. The connection to the web service is HTTPS and it reads NTLM ...
|
| basic authentication | 29 Jul 2004 20:22 GMT | 2 |
I have a link, which if I click redirects me to streaming server. The link is to a media file which opens up when I click on the link. I am asked for a username and password before the video is played. Now, can I automate this basic authentication in code? Like when
|
| Sessions Limit ASP.net | 29 Jul 2004 12:02 GMT | 1 |
How Can i limit number of sessions in ASP.NET......
|
| assembly verification | 28 Jul 2004 19:55 GMT | 1 |
I'm about writing an application which would extensively use reflections and dynamic assemblies loading. The application will operate in a rather wild environment, so I need some method which would let me verify that an assembly
|
| final word on exportable algorithms | 27 Jul 2004 23:47 GMT | 2 |
I'm trying to build an exportable secure system and am having a hard time finding the definitive answer on export laws. Can't find it on msdn and everything I come accross on the net is from '96-'97 I want to use an asymmetric RSA public/private handshake to establish a
|
| Form authentication via LogonUser does not pass credentials to ifr | 26 Jul 2004 23:06 GMT | 1 |
we are trying to use a web form to authenticate users against Active Directory on .NET 1.1 running under Windows 2003. The authentication using LogonUser works just fine, and we can assert things like if ( Context.User.Identity.IsAuthenticated ) { do stuff }
|
| ASP.NET (IIS6) Accessing files on another server | 24 Jul 2004 22:41 GMT | 1 |
I receive the error message "Access tot the path <\\server\\share\folder> denied" when I trie to access files on another folder. My application is configured to use impersonation and Windows Authentication : <identity impersonate="true"/> <authentication mode="Windows" /> This ...
|
| LDAP binding | 23 Jul 2004 15:27 GMT | 3 |
I am trying to bind to an Active Directory server using the following snippet, but I always get a user unknown or bad password error message. DirectoryEntry de = new DirectoryEntry(LDAP://srv-dell.waysoft.local); de.AuthenticationType = AuthenticationTypes.ServerBind; ...
|
| Strong Names and Excel | 23 Jul 2004 13:01 GMT | 1 |
I have been attempting to put a strong name into my Assembly. I generated it and put it into the bin of my file and then I tried to put in <AssemblyKeyFile("mykey.snk")> and when I did I get the error: unable to emit assembly: Referenced assembly 'Interop.VBIDE' does not have a ...
|
| SecurityPermission failed on ActiveX when accessing remote server | 23 Jul 2004 12:49 GMT | 3 |
I'm trying to make a web page that gathers data from different web servers using JavaScript and ActiveX. I have tried to make an ActiveX in c# .NET, but I get an error message when I try to connect to the remote server
|
| howto create pfx file for private key | 22 Jul 2004 21:41 GMT | 2 |
Are there any .NET/CAPICOM/CryptoAPI call to write a private key to a pfx file? Private key is retrieved from CA archives and the public part of the certificate is also available. I didn't see any object that could put these together and export it to a pfx file.
|
| GetEffectiveDateString is bugged? | 22 Jul 2004 17:11 GMT | 1 |
I try to get the validity date of a certificate with GetEffectiveDateString. It doesn't return the same dates as the certificate viewer included in Windows but it returns a right date but with a wrong time. My pc is located in Italy with +1 GMT and daylight saving time.
|
| Encrypt to readable text | 22 Jul 2004 17:05 GMT | 2 |
I want to encrypt something and use the result as a registration key in my program, so it needs to be readable,but all of the encryption methods I have tried return unreadable strings. I need an encryption method that limits the result to chars that can be easily typed in via a ...
|