Tagged Questions
Apache Shiro is a powerful and easy-to-use Java security framework that performs authentication, authorization, cryptography, and session management.
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
389 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
2answers
973 views
What makes nimble better than shiro?
What makes nimble a better choice than shiro?
I'm trying to decide between nimble and shiro for a new grails project right now and I'm curious what makes nimble the better choice.
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
1answer
302 views
Using FiltersUnitTestCase to unit test Shiro security filters, IllegalStateException
Update: I have changed this question to be about the specific problem I am having. This is because unit testing of Filters will be supported in Grails 2.0 so hopefully the documentation will be better ...
4
votes
1answer
551 views
how to implement Shiro Security of Grails in my Project
i m new to Grails and using some Shiro security.
I have made a little site with login page and if login successful it redirects me to another loggedin page.
now i want to implement Shiro Security. I ...
4
votes
0answers
164 views
How to use Shiro for authenticating cookie based or facebook user?
In my web application, I do not have user registrations/login. What I have is the user account is automatically created when the user visits the site first time based on the cookie. How can I use ...
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
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
1answer
229 views
Small differences in SHA1 hashes
A project I am working on uses Apache Shiro as a security framework. Passwords are SHA1 hashed (no salt, no iterations). Login is SSL secured. However, the remaining part of the application is not SSL ...
3
votes
2answers
543 views
Apache Shiro “with JSF 2.0” ! How does it go?
I am looking for frameworks/solution for authentication/ user-login management/ security in java web application that can make the naive developer's job easier/faster and make the application ...
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
4answers
430 views
need some tutorials on Grails Shiro Security
hey all
i need some good tutorials demonstrating all the aspects of grails shiro securty, that how to use them using some example.
i already have read the tutorials explained in grails site but i ...
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 ...
3
votes
4answers
1k views
Security in Grails-app: Acegi or Shiro
i'm developing a Grails based web-application and i need to choose one of these two frameworks for authentication. In your opinion, what criterions favor the choice for Acegi and what criterions favor ...
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
95 views
How to use a shiro native session in a grails web application?
Currently, I am using the default HttpSession object in both controllers and gsp pages:
In controllers:
...
session.mykey = anObject; // adding an object to session
...
if (session.otherkey) { ...
2
votes
0answers
48 views
Grails and Apache Shiro - How to implement doUpdatePassword and doResetPassword closures
I'm developing a Grails app and I'm using Shiro to handle the access security. I think my app is now secured but there are some missing features. The generated password is too hard to remember so it's ...
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
1answer
124 views
Grails problem with shiro-quick-start: imports cannot be resolved (by Eclipse)
On my fresh new grails project, I installed shiro
(grails install-plugin shiro)
and the quick setup grails shiro-quick-start. This generated new files as described in the shiro documentation.
...
2
votes
1answer
663 views
Configuring Apache Shiro with Google Guice Servlet
I'm starting to use Guice/Shiro instead of Spring/Spring Security. I have looked examples from Shiro site, and all configuration examples are made as INI-file examples. Is it possible to configure ...
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
1answer
211 views
How do we configure the grails shiro plugin v1.1.3?
I'm finding it very difficult in discovering the correct method to configure my app to work with the plug, I am using grails 1.3.6 and the Shiro plugin 1.1.3
I've setup my application according the ...
2
votes
1answer
710 views
JSF 2.0 and Apache Shiro
Do you know some reference project or guide how to use Apache Shiro with JSF 2.0?
B.R Carl
2
votes
1answer
439 views
how to use cache permissions in grails shiro
everytime i call subject.isPermitted(), it send a sql to db.
how can i cache it?
any example? thanks
i had read the doc of shiro grails plugin. but cant solove it.
DataSource:
hibernate {
...
2
votes
6answers
2k views
GORM createCriteria and list do not return the same results : what can I do?
I am using Nimble and Shiro for my security frameworks and I've just come accross a GORM bug. Indeed :
User.createCriteria().list {
maxResults 10
}
returns 10 users whereas User.list(max: 10) ...
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 ...
2
votes
1answer
548 views
Grails Shiro plugin : confirming my understanding
I'm bit vague about how to start using the shiro plugin, after reading few documents. I decided against Nimble, as it comes with few tables and UI plugins.
I setup shiro plugin with wildcard realm, ...
2
votes
1answer
539 views
Error in shiro configuration in a Grails-app
i'm using the Apache Shiro as the framework for athetication of my application. I was following the reference at http://www.grails.org/plugin/shiro
and my application throws the exception:
No ...
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
58 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
39 views
Grails: How to protect gsp views with shiro?
I am using shiro to protect my grails application, using the default setup as with
grails shiro-quick-start
and a custom user. So far, all controller actions are protected, but if I put in the URL ...
1
vote
1answer
63 views
Shiro grails plugin - config
setting up shiro session cache with ehcache+terracotta ,putitng these configs in config.groovy -
security.shiro.sessionDAO = "org.apache.shiro.session.mgt.eis.EnterpriseCacheSessionDAO"
// This ...
1
vote
1answer
93 views
access control, role and permission in grails
I am working on a grails application for the first time and I now want to protect some pages to be viewed only by admins, and give some permissions to other users.
I am using Apache Shiro plugin for ...
1
vote
1answer
36 views
tapestry apache shiro requireroles annotation
I tried this to prevent role doctor, and employee from accessing the page.
@RequiresRoles(value = {"doctor", "employee"})
But now, doctor and employee cannot access the page.
However, ...
1
vote
1answer
48 views
Grails / Shiro internal URL request
We have a grails app and are using the Shiro security plugin.
We are currently using the groovy URL feature to grab the output of a page and render the contents within a DIV but when such a request ...
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
1answer
220 views
Spring MVC and Shiro Configuration using ini files
I'm trying to set up an environment with Spring MVC and Apache Shiro. I'm following articles mentioned in shiro.apache.org.
I'm using Spring's DelegatingFilterProxy as Shiro Filter in web.xml.
The ...
1
vote
2answers
182 views
Grails - ShiroSecurity - manually login user
I am trying to do relatively simple thing: log in user manually. I am using FacebookGraph plugin to connect to facebook. If user logs in via Facebook, i get his ID and I want to authenticate him in ...
1
vote
1answer
132 views
Specifing package for ShiroUser in Grails
Very very basic question.
Is there a way to specify the package (when doing shiro-quick-start) where to place ShiroUser and ShiroRole classes at?
By default they are placed at grails-app/domain/ and I ...
1
vote
1answer
247 views
Spring AOP and apache shiro configuration.Annotations not been scanned.
I've been struggling with a configuration which requires a knowledge in AOP.
i must admit that AOP is that part i'm trying to get for a while without success.
It seems that my shiro annotations are ...
1
vote
0answers
137 views
Can I use expressions in Apache Shiro security annotations?
I've been doing some comparisons between Apache Shiro and Spring Security - I'm really loving the security model that Shiro uses and believe it to be far cleaner that Spring Security.
However, one ...
1
vote
1answer
133 views
Shiro, Hibernate and Envers
I've got shiro implemented and it's working quite well. We're now trying to implement envers to do audit logging of our entities in hibernate and that works as well. One problem is we're trying to ...
1
vote
1answer
81 views
Shiro + Keys stored as strings = failure point or unnecessary concern?
Not getting into too many specifics, this is a high level question.
I've always gone by the idea that it is never a good idea to store primary keys in places that does not have a constraint. For ...
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
1answer
136 views
how to restrict action in grails shiro security
.please guide me that i have 2 methods in my Controller one is login and second is logout. and 1 role 'user' defined in my DB and i have a user with that role. now what i want to do is that person can ...
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 ...