Tagged Questions

30
votes
2answers
4k views

Shiro vs. SpringSecurity

I have currently evaluating Java based security frameworks, I am a Spring 3.0 user so it seemed that SpringSecurity would be the right Choice, but Spring security seems to suffer from excessive ...
9
votes
3answers
527 views

High level Java security framework

What security framework do you use in your Java projects? I used Spring Security and Apache Shiro and they both look immature. Spring Security flaws: no native support for permissions; no ability ...
6
votes
2answers
390 views

How to implement row-level security in Java?

I am currently evaluating authentication / authorization frameworks. Apache Shiro seems to be very nice but I am missing row-level security features. E.g. there might be special rows in a database ...
5
votes
3answers
572 views

Java options for web user authentication

I'm looking for a secure user login/session management component for a public web app. Spring Security seems to have potential, are there any other high quality alternatives? Conceptually this is ...
4
votes
2answers
542 views

JSESSION/HTTPSession vs. application-crafted session ID

In a web application based on propraietery MVC and authorization model, we have recently migrated to Spring MVC. As part of that move, we are also looking at moving away from a locally created GUID ...
3
votes
1answer
149 views

Shiro authentication with sessionId or username+password

I do not have much experience in Java authentication frameworks and authentication workflow in general (only some theoretical knowledge), so for educational purposes I'm trying to create this type of ...
3
votes
2answers
505 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
225 views

Hashed and Salted Password is not always the same

I am using Apache Shiro as my security layer in my Spring app and I am encountering a really weird situation. Firstly, this is how my security system is set up. When a user registers their password ...
3
votes
3answers
1k views

Apache Shiro and Google Guice: Inject Dependencies into Realm

I develop a rest api with Jersey and want to use Google Guice for Dependency Injection and Apache Shiro as a security framwork. For Authentication i created a custom Realm to which I have to inject ...
2
votes
1answer
69 views

Java and Spring back-end with Ruby (RhoMobile) front-end security

I am currently building a mobile application using RhoMobile. The application will simply be calling a bunch of REST web services. The back-end REST services are written in Java + Spring. I was ...
2
votes
1answer
162 views

Apache Shiro & Java Security for Novices

I know next-to-nothing about Java's security model, including XML configuration, policy-setting, any security framework components, tools (such as keystore, etc.) and everything in between. Although ...
2
votes
3answers
898 views

What database tables does Apache Shiro require?

I want to use Apache Shiro and MySQL for my Realm. What tables and fields does Shiro need to work?
2
votes
2answers
1k views

How to easily implement “who is online” in Grails or Java Application?

I am building a community website in grails (using Apache Shiro for security and authentication system) and I would like to implement the feature "who is online?". This url ...
1
vote
1answer
88 views

Shiro 1.2 not working with Guice (and Vaadin)

First time user, please be kind! I have a bit of a problem configuring Shiro to filter Vaadin-generated pages using Guice. I have looked online on various websites including the Apache Shiro's ...
1
vote
1answer
23 views

Instance level access control in Apache Shiro

I found really a flexible security framework Apache Shiro. I successfully implemented authentication and authorization using Shiro. One of appealing features of the framework is instance based ...
1
vote
2answers
59 views

Shiro: Session already invalidated

I am using Apache Shiro in a web-application. The login and authentication check works well, but I have a problem to implement a logout / re-login mechanism: The logout is done in a servlet: ...
1
vote
1answer
205 views

How to configure roles with Apache Shiro 1.2-SNAPSHOT and Guice?

I'm playing around with Shiro and would like to configure roles via the ShiroWebModule. addFilterChain("/**", AUTHC); this works, my loginpage is shown and I can login. But ...
1
vote
0answers
230 views

Best practices for entitlement using spring security and/or shiro

I'm interested in opinions on the best way to handle the concept of "entitlement" using either Spring Security or Shiro. For example, imagine, say, a JAX-RS endpoint that has a signature like this: ...
1
vote
0answers
106 views

Http Authentication Server Library

Is there any Java library to verify a Basic or Digest Http authentication? Spring Security provides both but Apache Shiro only have Basic. Is there any library (other than copy-paste classes from ...
1
vote
1answer
245 views

Hashing and Salting passwords with shiro

In apache shiro the default hash implementation is as follows: MessageDigest digest = getDigest(getAlgorithmName()); if (salt != null) { digest.reset(); ...
1
vote
1answer
638 views

Spring MVC, RESTful Services & Apache Shiro Strategy

I am busy working on a project that needs a REST API to allow users to access their information on a server. I have the system working using Spring MVC and the MappingJacksonJsonView to return JSON ...
1
vote
1answer
273 views

JMX Client Session

I've bean studying JMX for a while, but I'm stuck. I have an application that exposes some functionality to remote clients via JMX, although existing security features may be sufficiant for most ...
1
vote
2answers
1k views

Web-Application Security with Apache Shiro Configuration Problems

I decided to use Shiro to secure my webapplication. I use a tomcat app server, maven, hibernate and jsf. Now I tried to configure Shiro but got some problems. Here are my files: ---POM.xml--- ...
0
votes
1answer
116 views

Not able to get proper results using Apache Shiro configuration

I am trying to use apache shiro into my project as I have to create a role based mechanism into my project. I created a demo project with following configurations... I created following files into my ...
0
votes
1answer
36 views

Finding existing ShiroRoles to add to a New ShiroUser using Grails?

How can I retrieve an existing ShiroRole that I've already created and stored in the database? I've noticed that you can retrieve an existing ShiroUser by calling ShiroUser.findByUserName("somename") ...
0
votes
0answers
309 views

How can I delegate JAAS authorization checks to Shiro?

I'm developing a server-side application that needs authentication and authorization based on objects. I like Shiro's simplicity, but for being compatible with JAAS I wrote a LoginModule that uses ...
0
votes
0answers
96 views

Apache shiro and Fingerprint Token

i need two step Authentication with shiro , firstly fingerprint then password checking. my fingerprint is byte[] and must check with Fingerprint SDK, i need solution in shiro for building new Token ...
0
votes
1answer
240 views

Apache shiro implied permissions

If a user has a permissions user:edit:1 and I'm using the annotation driven @RequiresPermissions("user:edit") why is shiro throwing an exception? Shouldn't that permission be implied by the fact that ...
0
votes
1answer
202 views

Shiro permission string has denied feature?

I use shiro plugin for grails and allow user to add permission at runtime. My controller has many actions such as index,list,edit,create,save,update,search,delete .... Suppose that controller name is ...
0
votes
1answer
457 views

apache shiro: authc.loginUrl doesn't work

I configured Shiro as follows: [main] [users] ... [roles] ... [urls] /welcome.xhtml = anon /overview.xhtml = authc As you can ...