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.
0
votes
0answers
14 views
CanCan gem problems with create action having conditions
sorry for my english... I am using cancan gem but I get a problem on new action when I do something like this...
class Ability
include CanCan::Ability
def initialize(user)
can :manage, Post, ...
1
vote
1answer
24 views
MVC3 Authorization
There is a credential system I'm developing. No MembershipProvider applied for this purpose.
I have designed and developed my own custom Role Management System.
My question is, how can I add ...
0
votes
1answer
23 views
Should I be using an IAuthorizationFilter if I wish to create an ApiKey restricted resource with ASP.NET MVC4?
I have a few simple routes which I wish to restrict via a simple querystring param. If the key is incorrect or not provided, then I wish to throw a NotAuthorizedException.
Please don't suggest I use ...
1
vote
1answer
23 views
How to handle [Authorize] with {SiteName} in asp.net mvc
given a mvc4 which has a {sitename} parameter in the routes like so
routes.MapRoute(
"Sites", // Route name
"{sitename}/{controller}/{action}/{id}", // URL with parameters
new { sitename ...
1
vote
0answers
16 views
javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials] while authenticating via LDAP in spring security3
I am trying to authenticating user via LDAP and authorizing via Database.LDAP directory contains user with corresponding group and I want to fetch this group at the time of successful authentication ...
0
votes
0answers
11 views
how to use controllers and actions authorization at the same time
I'm a newbie in cakephp and I'm trying to build an application from the scratch. I'm reading the manual and also I did the tutorials.
Right now I'm facing an issue about authorization: How allow the ...
0
votes
1answer
26 views
role based authorization with window authentication in asp.net
I have to create a role based application in which i have three roles admin,manager and user. In my application i have three different folder in which i have to check those role. What i want is when i ...
0
votes
0answers
11 views
Flickr 401 Unauthorized - token rejected
I have been having this problems very recently. Initially, the code worked perfectly but now, I always get (401) Unauthorized error and token_rejected error. This is my code below. I am using Flickr ...
0
votes
0answers
13 views
Authorization adapter "actions" was not found. CakePHP
I use the CakePHP Auth componenet in my web site. The code works fine in windows but after uploading it to linux online host, it give the message
Authorization adapter "actions" was not ...
0
votes
0answers
21 views
DHCP Server not Authorized
I have two Active Directory servers performing both authentication and DNS.
One server is 2003 and the other is 2008. It is my understanding that there is no primary Domain server in this scenario ...
-1
votes
0answers
52 views
FaceBookSDK 3.0.1 current goals hides facebook ok button during Facebook authorization in a web view for android… how to fix it? [closed]
FaceBookSDK 3.0.1
current goals hides facebook ok button during Facebook authorization in a web view for android...
how to fix it???
ASAP PLZ
0
votes
2answers
16 views
How to fix an error with undefined error with cancan and devise in rails?
I am trying to create permissions in my Rails app with Devise and Cancan.
ability.rb:
class Ability
include CanCan::Ability
def initialize(user)
if user.role == 'admin'
...
0
votes
0answers
17 views
Restlet HTTP_DIGEST authorization in android
Got following problem with HTTP_DIGEST authorization via Restlet framework on Android.
05-20 18:39:14.623: W/System.err(4584): Challenge scheme HTTP_DIGEST not supported by the Restlet engine.
05-20 ...
0
votes
0answers
5 views
You have already authorized this app (Facebook SDK 3.5 for iOS) [duplicate]
When I use FBWebDialogs always appears "You have already authorized this app", how can I avoid this message ?
[FBWebDialogs presentDialogModallyWithSession:[FBSession activeSession] dialog:@"oauth" ...
0
votes
1answer
63 views
initialize simple membership in MVC 4
I have a problem with my MVC 4 application which used to work fine, but stopped for some reason, and I cannot find out why. I use simple memebrship provider and code first approach. This is my Index ...
0
votes
0answers
12 views
How does one get the app access token for debug_token inspection on Facebook?
It is suggested that whether your app uses code or token as your response_type you should perform an automated check on the access_token to confirm that the token belongs to the person the app expects ...
0
votes
1answer
12 views
Password protecting by match
I want to protect certain files I'm still working on from unprotected access, so I guessed, I just use an identifier in their file-name like "_temp" and protect all url-matches for that by htaccess.
...
0
votes
0answers
9 views
How to check role based authentication on button click event
I have a login form in which user have to enter credential i.e. username and password.In my code i check that user whether it is an authorized user or not now i also want to check what is the access ...
0
votes
2answers
36 views
Cant get the actionDelete() to redirect properly in Yii :
So here's the problem that I am facing : I have created a blog system in Yii and I have created a comments creation form in the Post view page. I have also created a delete link, and the link is ...
0
votes
0answers
6 views
How are proxy credentials sent to the proxy by default?
On a lot of clients (e.g. Mac OS X Network Configuration, Internet Explorer Network Settings) it is possible to specify proxy credentials. How are these credentials sent to the proxy server?
I tried ...
1
vote
2answers
33 views
What are the best practices for authorization?
Situation: rails 3.2 app with a demo period, after which users must start paying for the service.
Question: If a user does not add a payment method, or does not choose a payment plan, what is the ...
0
votes
1answer
25 views
CakePHP isAuthorized not working properley when passing arguments
I'm using isAuthorized to deny access to methods if the record id doesn't belong to the user. Profiles can have many documents and documents belong to one profile:
Controller/DocumentsController.php
...
0
votes
0answers
19 views
Automating authorization with Google Drive API
I am working on a desktop application that lets students and teachers enter their credentials, then it lets them download and upload files to their Google Drive (as part of Google Apps for Education). ...
-1
votes
1answer
19 views
How to use OAuth2.0 for Google Calender API in Android?
My android app is designed to fetch calendars and events from Google. I downloaded Google API v3 and followed the example from official tutorial. In the tutorial, it uses Account Manager to do ...
0
votes
1answer
19 views
Authorizing users by downloading file from external SharePoint portal
I have an open question about my idea. Here's some background:
I'm developing a PHP application for the company I work in. It's meant to be used only by its employees. Every employee has access to our ...
0
votes
0answers
34 views
Andorid Webview Client Certificate & Http authorization
The last days i am trying to access a website through webview using client certificate. I used the open source project from https://github.com/yonekawa/webview-with-client-certificate. Evertything ...
0
votes
1answer
46 views
An Authentication object was not found in the SecurityContext
I have an application exporting web services, with a configured Spring Security SecurityFilterChain (with SecurityContextPersistenceFilter among others, which is required for the rest).
My ...
0
votes
1answer
17 views
Website and Native app user authorization
I wish to create a functionality that is very similar to facebook or pokerstars if you have used them before. Basically the apps require the user to login and their information can be accessed from ...
0
votes
1answer
28 views
Best ability based authorization
I have a Rails 3 app, where i use CanCan for authorization, but i am looking for something that suits my needs better. My authorizations is not very role based, but really more situational.
The ...
1
vote
0answers
20 views
Authlogic - how to make a registration and don't log in the new account?
I have an administration where I can create new accounts. For creating new accounts I am using the gem Authlogic.
As admin, I would like to create a new account for a new user without log in (the ...
0
votes
0answers
14 views
Custom Authentication/Authorization in IIS 7 FTP service with control over home directory and visible directories
I'm in the process of setting up a service that will allow users to upload files to a system. The users will be restricted to only see the data for the projects that belong to them.
For this example ...
0
votes
1answer
28 views
How to use SimpleMembership with mandatory user table?
I'm currently building an ASP.NET MVC4 web application for visualizing and controlling industrial facilities. Now it's time to imlement some user and role management in order to provide security. ...
1
vote
1answer
30 views
Sanity check my Rails “Roles and Users” approach with Devise and Cancan
been kicking this one about for a while now, and would like to get someone who knows rails to test my theory (I'm new to Rails).
In my (simplified) scenario, I want to manage a list of Users, some of ...
0
votes
0answers
16 views
Bug in Google Oauth2
Could anyone please let me know why even after revoking google API access, still the aplication is working?
Looks like there is bug in Oauth2.
I checked this on a sample Google drive application and ...
0
votes
0answers
40 views
No authorization when trying to connect to Google Spreadsheets through webserver using PHP and Zend Gdata
I'm trying to add data to a spreadsheet with a php script using the Zend Gdata helper class,
if i run the php-script on my xampp on my home-pc everything works just fine, but if i upload the file on ...
0
votes
1answer
18 views
Dynamic MVC [authorization] for multiple domains
I am currently developing an MVC intranet web app. The same web app will be deployed across multiple domains. I am using windows authorization and authorizing against groups in app's local domain. I ...
1
vote
2answers
47 views
MVC Skip Controller Authentication Use Action
Is it possible to bypass the authorization role check on a controller, but enforce the role check on an action? I've spent a bit of time researching this and everything I find shows how to implement ...
0
votes
0answers
9 views
url = tw.GetAuthorizationLink(consumer, consumersecret)
I am trying to figure out why I cannot get an authentication URL for my application.
I've made an app with a open code button to view the 7-digit pin number for the Authentication. It will open the ...
-1
votes
1answer
28 views
Sample code or app whic demostrate to do autorisation agains DNN7 WebAPI
I start building my winforms app which uses DNN 7 as backend for authorization users.
My users are registered and approved on DNN portal, an idea is to my new WinForms Application use same users as ...
0
votes
1answer
32 views
Infinite loop while login
Some of our users are stuck in infinite loop while login.
A user already gave authorization for email. Our app wants to access the mail but cannot access. It redirects user to authorization page. But ...
0
votes
0answers
37 views
Kerberos authentication between web app and web services
I have applied Kerberos filter for the web app and it is working fine with browser.
Now I want my web services to be Kerberos enabled and for this I have applied Kerberos filter in web services and ...
6
votes
5answers
161 views
How to validate authorized form submission
Generally we use captcha to validate form is not submitted by robot or script.
But in our application we can not is captcha everywhere..
What strategy can be used to validate that request is comming ...
0
votes
0answers
14 views
removing google Drive API access but still it works
I've imported the google drive quickstart sample application into eclipse and set all settings for it and then I defined the API access for drive API.
everything worked very nicly, I mean, I could ...
1
vote
1answer
50 views
How to authorize user in RESTful request?
From the posts about REST services, I see that it should not be used sessions together with REST, and with every request there is need to send user credentials to the REST service. But I don't see ...
0
votes
1answer
73 views
+50
Access control and XHR requests
I'm struggling with access control implementation for custom framework.
RBAC granularity is not needed so I decided to go with some kind of ACL where resources will be
controller actions.
Here is ...
0
votes
0answers
15 views
CanCan not performing authorization
I have used Devise gem for authentication process in my Rails app. That works fine. Then I tried to integrate Cancan for authorization for the roles. The roles are stored on an array in user.rb and ...
0
votes
0answers
18 views
Facebook AIR Desktop authorization popup life cycle
Hi we are doing desktop AIR application. Some description: it will be touch screen monitors where user be able to share/post some text from this app. So we can't use keyboard only touch screen.
So, we ...
0
votes
1answer
24 views
Unique identifying a user after federated Authentication
I have just started experimenting with WIF for a new application I'm writing. So far I have managed to get the LocalSTS working and setup my web.config to enable federated authentication against the ...
0
votes
0answers
50 views
Rails authorization using Cancan on member routes
I'm co-developing an online database program in Rails using cancan for authorization. To control access we have a feature called projects which allows owners of data to grant read access to users ...
0
votes
1answer
34 views
Best practice to add authorized users to an app engine project via an HTML form
I am trying to figure out the best method of adding additional authorized application users through a web form accessed/maintained by a site admin user.
I am thinking that I want to check the ...



