Authentication is commonly understood as the act of asserting a user's or entity's identity, although in the wider sense it can refer to asserting the truthfulness of any kind of claim. Authentication, like encryption, is a major component in implementing computer security.
0
votes
0answers
5 views
Logging in Users in another table Devise
I am working with Devise in Rails 4. I have three different tables in my database. One is the overall User.rb that is generated by Devise. The Other two both belong to the table associated with ...
-2
votes
0answers
12 views
WebAuthenticationBroker stay logged in
I'm using the WebAuthenticationBroker class to log in with Facebook in my app (Metro App C#).However when the user checks "Stay logged in" he needs to log in each time.
Any ideas to let the user stay ...
0
votes
1answer
22 views
User authentication against salted passwords in another database
My client needs an ASP.NET application built that will have the same users as an existing Ruby on Rails application. It won't be single sign-on. The data from the 'Users' table on the existing ...
0
votes
0answers
11 views
How can I configure Apache HttpClient 4.x to use a specific Websphere SSL alias?
We have an issue in our environment when using Websphere to attempt to connect to an external system with HttpClient 4.x (current version is 4.2.1). Connecting to the external system is fine with ...
0
votes
0answers
11 views
PAM module and crypt function
I try to developp a pam module but i have a problem on this simple example :
PAM_EXTERN int
pam_sm_authenticate (pam_handle_t * pamh, int flags, int argc,
const char **argv)
{
int ...
0
votes
0answers
28 views
REST Api authentication - exchange private key
I'm adding rest API for mobile application into my existing grails web app. Since I'm having hard time with integrating OAuth2 provider into my application, I'm going to implement my own HMAC ...
0
votes
0answers
26 views
Good method to authenticate files to users
I'm developing an API to let my users access to files stored on another server.
Let's call my two servers, server 1 and server 2!
server 1 is the server im hosting my web site, and
server 2 is the ...
0
votes
0answers
11 views
How to get SSO authentication working with tomcat on Linux
I'm struggling with this for a while. I've seen several ways to get SSO working with tomcat but wasn't able to get this working. Is there a recommended module for this?
0
votes
0answers
15 views
Auth service in rails for authentication in an service oriented design
I have the following architecture in place: . Most of the services will be Rails-based. The Auth service uses Devise for authentication on top the LDAP Plugin for Devise.
I would like the Rails App ...
0
votes
1answer
20 views
Checking a password with Zend_Auth
How i can check a password, when i am already authorized on my page? I need write an action, where the user will change a password, and i must check a current his password. When I using a following ...
0
votes
0answers
10 views
User Authentication and Authorization using glassfish Jaas
I implemented Glassfish JDBC Realm based security with Form method. I added Roles that correspond with my Database groups i also added security constraint for any protected resource and everything ...
1
vote
0answers
22 views
Custom AuthorizeAttribute not called
There are a lot of similar questions out there but this has me stumped.
If I used [Authorize] I get prompted for a username and password but if I use [InternalAuthorizeV2] I don't
I have a custom ...
2
votes
0answers
24 views
PlonePAS token authentication
I am trying (and failing [flailing?]) to write a custom Plone PAS plugin that allows users to be authenticated via a token that would come in the URL, like so:
...
0
votes
0answers
9 views
Server authentication on iPAD
I am developing an app which would run ONLY on iPAD. I want to do an username/password authentication with no session management. I am looking for a quick/faster implementation to do server ...
0
votes
0answers
6 views
How can I get the Kendo upload control to reauthenticate in IE.
I have a form with a kendo upload control and a save button along with a kendo grid. When I open the form using Chrome or Firefox, the upload control works every time. When I open the form in ...
0
votes
1answer
23 views
Authorizing methods in Spring MVC Controller
My aim is to protect some methods in my Spring 2.5 MVC Controller only to be accessed by specific users for e.g for Managers can access all the methods but Viewers can access a few of them. Though I ...
0
votes
0answers
8 views
Facebook Wont log users in Rails devise.
I am having trouble logging Users in using Facebook. I got it to work with Google,Twitter, and Yahoo! The problem is that it keeps redirecting the user back to my login page after they login with ...
0
votes
1answer
20 views
Block access for public computers in Kohana 3.2
I am running CRM based on Kohana in small office. Information is very sensitive so I want users to login only from office and not from home or anywhere else. I could block access by IP but office uses ...
0
votes
1answer
20 views
Is there any library for OAuth registration on .NET?
everybody:) I need to implement OAuth registration on my project, but I don't have a time to learn whole protocol, and write low-level code. Is there any library for .NET that can make it easier? I ...
0
votes
0answers
20 views
Can we find, in windows log file, rong password?
I filled my password instead of my user name in my work computer. I'd like to know if other persons (administrator) can go to log files and see it. If so how can i delete it ?
Second question: is it ...
0
votes
0answers
9 views
I cannot login to own ClueReleaseManager site
I have setup my own pypi server, using the ClueReleaseManager framework, and I defined a user (for testing purposes only) as follows:
cluerelmgr-admin updateuser test test test@localhost
Then I ...
0
votes
0answers
12 views
Asp.net windows authentication in load balanced environment with sessionState turned off
I am new to load balancer concept and needed some guidance on the same along with asp.net authentication per page. Oke so in my asp.net application we are not using session and we are using windows ...
0
votes
0answers
7 views
OpenSSH (Windows) to SSH (Linux) key auth not working [migrated]
I've setup an OpenSSH server on my windows machine and have been able to successfully SSH from windows box to my Linux machine (and vice-versa) successfully.
Although, I am not able to set up key ...
0
votes
1answer
10 views
Airbnb Rendr RESTful API authentication
I've been playing around with AirBnb's Rendr using the app template they provided on GitHub.
In their example they connect to a RESTful API using HTTP Basic Auth. However in their code they provide ...
0
votes
0answers
35 views
HttpUrlConnection not working and shows different status code for GET and POST call
I am getting FileNotFoundException when making GET call to REST API. Here HTTP status code I get is 403.
For POST call I get IOException : No authentication challenges found, whereas I pass ...
0
votes
1answer
13 views
cakephp2 Auth Component with 2 users tables
I have a cakephp 2.0 application with 'users' and 'administrators' but they are organized into 2 different tables, how can I check these 2 tables to login using Auth Component using the same form? I ...
1
vote
0answers
16 views
Force verifying correct user on FB.login
I'm using the JavaScript SDK with the FB.login function. Unfortunately the documentation for this function is somewhat lacking in detail - only the 'scope' option is mentioned, even though there are ...
0
votes
0answers
31 views
Authentication with Back-end Spring Security Java EE Server and Front-end iOS Objective-C client
I want to authenticate a user connected on his iOS app on a Java EE server Back-end.
Here, you can find my spring security configuration back-end :
<?xml version="1.0" encoding="UTF-8"?>
...
1
vote
2answers
30 views
Authentication using Facebook with Passportjs: what is accessToken for, what should I store after registration?
I am using Passport to register/authenticate using Facebook.
When oAuth is successful, I am returned:
accessToken
refreshToken
profile
Now... when a user successfully registers using Facebook, I ...
0
votes
1answer
27 views
cookie is not saving Cakephp
Cake is not saving the cookie, at least not that I can see, and when I revisit the page I am not auto logged in.i actually want to implement the 'remember me functionality '.i am using this component
...
0
votes
0answers
6 views
Google app engine, authentication - REST style- little bunch of beginner questions
On my mobile app, I'd like to send login and password to the server. Please correct me where I'm wrong, or please tell me how I can improve on this?
We get login/password and authenticate by ...
0
votes
1answer
11 views
MongoDB Monitoring Service Authentication
I have a sharded cluster of mongodb, 2 shards, each shard is a 3 server replica set.
all servers are in a aws-vpc and with keyFile without auth option,
only the mongos server have an ip and external ...
0
votes
0answers
35 views
MySQL connection authentication error
Web Site:
caddeworld
Error:
Authentication with old password no longer supported, use 4.1 style passwords.
default.aspx.cs
MySqlConnection conn;
string myConnectionString;
...
0
votes
1answer
22 views
Spring Security Without Role-Base Using Database
I want to implement Spring Security(Authentication and Authorisation) I Google about it and any MKYoung Spring Security Example, I Just want to distinguish URLs between authenticated user and ...
-3
votes
0answers
7 views
using windows authentication in InDesign software [closed]
We're a group, and work on the local newspaper.
we implement a LAN, and try to group working on our newspaper.
in design is a desktop publishing software, and provide group working feature
by help of ...
0
votes
2answers
27 views
Symfony2 - Logging out of one firewall
I have two firewalls, "admin" and "client", in my Symfony2 project. They both use the same entity provider.
The problem I'm having is that when I log out of one firewall, I'm logged out of the other ...
-1
votes
0answers
24 views
Using PHP CURL to answer secret questtion at login [closed]
I am attempting to login into an account using cURL in PHP. I successfully login through the first login form. However, you have to answer a security question on the next page. I am trying to POST the ...
-2
votes
0answers
9 views
link betwwen windows authentication and incopy software
we have several designers on our lans and they want to work together in incopy software.
incopy has a user/pass to login to software.
how can use windows authentication for adobe incopy software ...
0
votes
1answer
96 views
+50
java.io.IOException : No authentication challenges found
I am newbie to android and this is my first project on android. I am struggling with "authentication" problem for more than a day. I tried several options but none of them worked.
Basically, I want ...
0
votes
1answer
33 views
Auth login with email or mobile Cakephp
I am working on cakephp 2.x.i have a table in my database name user and it has 4 fields id, email, password and mobileNo
i have two fields in my login.ctp
<?php
echo ...
0
votes
1answer
25 views
Using email instead of username in CakePHP Auth Component
I am working on cakephp 2.x . my problem is i dont want to use username for logging .. i am taking the email and password from the user and verify this email and password from the database
i have a ...
1
vote
2answers
46 views
window.location.replace() not working [closed]
So I'm trying to redirect users to an admin page after a login, but when I use window.location.replace(), the page just reloads itself. How do I get this to redirect the users? Here's the source code:
...
1
vote
1answer
15 views
Authentications methods in Rails: web client and mobile client
In rails i want write an authentication system from scratch.
This authentication must works for web clients and mobile apps.
There are any tutorials that explain how to achieve that?
I know that for ...
1
vote
1answer
31 views
Create login with groups (with roles) and users with revoke roles - Symfony2
I there,
I Want create a custom authentication that provides user roles, groups and roles groups. The login that i want to create is the next:
Users have groups and groups have roles;
Users have ...
0
votes
1answer
20 views
Django Authenticate
Having for instance
http://mywebsite.com?increase_counter=true/
I want to let someone increase counter on my database with a GET request but only when he is authenticated. How can someone be ...
-1
votes
0answers
24 views
Login to Hyper-V virtual machine with Powershell [closed]
Is it possible to logon to a virtual machine on hyper-v using a powershell script? I have already created a script to shutdown, backup, start, etc. the machine. I need it to be able to logon so that ...
0
votes
0answers
7 views
google-authenticator PAM module not respecting params
I am trying to run the google-authenticator in ubuntu programtically, but my arguments are not being respected.
Here is my script:
exec sudo su -c "google-authenticator --rate-limit=3 --rate-time=30 ...
0
votes
1answer
19 views
CAS authentication in localhost with an application running locally
I have my CAS setup locally. I have a grails application that is running locally as well. My CAS authentication is working. My CAS is running at this location
...
0
votes
1answer
21 views
Validating Google ID tokens in C#
I need to validate a Google ID token passed from a mobile device at my ASP.NET web api.
Google have some sample code here but it relies on a JWT NuGet package which is .Net 4.5 only (I am using ...
1
vote
1answer
28 views
Should authentication token be encrypted?
If I append an HMAC to the auth token then the token cannot be tampered with. I notice many articles also recommend encrypting the token (which contains user id, expiration date and hash). What is the ...



