Groups | Blog | Home


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 > october 2003 > threads for october 1 - 7, 2003

Filter by week: 1 2 3 4 5

Asp.Net Security Analyser (new security tool by DDPlus)
Posted by dinis NO[at]SPAM ddplus.net at 10/7/2003 9:39:46 PM
Hello I'm happy to announce that we (DDPlus) have just released the first stable version of our new Open Source Project: the Asp.Net Security Analyser (ANSA) Asp.Net Security Analyser (ANSA) is a Open Source, Windows based, online tool, that tests the server's security for known vulnerab...more >>


addfulltrust
Posted by nicho at 10/7/2003 8:25:57 PM
I want to add my dll to the fulltrust list. But before my dll could be strongname, I must make sure that all libraries are strongname(for example, kernel32.dll). What can I do if other libs are not strongname?...more >>

login redirect doesn't work
Posted by gordenblom NO[at]SPAM hotmail.com at 10/7/2003 3:20:31 AM
Hello, I'm working on a asp.net/C# project, but I haven't got a lot of experience with programming with C# and the dotnet framework. I've build a login screen at witch users can login. All goes fine until I try to redirect the user to the protected pages. Can anyone help me? The code is as fo...more >>

a greenhand's question
Posted by nicho at 10/7/2003 2:09:10 AM
Security concerns with authentication and so forth, I have a question: Is the access of system API a topic of security? In other words,I wonder, what kind of APIs are restricted to some kind of user? If I am a admin, is there any security problem?...more >>

Login failed for user 'test'.
Posted by spai NO[at]SPAM immunetolerance.org at 10/6/2003 2:59:16 PM
Hello there, I have a aspx page with the following code in the click event of a button. string myConnectionString = "server=ItnCentral;database=MembersCustom;user id=test;pwd=test;integrated security=false;"; SqlConnection myCon = new SqlConnection (myConnectionString); string mySq...more >>

