Tagged Questions
Authorization is the process of determining whether a user, program or device is allowed to access a protected resource in a particular way. Authorization is a key theme in computer security practices.
48
votes
2answers
4k views
How is oauth 2 different from oauth 1
In very simple terms, can someone tell what's the difference between oauth 2 and oauth 1.
Is oauth 1 obsolete now and I should be implementing oauth 2? I don't see many implementations of oauth 2. ...
45
votes
6answers
17k views
User authentication and authorisation in ASP.NET MVC
What is the best method for user authorisation/authentication in ASP.NET MVC?
I see there are really two approaches:
Use the built-in ASP.NET authorisation system.
Use a custom system with my own ...
41
votes
4answers
6k views
Why does AuthorizeAttribute redirect to the login page for authentication and authorization failures?
In ASP.NET MVC, you can mark up a controller method with AuthorizeAttribute, like this:
[Authorize(Roles = "CanDeleteTags")]
public void Delete(string tagName)
{
// ...
}
This means that, if ...
27
votes
8answers
2k views
Which authentication and authorization schemes are you using - and why?
We're beginning to design a whole bunch of new services to create (WCF, ADO.NET Data Services, possibly in the cloud at some point) and one question that pops up is what authentication and ...
25
votes
12answers
908 views
Should unauthorized actions in the UI be hidden, disabled, or result in an error?
This is a perennial question for me that I've never really resolved so I'd like your input. If I have actions that I know a user will not be able to perform due to insufficient privileges or object ...
19
votes
6answers
23k views
asp.net mvc authorization using roles
I'm creating an asp.net mvc application that has the concept of users. Each user is able to edit their own profile. For instance:
PersonID=1 can edit their profile by going to ...
18
votes
5answers
26k views
WCF - Windows authentication - Security settings require Anonymous
I am struggling hard with getting WCF service running on IIS on our server. After deployment I end up with an error message:
Security settings for this service require 'Anonymous' Authentication but ...
15
votes
4answers
744 views
Protect sensitive attributes w/ declarative_authorization
Whats a cool way to protect attributes by role using declarative_authorization? For example, a user can edit his contact information but not his role.
My first inclination was to create multiple ...
15
votes
6answers
3k views
ASP.NET MVC - Alternative to Role Provider?
I'm trying to avoid the use of the Role Provider and Membership Provider since its way too clumsy in my opinion, and therefore I'm trying to making my own "version" which is less clumsy and more ...
14
votes
6answers
2k views
Authentication, Authorization, User and Role Managment and general Security in .NET
I need to know how to go about implementing general security for a C# application. What options do I have in this regard? I would prefer to use an existing framework if it meets my needs - I don't ...
13
votes
4answers
4k views
asp.net mvc decorate [Authorize()] with multiple enums
I have a controller and I want two roles to be able to access it. 1-admin OR 2-moderator
I know you can do [Authorize(Roles="admin, moderators")] but I have my roles in an enum. With the enum I can ...
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
3answers
6k views
ASP.NET MVC Custom Authorization
I have a question about custom authorization in MVC.
I have a site that I want to limit access to certain pages, depending on their group membership. Now I have seen tons of examples on how to do ...
12
votes
4answers
7k views
ASP.NET MVC: Problem setting the Authorize attribute Role from a variable, requires const
I am having a problem setting the Authorize attribute Role value from a variable. The error message says it requires a const variable. When I create a const type variable it works fine but I am ...
11
votes
5answers
610 views
Authorization in social networking website
I need to accomplish the following related to privileges:
I have 3 users:
- User A
- User B
- User C
Each of the users has the following documents with associated access settings:
- User A
- ...
10
votes
7answers
262 views
Patterns for JavaScript security with back-end authorization?
I'm looking for some good resources, patterns and practices on how to handle basic security needs, such as authorization, in client side JavaScript.
I'm building a website with a back-end system ...
10
votes
3answers
2k views
GWT/Javascript client side password encryption
I'm implementing authorization in my gwt app, and at the moment it's done in the following fashion:
The user signs up by putting his credentials in a form, and I send them in clear text to the ...
10
votes
3answers
20k views
Why is <deny users=“?” /> included in the following example?
(?) wildcard represents unauthenticated users while (*) represents all users, authenticated and unauthenticated. My book shows the following example of URL authorization:
<authorization>
...
10
votes
3answers
11k views
9
votes
3answers
175 views
Should authorization be part of the model or controller?
I'm writing a web application with some ACL requirements: a user can make changes to some items, some items may be editable by several users, administrator can edit anything and a manager can edit ...
9
votes
1answer
3k views
Some questions about OAuth and Android
I started reading on OAuth this morning; need suggestions(links et al.) that will help answer the following questions:
1. How to implement 3 legged Authentication using OAuth on Android devices? Is ...
9
votes
1answer
2k views
What's the purpose of claims-based authorization?
I've been reading about Azure's Access Control Service and claims-based authorization in general for a while now, and for whatever reason, I still don't see the rationale behind moving from ...
9
votes
3answers
2k views
RESTful Authorization
I'm building a community-based site in Rails for the members of a real-world organization. I'm trying to adhere to the best practices of RESTful design, and most of it is more or less by-the-book. The ...
9
votes
3answers
865 views
How secure is the ASP.NET Membership framework?
What is the ASP.NET Membership framework's reputation as far as security goes? Are there any typical default configuration settings that are problematic? What best practices are there? Are there any ...
9
votes
4answers
1k views
Authorizing REST Requests
I'm working on a REST service that has a few requirements:
It has to be secure.
Users should not be able to forge requests.
My current proposed solution is to have a custom Authorization header ...
8
votes
6answers
2k views
How can we set authorization for a whole area in ASP.NET MVC?
I've an Admin area and I want only Admins to enter the area. I considered adding the Authorized attribute to every controller in the Admin area. Isn't there an elegant solution or is this feature not ...
8
votes
4answers
10k views
JSF authentication and authorization
What is the best way to go about implementing authentication and authorization for a JSF web application? Preferrably I'd still want to use container-based security, as I need to call EJBs that ...
7
votes
2answers
168 views
Standalone user management library that supports Doctrine ORM?
I can't find a standalone system that I can use for user management (authentication,authorization, register, password reminders...).
The closest it gets is using Symfony and FOSUserBundle but because ...
7
votes
1answer
220 views
Asp.Net MVC action based custom authorization
I have a web application written in asp.net mvc with fluent nhibernate.
Data hierarchy: Post -> Category ->
Company
User roles : user, admin
I try to find a architecture to develop ...
7
votes
2answers
7k views
ASP.NET MVC 3 Authentication/Authorization
I am very new to ASP.NET MVC 3 (and MVC in general for that matter). In ASP.NET Web Forms, I did authentication using Principals and Identities. Is this the recommended way to do it in MVC or is ...
7
votes
3answers
556 views
How do I implement authentication the restful way?
I'm building a picture diary on web application google app engine using python. Users can sign up and post pictures to their diary.
Also, I'm trying to conform as much as I can to the REST ...
7
votes
6answers
2k views
Should we develop a custom membership provider in this case?
Summary
Long story short, we've been tasked with gutting the authentication and authorization parts of a fairly old and bloated asp.net application that previously had all of these components written ...
7
votes
4answers
2k views
ASP.NET MVC - How to show unauthorized error on login page?
In my ASP.NET MVC app, I have most controllers decorated with
[Authorize(Roles="SomeGroup")]
When a user is not authorized to access something, they are sent to "~/Login" which is the Login action ...
7
votes
3answers
3k views
Ruby on Rails User Management Engine/Framework? (with web pages)
There are quite a few post/recommendations re Rails authorization plugins. What I'm asking here however is whether there is a popular/good Ruby on Rails Engine (or framework) that includes the user ...
7
votes
4answers
7k views
ASP.NET MVC Forms Authentication + Authorize Attribute + Simple Roles
I'm trying to add simple Authentication and Authorization to an ASP.NET MVC application.
I'm just trying to tack on some added functionality to the basic Forms Authentication (due to simplicity and ...
7
votes
6answers
11k views
spring-security: authorization without authentication
I'm trying to integrate Spring Security in my web application. It seems pretty easy to do as long as you integrate the whole process of authentication and authorization.
However, both authentication ...
6
votes
3answers
255 views
New to REST API
basically I have been assigned to build a REST request application in PHP, using a 3rd party REST API. Doing POSTs, GETs etc seems simple, however they have something called an Authorization header ...
6
votes
1answer
300 views
Can an AuthorizationAttribute prevent an action from being executed entirely?
I've got a custom AuthorizationAttribute that appeared to be working on the surface. When a user without the correct permissions requests an action via the browser, they are shown the appropriate ...
6
votes
1answer
158 views
Data-based authorization in ASP.NET
Summary: I need to authorize pages based upon the data present in the query string of a url, not just the page name.
Background:
Let's say I'm building a library inventory system. Users can be ...
6
votes
2answers
3k views
Overriding AuthorizeCore in custom Authorize attribute results in “no suitable method found to override” error
I'm trying to build custom AuthorizeAttribute, so in my Core project (a class library) I have this code:
using System;
using System.Web;
using System.Web.Mvc;
using IVC.Core.Web;
using System.Linq;
...
6
votes
6answers
211 views
Why is separation of user and profile data considered good?
I've been reading this question and felt that I don't quite agree with the statement Separation of user and profile data is a nice touch.
As I see it, profile data, such as, e.g. country or whatever ...
6
votes
3answers
1k views
How to intercept 401 from Forms Authentication in ASP.NET MVC?
I would like to generate a 401 page if the user does not have the right permission.
The user requests a url and is redirected to the login page (I have deny all anonymous in web.config). The user ...
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
5answers
2k views
ASP.Net MVC how to determine if a user can access a URL?
So I was reading another question regarding login loop when you have a user logging in, set to return to a URL which they might not have access to after logging in (ie. an admin page, and the user ...
6
votes
7answers
3k views
which is the most popular Ruby on Rails AUTHORIZATION gem/plugin at the moment?
Which is the most popular Ruby on Rails AUTHORIZATION gem/plugin at the moment?
(I am using AuthLogic for authentication by the way)
Thanks
6
votes
2answers
785 views
How do I unit test a controller method that has the [Authorize] attribute applied?
I've searched stackoverflow and googled four a couple of hours and still not found any solution for my "trivial" problem.
If you write unit test for your filtered [Authorize] ActionResult, how do you ...
6
votes
3answers
340 views
XACML as an evolution step in an existing application
I've begun doing some research on XACML and external authorization. Right now I have an existing application which utilizies an RBAC model. However the implementation has a lot of shortcomings (roles ...
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 ...
6
votes
2answers
580 views
How do I assign a Role to an OpenId user for an ASP.NET MVC site?
I'm using OpenId in my ASP.NET MVC application. Works great :) Once i have the user's OpenId Identifier (once they have authenticated and returned to my site), i load up the users data (to get display ...
6
votes
4answers
1k views
ASP.NET MVC: Authorization inside an Action - Suggested Patterns or this is a smell?
I have an ASP.NET MVC application using Authorization Attributes on Controllers and Actions. This has been working well but a new wrinkle has shown up.
Object: Shipment
Roles: Shipping, Accounting, ...