Tagged Questions

14
votes
1answer
8k views

Customizing authorization in ASP.NET MVC

My Controller class is decorated with an AuthorizeAttribute to protect the actions: [Authorize(Roles = "User Level 2")] public class BuyController : Controller { ... } Anytime an action is ...
34
votes
4answers
10k views

Override Authorize Attribute in ASP.NET MVC

I have an MVC controller base class on which I applied the Authorize attribute since I want almost all of the controllers (and their actions along) to be authorized. However I need to have a ...
31
votes
7answers
7k views

How to Implement Password Resets?

I'm working on an application in ASP.NET, and was wondering specifically how I could implement a Password Reset function if I wanted to roll my own. Specifically, I have the following questions: ...
11
votes
2answers
1k views

“Security aware” action link?

How can I create a "security aware" action link that detects if a user is authorized to click (invoke) the action? Hide link if user is not allowed to use that action... Depending from web.config ...
15
votes
6answers
699 views

Is ASP.NET MVC vulnerable to the oracle padding attack?

Is ASP.NET MVC 2 vulnerable to the oracle padding attack? If so, what workaround should be implemented? The instructions on Scott Gu's blog appear to only be for Webforms. I tried this: ...
12
votes
2answers
2k views

Restrict access to a specific controller by IP address in ASP.NET MVC Beta

I have an ASP.NET MVC project containing an AdminController class - giving me URls like http://myserver/admin/AddCustomer, http://myserver/Admin/ListCustomers, etc. I want to configure the server/app ...
5
votes
4answers
4k views

How to implement authorization checks in ASP.NET MVC based on Session data?

This will be my first ASP.NET MVC application with forms authentication so I am trying to make sure I don't miss anything. The scenario is this: Public / Secured Areas. Within the private area it is ...
11
votes
4answers
5k views

Building an ASP.NET MVC Master Page Menu Dynamically, Based on the current User's “Role”

I've seen some similar questions, but none that look like what I'm trying to do. This is my current implementation w/out any security: <div id="menucontainer"> <ul id="menu"> ...
16
votes
4answers
3k views

How do I serve up an Unauthorized page when a user is not in the Authorized Roles?