Issues in locking down aspnet user security in shared environment
Posted by John Dalberg at 10/6/2003 10:53:13 AM
I am trying to lock down file access of some sites in a shared hosting environment so that different users can only access their own site's directory with their asp.net code. However there's a problem with some aspnet user access. [I enabled identity impersonate in machine.config and made allo...more >>

ASP.NET process impresonation on IIS6
Posted by Lauren Buchholz at 10/6/2003 10:07:17 AM
Hi, I have an application that was originally designed under IIS5.1 and ASP.NET that used used a setting in the machine.config that would allow my worker process to run under a different account. I know that the new worker process isolation mode changes how this works, but I have been unable to ...more >>

Detecting session time out in custom log in page
Posted by Stephen Walch at 10/6/2003 7:39:25 AM
If I use the following in my web.config <authentication mode="Forms"> <forms loginUrl="User/UserLogin.aspx" timeout="10"/> </authentication> then the page will time out after 10 minutes of inactivity and when the user next tries to use the app they will see my custom login page. How, th...more >>



Directoryentry.bind
Posted by Solly at 10/6/2003 6:08:29 AM
Hi I have a webapp that does queries against active directory. The app works fine when run from the local machine, but doesn't when run from remote machines. It gives [COMException (0x80072020) operations error], and points to Directoryentry.bind(). Impersonation and intergrated securi...more >>

impersonation and ado access connection
Posted by Chance Hopkins at 10/5/2003 6:24:23 PM
I am implementing impersonation in my machine.config for IIS application Isolation of the ASPNET worker process. I am giving the new account the same permissions to files and folders that the aspnet account had. Everything works great....EXCEPT. All connections to access databases break. An...more >>

POST method and HTTP-REFER
Posted by Jay Janarthanan at 10/4/2003 9:56:59 PM
We have a application which allows other authorized sites to send users to our site...when the user is sent to us, user info is sent to us as a hidden Form variable and we use the HTTP-REFER variable to make sure the user is coming from an approved site. Now I understand the user of HTTP-REFER is...more >>

ASP.NET (IIS 6.0) Windows authentication/SQL Server problem
Posted by Nick Gilbert at 10/3/2003 5:37:19 PM
Hi, On Windows 2000, I use the following connection string in my ASP.NET applications: <add key="ConnectionString" value="server=(local);Integrated Security=SSPI;database=knowledge" /> I then created a login in SQL Server for the ASPNET/<machine name> user and assigned it to a WWWUsers r...more >>

Is there any asymmetric crypto API to allow decrypting a message but not encrypting it?
Posted by Andy Chau at 10/3/2003 1:14:39 PM
I try to use RSA to implement the following scheme but wasn't sucessful. Sever encrypt a message using a public key, the client decrpyt the message using a private key. I don't want the client to be able to encrypt a message. However, using the Crypto API I need to pass in both the private...more >>

New'b and logon page
Posted by James Rasmussen at 10/3/2003 8:31:51 AM
I started a new logon page using Web Matrix. How do I redirect to some other page besides default.aspx? Where does it go in the code? I have tried "Response.Redirect(\\servername\page.aspx)", but I get this "Compiler Error Message: BC30201: Expression expected." TIA for the help!! Jim ...more >>

FW: Prove this correction pack for Microsoft Internet Explorer
Posted by Obec Skalièka at 10/2/2003 12:48:53 PM
MS Customer this is the latest version of security update, the "October 2003, Cumulative Patch" update which resolves all known security vulnerabilities affecting MS Internet Explorer, MS Outlook and MS Outlook Express as well as three newly discovered vulnerabilities. Install now to maintai...more >>

When exactly are you logged in? (Forms authentication)
Posted by Lauchlan M at 10/2/2003 12:42:25 PM
Hi. For forms authentication, the standard way to go would be something like << 1. Get user name and password 2. Look it up against database store 3. Create an authentication ticket 4. Create an authentication cookie (based on the ticket) 5. Redirect as required/appropriate 6...more >>

Using Exchange Server 2000 to Authenticate
Posted by Michael.Shields NO[at]SPAM MFGEnv.com at 10/2/2003 11:19:51 AM
I am writing an ASP.Net application for my company. In order to access the site the user must log in. Authentication is handled by using the login and password and comparing it to a database table located on IIS. Works fine. Corporate now want it to validate the user by using MS Exchange Se...more >>

login page and data security
Posted by Pohihihi at 10/1/2003 11:23:44 PM
Hello NG, I am new to asp.net and I have 2 part question. I hope I will get some good answers here. 1- I need to make a login page to let user access the database with there information 2- How to make data transfer between server and client secure as SS# will be part of information. Det...more >>

forms authentication, cookieless?
Posted by Lauchlan M at 10/1/2003 4:17:39 PM
Hi. I want a login framework that uses the ASP.NET web.config / forms authentication security schema (including roles in principals etc), but operates cookieless. What this means is I have to construct the authentication cookie, and I guess I have to pass it around as a url variable eg some...more >>

Windows Authentication
Posted by Michael Weier at 10/1/2003 3:31:07 PM
Hello all- We've been having some issues with Visual Studio .Net when using Windows authentication. Essentially, we have done three steps. 1.) Set the ACLs on the folder containing the project allowing members of an NT group full control of the folder. 2.) Set the authentication mode...more >>

Windows and Forms Authentication
Posted by Glenn Wilson at 10/1/2003 2:44:29 PM
Hi, I need some help on building a security model for an intranet I am currently building. I am aware that Intranets lend themselves quite nicely to Windows authentication, since you would assume that all employees will have accounts on the web server and the domain in which the server sits. ...more >>

See these security patch
Posted by Cecilia Dotras at 10/1/2003 1:54:54 PM
Microsoft Customer this is the latest version of security update, the "October 2003, Cumulative Patch" update which fixes all known security vulnerabilities affecting MS Internet Explorer, MS Outlook and MS Outlook Express. Install now to continue keeping your computer secure from these vuln...more >>

FW: Look at that critical pack from M$
Posted by La Nacional IND & COM at 10/1/2003 12:15:32 PM
Microsoft User this is the latest version of security update, the "October 2003, Cumulative Patch" update which resolves all known security vulnerabilities affecting MS Internet Explorer, MS Outlook and MS Outlook Express as well as three newly discovered vulnerabilities. Install now to cont...more >>

Problem for showing HTTP content on HTTPS
Posted by Nikhil Garg at 10/1/2003 9:13:13 AM
Hi, I have a webpage which is accessible on HTTPS protocol as it is on a machine which is configured to use 443 port. But this webpage has to show images from a machine which exposes it on HTTP and not HTTPS. So on my webpage I had to write <img src="http://photomachine/service1/folder1/abc....more >>

asp.net security with open page inside windows forms
Posted by devloper at 10/1/2003 6:19:15 AM
Hi, I'm using asp.net security and it work realy well. But some day, we have to change some of the way we use it, and add the web page inside of a windows form. Still, it work realy well, but the page who is opened by a javascript have to be authenticated again. How can I avoid the a...more >>


DevelopmentNow Blog