ASP.NET security » Computer internet security 
information computer networking security
 
|
|
|
News
|
Advertise
|
|
Products
|
Contact
 

Posts Tagged ‘ASP.NET security’

ASP.NET authentication

Thursday, November 1, 2007 23:49

s stated above, ASP.NET and IIS securities go hand in hand. Therefore ASP.NET authentication also relies on the settings that we make in IIS. ASP.NET offers following types of authentications: Authentication: the process of validating the identity of a user to allow or deny a request [4,9,10]. This involves accepting credentials ...

This was posted under category: .NET Framework security  |  Read Full Story  |  1 Comment

Decompilation Makes .NET Applications Open Source

Sunday, July 1, 2007 12:38

This is a common claim, and completely preposterous. Even if you could decompile to the absolute original source, including comments, local variable names etc, that wouldn't make the application Open Source Software. The Open Source movement is about software licences - what you have the legal right to do. If ...

This was posted under category: ASP.NET security, Decompilation  |  Read Full Story  |  0 Comments

Authorisation process of asp.net

Wednesday, June 27, 2007 21:55

Authorization is the process of determining the accessibility to a resource for a previously authenticated user. Note that authorization can only work on authenticated users, hence ensuring that no un-authenticated user can access the application. The syntax for specifying authorization in ASP.NET is as follows. <authorization> < [ allow | deny ...

This was posted under category: ASP.NET security  |  Read Full Story  |  0 Comments

Impersonation in asp.net

Wednesday, June 27, 2007 21:51

According to MSDN, "When using impersonation, ASP.NET applications can optionally execute with the identity of the client on whose behalf they are operating. The usual reason for doing this is to avoid dealing with authentication and authorization issues in the ASP.NET application code. Instead, you rely on Microsoft Internet Information ...

This was posted under category: ASP.NET security  |  Read Full Story  |  0 Comments

Passport authentication in asp.net

Wednesday, June 27, 2007 21:50

Passport authentication is a centralized authentication service that uses Microsoft's Passport Service to authenticate the users of an application. It allows the users to create a single sign-in name and password to access any site that has implemented the Passport single sign-in (SSI) service. The following code snippet illustrates how ...

This was posted under category: ASP.NET security  |  Read Full Story  |  0 Comments

Windows authentication in asp.net

Wednesday, June 27, 2007 21:46

Windows Authentication is used to validate a user based on the user’s Windows Account; however, this is only applicable in intranet environments where the administrator has full control over the users in the network. The following code snippet illustrates how we can implement Windows Authentication in ASP.NET. <authentication mode="Windows"/> <authorization> <allow users ...

This was posted under category: ASP.NET security  |  Read Full Story  |  0 Comments

Forms authentication flow in asp.net

Wednesday, June 27, 2007 21:44

A client generates a request for a protected resource. IIS receives the request, and if the requestor is authenticated by IIS, or if IIS Anonymous Access is enabled, the request gets passed on to the ASP.NET application. Because the authentication mode in the ASP.NET application is set to forms, IIS authentication ...

This was posted under category: ASP.NET security  |  Read Full Story  |  0 Comments

How asp.net security works

Wednesday, June 27, 2007 21:36

The ASP.NET security framework accomplishes this by working in conjunction with the various security subsystems present in the machine where ASP.NET is installed. This includes security provided by the operating system ( NTFS file access permissions ) as well as security provided by IIS ( host or IP address authorization ...

This was posted under category: ASP.NET security  |  Read Full Story  |  0 Comments
Tagged with:

Customizing ASP.NET Membership and Profile: What Goes Where?

Friday, June 1, 2007 14:48

No any feature introduced in ASP.NET 2.0 is the use of the "provider model" to provide maximum flexibility and extensibility to your Web applications. Using the provider model, developers can easily extend the capabilities provided by the ASP.NET 2.0 runtime, in many different ways. For example, you can extend the ...

This was posted under category: .NET Framework security, Security software  |  Read Full Story  |  0 Comments

ASP.NET AJAX Rough Cuts

Friday, April 27, 2007 18:21

Time for a short commercial break: O’Reilly has just announced the Rough Cuts version of Programming ASP.NET AJAX, the second edition of Programming Atlas. I am currently revising the Atlas book for the final ASP.NET AJAX release; the Rough Cuts version gives you the opportunity to ...

This was posted under category: ASP.NET security  |  Read Full Story  |  0 Comments
Tagged with:

Microsoft Visual Studio “Orcas” Beta 1

Friday, April 20, 2007 6:01

Just a quick note: Microsoft has just released Beta 1 of the next Visual Studio code-named “Orcas” (Team System and Professional Edition and TFS) for MSDN subscribers. A public download for everyone, however, are the “Orcas” Express Editions. The website labels them as Community Technology Previews ...

This was posted under category: ASP.NET security  |  Read Full Story  |  0 Comments

Good-bye WPF/E, Welcome Silverlight

Monday, April 16, 2007 8:00

Just saw that Microsoft unveilled the official name of the technology formerly known as WPF/E: Silverlight. All related downloads like the browser plugins, the SDK and the samples have been renamed accordingly. Strange, I would have expected such at announcement at MiX, but I guess there ...

This was posted under category: ASP.NET security  |  Read Full Story  |  0 Comments