I am using the Authorize attribute like this: [Authorize (Roles="Admin, User")] Public ActionResult Index(int id) { // blah } When a user is not in the specified roles, I get an error page ...
4
votes
4answers
689 views

Question about [Authorize] Attribute for Administrators

If i have an Area in my ASP.NET MVC 3 (Razor) Web application, where all controllers derive from a base controller that looks like this: [Authorize(Roles="Administrator")] public class ...
13
votes
2answers
3k views

Role based security asp.net mvc

I'm interested in knowing what are the best practices for using role based security in MVC: how to secure your actions and make them accessible by specific roles only?
12
votes
13answers
9k views

IIS7, SQL 2008 and ASP.NET MVC security

I have an ASP.NET MVC application that I'm working on. I've been developing it on Windows Server 2003 with IIS6 and SQL 2008 Express, and everything was working great. I recently decided to try out ...
6
votes
7answers
2k views

Preventing XSS (Cross-site Scripting)

Let's say I have a simple ASP.NET MVC blog application and I want to allow readers to add comments to a blog post. If I want to prevent any type of XSS shenanigans, I could HTML encode all comments ...
8
votes
4answers
2k views

What is the best mechanism to implement granular security (i.e. authorization) in an ASP.NET MVC application?

Suppose a high-speed developer was tasked with building a banking application which would be accessed by many different people. Each person would want to access his or her own account information but ...
5
votes
2answers
355 views

How should I handle Authorization/Authentication in my Asp.net MVC app?

I am creating an Asp.net MVC application and I'm currently using the built in Authentication/Authorization code that comes with the sample MVC app. For the most part this is working ok and I kinda ...
3
votes
7answers
4k views

Security with QueryString values in Asp.net MVC

How do you properly ensure that a user isnt tampering with querystring values or action url values? For example, you might have a Delete Comment action on your CommentController which takes a ...
1
vote
4answers
295 views

Web service to check existence of email?

I have my little web application, with simple registration strategy - provide email and password and you are done. Recently bot's starting to attack my application, registering big number of users ...
2
votes
2answers
156 views

What's the approach to generate different AntiForgeryToken for each user

I'm using MVC3 with Razor view engine. I need to generate a different AntiForgeryToken for each user. I'm thinking of generating a unique salt value and store it in users table when the users ...
1
vote
2answers
230 views

How to operate with X509 certificates in .NET code

I have some code that needs to work with X509 Certificate information. I have downloaded a sample that does this: const string CertWithoutPrivateKey = "MII...."; const string CertWithPrivateKey = ...
1
vote
4answers
132 views

Make a ASP.NET MVC application really secure

I am creating an ASP.NET MVC 3 web application which is used for looking up very private data at home. The data is stored in a database on the server, on which the IIS-Server is running. Since I have ...
0
votes
1answer
624 views

Display/hide menu items depending on logged on user

In my web app, I would like to show an "Admin" menu link only to users who have been added to the database as an administrator. What would be the best way to do this in ASP.NET MVC 2? At the moment, ...
0
votes
3answers
240 views

Viewmodel security in asp.net mvc

Is there a difference in terms of security between these two models to be given to View? Ie. in the second example can a webuser/hacker access the methods in any way? public class ObjectViewModel { ...
9
votes
3answers
6k views

Accessing Active Directory from ASP.Net MVC using C#

I need to access Active Directory to get information about groups that customers belong to. The project I have is an ASP.Net MVC application using C#. I've never programmed against Active Directory ...
7
votes
4answers
7k views

Custom form authentication / Authorization scheme in ASP.net MVC

I am trying to create a custom authentication scheme in ASP.NET MVC using form authentication. The idea that I might have different areas on the site that will be managed - approver are and general ...
10
votes
3answers
1k views

Does AntiForgeryToken in ASP.NET MVC prevent against all CSRF attacks?

Using AntiForgeryToken requires each request to pass a valid token, so malicious web pages with simple script posting data to my web application won't succeed. But what if a malicious script will ...
5
votes
4answers
476 views

Securing ASP.NET MVC Application Checklist

I am looking for a set of guidelines or a checklist that you can go over for securing a public ASP.NET MVC Website. I just want to make sure that I am not making any of the obvious and well known ...
5
votes
2answers
953 views

Document-Based Security in ASP.NET MVC

I already know about User and Role-based security in ASP.NET MVC. But now I need something a little more granular. Let's say I have a list of documents, some of which the user is authorized for, ...
2
votes
1answer
571 views

Securing the Forms Authentication Cookie when offloading SSL

I am attempting to secure a website I am currently developing using ASP.NET MVC 2.0 and forms authentication. In order to secure the forms authentication cookie I want to set the requiresSSL property ...
15
votes
5answers
2k views

How to secure Elmah.axd?

We're using Elmah as our error logging system for an app that will be going into production soon. It's extremely useful, but if it goes into production like this anyone in the world access the error ...
5
votes
4answers
1k views

Area level security for asp.net mvc

I know it is possible to decorate a controller with the Authorize attribute to control access, what I don't know is the accepted or proper way to enforce security across all the controllers/views in ...
5
votes
4answers
2k views

How to avoid open-redirect vulnerability and safely redirect on successful login (HINT: ASP.NET MVC 2 default code is vulnerable)

Normally, when a site requires that you are logged in before you can access a certain page, you are taken to the login screen and after successfully authenticating yourself, you are redirected back to ...
2
votes
1answer
71 views

Approaches to wrapping access to functionality in .NET MVC?

What are some different solutions to wrapping access to functionality within a .NET MVC application? For example, I have six tabs that represent different areas of the application and within area 1, ...
2
votes
5answers
376 views

Is ASP.NET MVC appropriate for highly-secure public-facing sites?

I'm looking at using ASP.NET MVC for a current project but I have some concerns regarding security. The site is public-facing through HTTPS and is required to be very secure. Are there any ...
1
vote
1answer
71 views

Transferring info in a ViewModel between Views and Controllers in an ASP.NET MVC 2 site without allowing modification of info

I'm building an ASP.NET MVC 2 site where I'm currently implementing an OpenID sign-up form. Unfortunately, I'm foreseeing a possible security bug/vulnerability inside my architecture. Here's how I ...
1
vote
2answers
77 views

Help with asp.net mvc authorization

Im using asp.net mvc built in authorize filter. My only problem with it is that I dont want it to redirect my user to a login page when they dont have permission to perform a certain action... It ...
1
vote
7answers
642 views

Security considerations for intranet developer making public facing website?

I have alot of experience writing internal Intranet applications, but very little when it comes to writing public facing web applications where it is likely that a certain percentage of people will ...
6
votes
3answers
282 views

Is it secure to POST Credit Card data from View to Controller?

Need to submit some CC data from the View to the Controller where it will be processed, can I just POST it or is there some common way of securing the data in transit?
5
votes
3answers
1k views

ASP.net MVC AntiForgeryToken over AJAX

I am currently developing an MVC application in ASP.net. I am using AJAX.ActionLink to provide a delete link in a list of records, however this is very insecure. I have put this: ...
3
votes
4answers
695 views

Encrypting data for storage in database

We have a site, where a user will be saving extremely personal and sensitive data in our database. We of course will need to be encrypting this data before it is stored in the database, and using ...
2
votes
6answers
195 views

Why do we do a POST to confirm deletion in asp.net MVC?

The following is a note from Professional ASP.NET MVC 2 by Scott Hanselman ++ You might ask — why did we go through the effort of creating a <form> within our Delete Confi rmation ...
2
votes
1answer
110 views

Should I make the code for my personal web sites open-source? What are the security implications?

I'm just about to rewrite my personal site/blog using ASP.NET 4/MVC. I usually use my private Subversion server for version control, but for this project I'm intending to use Git/GitHub —I've been ...
1
vote
1answer
292 views

sanitizing xss in asp.net mvc

What is the best way to sanitize the user input in asp.net mvc without throwing "potentially dangerous request.form" exception and still preventing the xss attack for the post requests which contains ...
1
vote
3answers
382 views

ASP.NET prevent the same user being logged in multiple times

I have a requirement for an ASP.NET web application whereby the same user is not allowed to be logged in multiple times. I think this is to prevent people from sharing usernames and passwords. The ...
1
vote
1answer
166 views

How to tie SqlRoleProvider to “My” user table

How to tie SqlRoleProvider to "My" user table I am using asp.net MVC and SqlRoleProvider appears to work out of the box. However I have my own users and roles. I have a user table the has all the ...
1
vote
1answer
79 views

How do I allow reflection on a shared IIS host?

In this question a user replied that he was able to override the security settings on a shared host. I'm using the same host, but haven't been able to figure out how to change web.config to allow ...
1
vote
2answers
391 views

Help with 2-part question on ASP.NET MVC and Custom Security Design

I'm using ASP.NET MVC and I am trying to separate a lot of my logic. Eventually, this application will be pretty big. It's basically a SaaS app that I need to allow for different kinds of clients to ...
0
votes
0answers
62 views

how to do URL hashing for ASP.NET MVC ASP.Net MVC?

I am using ASP.Net MVC-3. when ever I post back my url contains Id and Controllers like http://mywebsite/Controller/ActionResult/Id but I would like to have a clean URL for my application like ...
0
votes
2answers
658 views

How do I use AppPool credentials?

Our webapp is able to download files from Sharepoint and surface them to the user, but only if I provide my personal username and password to the process. I received a suggestion that: we "should use ...
0
votes
3answers
383 views

How to create roles and superuser in an ASP.NET MVC application in a secure way

This could be considered a duplicate question, as a similar one has already been asked, but I don't like any of the answers, and security was not addressed. When deploying an ASP.NET MVC app, what's ...
7
votes
3answers
763 views

How do I get rid of the SecurityException error when trying to use Automapper in ASP.NET MVC?

I'm developing an ASP.NET MVC application with NHibernate and I'm trying to use Automapper to hide the Domain objects from the DTO objects sent to the view: ClassLibrary with my Domain (for ...

1 2