Tagged Questions

10
votes
3answers
577 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 ...
7
votes
2answers
424 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
0answers
179 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 ...
5
votes
3answers
579 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 ...
3
votes
2answers
673 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
652 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 ...
2
votes
1answer
73 views

Getting confused with Apache Shiro and Custom Authorizing Realms

I am trying to create a simple Authorizing Realm for Apache Shiro for testing: public class MyAuthRealm extends AuthorizingRealm { @Override protected AuthorizationInfo ...
2
votes
1answer
186 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 ...
1
vote
3answers
224 views

Grails + Securing Application

Im working on a legacy grails application. I have a couple of tables like this User ( id, name,enterprise_id) Enterprise (id, name) Asset (id,description, enterprise_id) I want to validate that ...
1
vote
1answer
485 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 ...
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--- ...
1
vote
1answer
102 views

Data-related security Implementation

Using Shiro we have a great security framework embedded in our enterprise application running on GF. You define users, roles, permissions and we can control at any fine-grain level if a user can ...
0
votes
1answer
51 views

Is there a way to get the IP address of the client/caller in a Shiro Filter in Grails

sorry if this is a dumb question. I have some web service calls that are implemented in Grails controllers and we use the Shiro plugin for security. I want to be able to create a whitelist of IP ...
0
votes
0answers
77 views

eclipse shiro ini problem

Honestly, before posting question did googling and 2 days tried to solve problem on my own... I want to get Apache Shiro working with GAE. Before that, I had success with Spring Security, but here I ...
0
votes
0answers
102 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 ...