Tagged Questions

JAAS is the Java Authentication and Authorization Service found in the JRE (1.4+).

learn more… | top users | synonyms

20
votes
9answers
786 views

Is there a reason why software developers aren't externalizing authorization?

The value proposition of externalizing identity is starting to increase where many sites now accept OpenID, CardSpace or federated identity. However, many developers haven't yet taken the next step to ...
13
votes
5answers
4k views

JAAS for human beings

I am having a hard time understanding JAAS. It all seems more complicated than it should be (especially the Sun tutorials). I need a simple tutorial or example on how to implement security ...
9
votes
2answers
3k views

How to validate a Kerberos ticket against a server in Java?

we are using JAAS to enable Single Sign On in a Java application using the Windows Kerberos ticket cache. Our jaas.conf config file looks like this: LoginJaas { ...
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 ...
6
votes
4answers
3k views

Java Web Application: Using a custom realm

I'm writing a java web application which need to perform login through a webservice. Of course, none of the realms supplied with the application server I'm using (glassfish v2) can do the trick. I ...
5
votes
1answer
3k views

Java and Kerberos authentication krb5.conf versus System.setProperty

Please help me on a kerberos+Java problem. I have a simple Java program to authenticate to a Windows Active Directory using Kerberos. The following java code works fine without any problems and prints ...
5
votes
2answers
2k views

How to connect to HTTPS server using Common Access Card

I need to write a java program to connect to a HTTPS server (DoD website). The website requires CAC (DoD common access card) authentication. If you access this site via browser, you insert your CAC ...
5
votes
4answers
2k views

Java Security Framework

Security always tends to take the last place in a new project. Or you use a framework like Spring where security is already build-in and can be switched on easily. I try to find an open security ...
4
votes
2answers
140 views

User managed security in Java EE

I want to protect my JSF pages in a Java EE 6 app. I want to store users and roles in the DB and have privileged users administer them via a web tool. The privileged users would add users to roles ...
4
votes
1answer
391 views

Tomcat security roles mapping

This is related to Tomcat 6 with JAASRealm and a custom JAAS module for security. Other Application Servers seem to support the mapping of application role names (in web.xml) to actual groups of the ...
3
votes
0answers
36 views

Web Service authentication in Java EE

When developing a Web service(Hospital Management System) using Java EE, is it necessary that for each Web Service call, it has to be checked that the user is logged in?? Which authentication method ...
3
votes
2answers
503 views

When to move from Container managed security to alternatives like Apache Shiro, Spring Security?

I am trying to secure my application which is built using JSF2.0. I am confused about when do people choose to go with security alternatives like Shiro, Spring Security or owasp's esapi leaving ...
3
votes
2answers
299 views

How to get all the LDAP groups for a particular user?

I have a weblogic server using an external LDAP as Provider for authentication. I than need to recover the groups that a specific user has associated with in an LDAP repository. The login uses ...
3
votes
1answer
414 views

Why should i use JAAS against hand-written security?

I got hand-written security, simple servlet-filter which redirect not-authorized user to their login pages. Login controller redirect them to the requested URL after successfull authentication or ...
3
votes
1answer
345 views

j_security_check - can additional parameters be passed for form submits?

Is it possible to pass additional parameters with 'j_security_check' in place? I would like to pass the the ip address from the login page plus other parameters.
3
votes
1answer
810 views

Using Mockito, how do I intercept a callback object on a void method?

I'm using mockito to test a legacy JAAS/LDAP login module. The javax.security.auth.callback.CallbackHandler interface defines the function: void handle(javax.security.auth.callback.Callback[] ...
3
votes
2answers
384 views

Java Application with Multiple JAAS Security Realms

I was wondering if it was possible to have a Java EE application with multiple JAAS security realms. I'm currently developing an application in which some users need to be authenticated with data ...
3
votes
1answer
271 views

Enable Grizzly to perform JaaS simple HTTP AUTH

How can I make Grizzly HTTP server allow JaaS for simple HTTP AUTH? I can't see any code/sample out there: There's another post here in StackOverflow that directly assumes that jaaS is available in ...
3
votes
1answer
2k views

How does java LoginContext.login() work?

I have this code to create a configuration of a java client to connect to a JBoss application server: System.setProperty( "java.security.auth.login.config", "auth.conf" ); LoginContext auth = new ...
3
votes
1answer
1k views

EJB Authentication and Authorization

Is there any way to extend the authentication operation which connects a client application to an EJB, using standard JAAS/container-based security? I'm looking for a way to use more than just a ...
3
votes
3answers
553 views

What's the point of JAAS

What's the point of JAAS if I have to write my own {whatever}LoginModule and everything else?
2
votes
2answers
121 views

GlassFish 3 custom Realm password-column

I configured my glassfish custom realm with this properties: Jaas: jdbcRealm JNDI: jdbc/myDatasource User Table: usuario user name column: nombre ...
2
votes
1answer
390 views

LoginException: Login failed: Security Exception

I am attempting to setup container managed security with GlassFish v3.1.1 Build 12 and JSF 2.1. I keep getting the following exception for some reason and I am unable to login. WARNING: WEB9102: Web ...
2
votes
1answer
61 views

How to add “Disable User” admin-feature in JEE application?

I have a JEE application that uses JDBCReal as JAAS Context for authentication on Glassfish 3.1. And below is the authentication code in a JSF2.0 managedbean - FacesContext context = ...
2
votes
2answers
152 views

How can I hide some content based on user role in JSF?

I'm using JAAS and have applied security on some folders for different roles. I want to hide some navigation for different users because, although the pages are not accessible, the user can still see ...
2
votes
1answer
338 views

Newbie at JAAS authentication; Sign in using a token in the URL Bar

I have an interesting project requirement where we must accept a token as a GET paramenter that will authenticate a user coming into an application. This is to allow trusted third parties to ...
2
votes
2answers
256 views

How to implement EAR-wide JAAS

I'd like to implement JAAS across the whole of my EAR file containing multiple wars. I have successfuly set it up on each war, but that means when the user is switching between wars (via hyperlinks ...
2
votes
1answer
287 views

Using @RunAs in my EJB Schedulers

I have many EJBs with my business methods. These methods use @RolesAllowed annotation to check if user can execute this method. So I have an EJB Scheduler that calls these EJB methods. EJB schedulers ...
2
votes
1answer
320 views

Java EE SSO Best Practices

I found a great white paper (by Sun) about integrating Kerberos, JAAS and the GSS-API together for a heavy-duty SSO system. Unfortunately the article was written for Java 1.4 and is several years old. ...
2
votes
2answers
568 views

JAAS - Web SSO integration on Tomcat

I'm trying to integrate Web SSO via JAAS in my web application under Apache Tomcat. I've worked through Apache documentation and other stuff to get inside. Common approach is to implement login ...
2
votes
1answer
115 views

Where to place security configuration file in WAR?

I'm trying to use JAAS for authentication in my WAR. I understand that my configuration file (another link) should be placed somewhere (as explained here). Unfortunately, I can't understand where ...
2
votes
1answer
527 views

How to define Tomcat security Realms per webapp

When using JAAS JDBCRealms with Tomcat, I usually define the realm in server.xml. But now I am looking for a simpler solution, where I don't have to configure the Tomcat container when deploying the ...
2
votes
2answers
343 views

Can a JAAS login module be deployed in an EAR (on JBoss 5)?

The subject pretty much sums up the question. Normally a JAAS login module is deployed outside of an EAR application (which uses the authentication service, but doesn't deploy it). Is it possible to ...
2
votes
1answer
401 views

What is the best prctice for using security in JAX-WS

Here is scenario : I have some web services (JAX-WS) that need to be secured. Currently for authentication needs I providing addition SecurityWService that give authorized user some userid & ...
2
votes
1answer
180 views

URLCallback with JAAS on WAS?

I extended the JAAS javax.security.auth.spi.LoginModule, and installed it into a WAS server. It works; all logins go through the code in this new class, and if it says to not let them login, they're ...
2
votes
2answers
781 views

Logging into Jackrabbit with custom LoginModule

I am trying to write a LoginModule that authenticates users with Jackrabbit repository. However, I want it to check the credentials that are stored in repository itself. So the problem is, in my ...
2
votes
1answer
826 views

JAAS - isUserInRole returns false for all roles in Tomcat

Here is the issue, The JAAS realm connects to the database fine, the user name and password match, the session is authenticated. HOWEVER, none of the roles seem to be getting into the Principal. ...
2
votes
2answers
1k views

JAAS tomcat login module possible method to pass ip address

I've been looking into a way of passing the client ip as well as the userid and password from a JAAS login page to the JAAS login module implementation in my web code. JAAS only allows the user id ...
1
vote
0answers
34 views

Security constraint in web.xml for authenticated users without role memberships

I am quite desperate, because I think there must be an easy solution to my problem but I am searching - to no avail. I am using a custom Realm in Glassfish 3.1.1. This custom realm (implements ...
1
vote
0answers
23 views

Configuring JAAS on Liferay Portal

Could anybody provide pointers to configure jaas on liferay portal using customized login module.
1
vote
1answer
56 views

Using JAAS (Java Authentication and Authorization Service) on Android

Is it possible to use JAAS within an android app? In the android API most of the classes of the javax.security.auth package are saying Legacy security code; do not use. But is there any ...
1
vote
0answers
61 views

java.security.auth.login.config file in path with space

When I execute System.setProperty("java.security.auth.login.config", ejbLoginConfig); using ejbLoginConfig = "../conf/weblogicdomain.conf" and my client is in a path containing spaces, I get a ...
1
vote
0answers
45 views

Using jetty plus in equinox jetty bundle

We are trying to get JAAS working in our RAP application. We run jetty through the equinox jetty bundle and configure it with a fragment which contains a jettycustomizer class. Now we want to use ...
1
vote
1answer
209 views

How to pass WebSEAL security context from JSP/Servlet to EJB

I have JSP with calling to my Session Bean, I've implemented this via JNDI InitialContext(). Session Bean class is having a @RolesAllowed annotation with one defined user. I want to restrict users who ...
1
vote
2answers
77 views

How to programatically specify my user/role in OpenEJB?

In the project I'm working on, we are using OpenEJB as a framework to test our EJB. We construct an InitialContext programatically, and use it to get the transaction manager and the various EJB. ...
1
vote
1answer
55 views

Avoid login (JAAS) every time I change path (and it generates a new session)

I've configured my Java EE app to use declarative security with JAAS (I've even implemented a custom LoginModule). The problem is that every time I change the url path (e.g. from ...
1
vote
2answers
327 views

EJB3 & How JAAS subject/principal is propagated to EJB Tier from servlet container?

I'm trying to understand how the JAAS principal propagates to the Business/EJB tier from web tier. I've read that the if the roles/realm is configured in login-config & security-context of ...
1
vote
1answer
270 views

JBoss AS: No valid security context for the caller identity

I need to get the caller's user name in a SLSB using JBoss AS 6. Therefore, I passed it to the InitialContext like this: Context ctx = new InitialContext(); String userName = ...
1
vote
1answer
119 views

JBoss JAAS custom Login Module Error messages

I have an application that makes used of a custom login module of JBoss. Authentication can fail for a wide variety of reasons and i have to display these to the user instead of the usual Inavlid ...
1
vote
1answer
847 views

Glassfish 3.1 default principal to role mapping

I am working with glassfish and jaas module. I configured my web.xml in this way. <security-constraint> <web-resource-collection> <web-resource-name>ALL Page for ...

1 2 3 4