Tagged Questions

28
votes
3answers
8k 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 ...
23
votes
7answers
5k 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: ...
17
votes
10answers
423 views

Security Concerns When Working With New Technologies

Do you find that when you work with a new technology that you're never quite sure what security gaps your leaving in your code? I've been working with ASP.Net Web Forms for about 5 years now and am ...
15
votes
6answers
652 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: ...
14
votes
4answers
2k 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 ...
13
votes
1answer
7k 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 ...
12
votes
2answers
2k 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?
11
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 ...
11
votes
4answers
553 views

ASP.NET MVC Security checklist

There are tons of good papers about designing and developing for security (and even a bunch of posts on SO), but all of them seem to concentrate on what you should do. What I'm after, however, is a ...
11
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 ...
11
votes
13answers
8k 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 ...
9
votes
3answers
482 views

How to remove ASP.Net MVC Default HTTP Headers?

Each page in an MVC application I'm working with sets these HTTP headers in requests: X-Powered-By: ASP.NET X-AspNet-Version: 2.0.50727 X-AspNetMvc-Version: 2.0 How do I prevent these from showing? ...
9
votes
1answer
764 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 ...
9
votes
3answers
4k 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"> ...
9
votes
3answers
2k views

make sure each controller method has a ValidateAntiForgeryToken attribute?

Is there any way to centralize enforcement that every action method must have a "ValidateAntiForgeryToken" attribute? I'm thinking it would have to be done by extending one the "routing" classes. ...
9
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 ...
9
votes
5answers
893 views

How do I expose built-in security and user management to a MVC application?

I have built a MVC website on IIS6. I used the built-in ASP.NET Security without Membership, just the way it was implemented in the template solution. It is easy to secure a contoller or action, but ...
7
votes
2answers
182 views

How do you fight against all these ways? -Javascript and its million different ways you can write it

I just don't know what to think anymore. It seems like the people who made javascript went out of their way to allow it to be written a million different ways so hackers can have a field day. I ...
7
votes
3answers
673 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 ...
7
votes
5answers
262 views

Why would I hard-code user permissions in my controller attributes?

I have seen example code that looks like this, which seems perfectly reasonable: [Authorize(Roles = "Admin, User")] public class SomeController : Controller But I have also seen several examples ...
7
votes
2answers
5k views

ASP.NET MVC Custom Membership Provider Web.config Error

I have implemented a custom membership provider using LINQ to SQL. When I added the Membership provider to my asp.net mvc website in the web config the logon page stopped working. My Web.config ...
6
votes
1answer
157 views

ASP MVC: Getting confused when implementing ASP MVC Security

I am implementing the security part of an ASP MVC application and I am getting confused in how to implement a custom membership provider since there seems to be a lot of functionallity that I wouldn't ...
6
votes
2answers
1k views

How to make Authorize attribute return custom 403 error page instead of redirecting to the Logon page

[Authorize] attribute is nice and handy MS invention, and I hope it can solve the issues I have now To be more specific: When current client isn't authenticated - [Authorize] redirects from secured ...
6
votes
3answers
249 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?
6
votes
4answers
1k 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
3answers
118 views

Protecting website content from crawlers

The contents of a commerce website (ASP.NET MVC) are regularly crawled by the competition. These people are programmers and they use sophisticated methods to crawl the site so identifying them by IP ...
5
votes
4answers
909 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
1answer
334 views

Will ASP.Net MVC's AntiForgeryToken Method work with Load Balancers?

Using ASP.Net MVC v2.0, I am starting to research the use of the Html.AntiForgeryToken() method when submitting forms that process data. I can see it sets a hidden value in the form HTML and it sets ...
5
votes
3answers
5k 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 ...
5
votes
3answers
1k 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 ...
5
votes
1answer
161 views

Implementing Security for Rss Feeds

A)I want to be able to support password protection of my RSS feeds through the following authentication methods: HTTP Basic Integrated Windows (NTLM/Kerberos) Digest 1)How can i do that in asp.net ...
5
votes
4answers
6k 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 ...
5
votes
3answers
565 views

ASP.NET Membership Provider - Single Login

I'm considering utilizing the ASP.NET Membership Provider for a few different web apps/tools with a single login approach. REQUIREMENTS User logs in to my.domain.com and sees a list of apps/tools ...
5
votes
1answer
615 views

Asp.net mvc can not work without App_Data

I'm using a custom security (no membership provider). After the user logs in ... a folder "App_Data" with ASPNETDB.MDF gets automatically created ... on my local machine. If I deploy this to a remote ...
5
votes
2answers
310 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 ...
5
votes
2answers
884 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, ...
5
votes
4answers
412 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
1k views

When encoding HTML input for security, how do I avoid encoding international characters like Ñ or ñ?

I have a textarea in an ASP.NET MVC Application where the user can type some text. When I show the text to the user, I use Html.Encode to prevent malicious input. The problem is that the user can type ...
5
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 ...
4
votes
2answers
354 views

Changing the membership providers ApplicationName during runtime. How?

I have a bit of a unique situation here. I'm making a web application that is going to have the ability to login with different web applications credentials. For example you can login/register with ...
4
votes
3answers
390 views

Authorization security of ASP.NET Forms authentication

I'm using Forms authentication in ASP.NET MVC website and I store user account login name in AuthCookie like this: FormsAuthentication.SetAuthCookie(account.Login, false); I want to ask if there is ...
4
votes
1answer
364 views

How to use Custom AuthorizeAttribute for controller utilizing parameter value?

I am trying to secure a controller action to prevent a user from accessing an Entity that they do not have access to. I am able to do this with the following code. public ActionResult ...
4
votes
1answer
244 views

ASP.NET MVC security: how to check if a controller method is allowed to execute under current user's perrmissions

Given an ASP.NET MVC Controller class declaration: public class ItemController : Controller { public ActionResult Index() { // ... } public ActionResult Details() { ...
4
votes
1answer
575 views

Asp.net: Replace GenericPrincipal

I was wondering what the best way is to replace the genericPrincipal with my own CustomGenericPrincipal. At the moment I have something like this but I aint sure if it's correct. protected void ...
4
votes
1answer
136 views

New to ASP.NET MVC - Will I have to relearn security?

I'm planning work on a new project and am now tempted to use ASP.NET MVC. My project plans to use JQuery and AJAX (although non-JS clients will also be supported). Coming from a standard ASP.NET ...
4
votes
1answer
118 views

Redirect a user to a specific view when authorization fails?

I have the following code: [AcceptVerbs(HttpVerbs.Post), Authorize(Roles = RoleKeys.Administrators)] public ActionResult Edit(int id, FormCollection collection) { User user = ...
4
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: ...
4
votes
1answer
555 views

Website security pitfalls and what can I do in ASP.NET MVC to avoid/mitigate them?

I've just started working on implementing my first public-facing website. Since I'm new to this, I think if a list of common pitfalls, what they are, and how to avoid them is warranted. I'm looking ...
4
votes
5answers
2k views

Allowing access to specific pages with ASP-MVC and Forms Authentication

Here is a simple overview of my directory layout for my views: Project Page 1 Page 2 RSS Issues Page 1 Page 2 RSS I am using forms authentication to deny access to all unauthenticated users, ...
3
votes
1answer
55 views

Does it make sense to populate an AntiForgeryToken in Login/Register forms?

I hope my question is not too simple, but you know when it comes to security, we all get skeptic. Since before these two cases (login/registration), we don't have a logged-in user (a session cookie), ...

1 2 3 4 5