Archived Months
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
May 2008
June 2008
all groups > asp.net security > september 2004 > threads for september 8 - 14, 2004

Filter by week: 1 2 3 4 5

Cannot execute DTS package
Posted by Peter Afonin at 9/14/2004 12:05:26 PM
Hello, Our SQL server used to run under System account, and I had no problems executing DTS packages from the ASP.NET: Dim oPkg As DTS.Package oPkg = CreateObject("DTS.Package") oPkg.LoadFromSQLServer("WIN2000", , , DTS.DTSSQLServerStorageFlags.DTSSQLStgFlag_UseTrustedConnection, , , , "I...more >>


FormsAuthenticationTicket does not return userdata
Posted by shaddock NO[at]SPAM -NOSPAM-gmail.com at 9/14/2004 6:38:36 AM
Hello, I am trying to get FormAuthentication working, but the FormsAuthenticationTicket does not return the UserData. Does any one have any insight into this? To create a Authorization ticket, I am using this code: //grab the roles for this user. Pipe delimited string. string roles = Re...more >>

You are about to be redirected to a connection that is not secure
Posted by Steve Harris at 9/13/2004 3:19:14 PM
I have an application where I move a user from http to https to http. On every move from https to http I get the following popup: You are about to be redirected to a connection that is not secure......... I running on Windows 2000 with IE Version 6 with SP1 I have tried unticking the follo...more >>

.DLL Soucre Code Question
Posted by cheunghouse999 NO[at]SPAM yahoo.com.hk at 9/13/2004 12:42:56 AM
Hi All, I use .NET 1.1 vbc.exe command : vbc /r:xxx.dll /t:library test.vb to general a test.dll. This library provides some web custom controls for ASP.NET developer use. I don't use the vbc.exe option "/debug". Suppose I just only send test.dll file to other people use. Is it possi...more >>

nternal_server_error
Posted by mangia at 9/12/2004 7:05:02 PM
Hi, Looking for what I changed and how to correct. I have a Windows 2003 Sever that I have had running fine several .NET websites for over a year now. Today I decided to change my anonymous FTP site access from 'granted' and denied' IP addresses to 'not anonymous’ and require usernam...more >>

Further DPAPI (user store) problems
Posted by Martin at 9/12/2004 11:28:02 AM
Hi, I am trying to get the How To: Use DPAPI (User Store) from ASP.NET with Enterprise Services example working on my dev machine. Many thanks to Nicole for solving the last problem I had with this. I can now start the DPAPI service, and once I have re-registered the DPAPIComp.dll, I don'...more >>

Adding parameterized values. Which is more secure.
Posted by Ryan Taylor at 9/10/2004 12:09:31 PM
Hello. Adding some data to a sql server 2000 table. Is the later more secure than the former? If so, why? SqlCommand sqlCmd = new SqlCommand(update, sqlConn); sqlCmd.Parameters.Add("@hashedPass", user.HashedPassword); SqlCommand sqlCmd = new SqlCommand(update, sqlConn); sqlCmd.P...more >>

Windows Authentication - what happens when it's not available?
Posted by Dan Nash at 9/10/2004 1:43:24 AM
Hi I'm developing an Intranet system for a client, and am looking at using Windows Authentication, so that the network users don't have to log onto the network and Intranet seperately. However, the client wants users to be able to access the information on the Intranet from home. To that...more >>



Windows Auth - Active Directory
Posted by J. Shane Kunkle at 9/9/2004 2:20:35 PM
Hello, I have a web application that uses windows authentication. All the users log in using an active directory account. When an authenticated user performs certain actions I would like to retrieve specific information from their active directory record (email address, etc). I can obviou...more >>

Getting Group Membership
Posted by Raterus at 9/9/2004 11:23:53 AM
Hi, I'm trying to do something that I think should be pretty easy, take the = user who is authenticated with the application (intranet application/ = integrated windows authentication), and determine if they are in "this = group". Before, I had queried active directory, got the list of grou...more >>

Location element in the Web.config file. Allow System Admin whole directory, allow others specific page
Posted by Ryan Taylor at 9/9/2004 11:01:30 AM
Hello. I am developing an ASP.net C# application using forms authentication. I have a directory ManageUsers and I want all pages in that directory to be accessed by the system administrator. But, there is one page, ChangePassword.aspx that any authenticated user should be able to access. Ho...more >>

Process class and .NET security
Posted by Louis-Philippe Carignan at 9/9/2004 8:10:11 AM
Hi all, I posted this message a couple of days ago on microsoft.public.dotnet.framework and never got a response. I am trying here because it involves security but it's not ASP. If someone has a better idea where this post should go, please let met know. Here is my problem: I am using ...more >>

authentification
Posted by Dan Nash at 9/9/2004 1:09:01 AM
Hi guys, Couple of general questions for you. Background is I'm about to start writing version 2 of a client's intranet system in .NET (originally ASP). Just wanted to ask... First of all, I'm looking at using forms authentification with a database. So am I right in thinking that I need ...more >>

Connect to Sql server using DSN?
Posted by Ben at 9/8/2004 11:07:05 PM
Hi, Is it posssible to connect to Sql Server using DSN? Thanks, Ben ...more >>

Impersonate Identity doesn't work on the server
Posted by Peter Afonin at 9/8/2004 4:27:22 PM
Hello, In my application I have to impersonate users, so I add <identity impersonate="true" /> to the Web.config file. As long as I run the application on my PC - everything works fine. As soon as I put the application on the server - I cannot run the application at all, I get an "Acce...more >>

Web Services Encryption
Posted by Random at 9/8/2004 1:30:22 PM
I am becoming familiar with the standards and practices of secure Web Services, particularly encrypting the messages with Tokens. What I don't understand, and I can't find in documentation, is what type of encryption is used with the tokens, and how the key(s) are passed from the client to the ...more >>

RegEx for XSS (Cross-Site Scripting)?
Posted by clintonG at 9/8/2004 12:16:11 PM
Trying to use the RegularExpressionValidator with the following expression [^0-9a-zA-Z] which functions well when using code with the System.Text.RegularExpressions class but the same expression will not function when used with the RegularExpressionValidator leaving me wondering "what?" The e...more >>


DevelopmentNow Blog