Tagged Questions
0
votes
3answers
98 views
Spring Security | Method level security with @Secured/@PreAuthorize
I've been trying out 'Method Level' security on this application I've been working on. The idea is to secure a method which gets called from the presentation layer using DWR.
Now, I've tried adding ...
4
votes
2answers
98 views
Security of web services (REST & SOAP) [closed]
My first post here! I wanted to get some community help on security of web services.
I'm doing a state of the art on web services security. I need every bit of a solution out there that solves ...
1
vote
1answer
53 views
Hash (with Spring) and salt: is this safe?
I've a Spring based web app, so I came up using spring-security-3.0.8 (I know, that's not a good reason, lol) and I find out the PasswordEncoder class. In my case I'm using the Md5PasswordEncoder, but ...
0
votes
1answer
47 views
Spring Security 3.0: Method Security being ignored
I'm new to Spring Security and I'm having trouble getting Spring Method Security to work in my web application although (I believe) I've setup the web.xml, applicationContext.xml and ...
0
votes
0answers
70 views
Spring security authenticating error
I have an application which I have configured so I can use database to authenticate users.
Trying to login as either user or admin with the set up username and password gives this error:
HTTP ...
0
votes
0answers
21 views
Spring TokenBasedRememberMeServices with hashed password
I am using StandardPasswordEncoder which hashes the password using SHA-256 with 1024 iterations and 8-byte salt. I was looking at TokenBasedRememberMeServices for doing a similar thing or at least ...
1
vote
1answer
163 views
Securing GWT servlets with Spring Security
I'm writing a GWT application secured with Spring security. Logging in works fine, but authorization doesn't.
I've tried using @Secured and @PreAuthorize annotations on my methods and that didn't ...
0
votes
0answers
51 views
Spring Webflow: logout
I am using Webflow 2.3.0.RELEASE and Spring 3.1.2.RELEASE with Spring security and Freemarker.
It all works well except that when I logout the session is not destroyed.
e.g. when I click the logout ...
2
votes
1answer
80 views
Spring - Java EE User still null after authentication
I'm new to Java EE / Spring and I've been fighting with security for the past two days. I finally have to the point where I can authenticate with Java EE and authorize with Spring. Unfortunately, I ...
0
votes
1answer
44 views
acegi security login without manual password entering
We used form based acegi security login in our application. But now we want to pass login and password information from another application, so opening of our application must be transparent for the ...
0
votes
0answers
93 views
I use spring security custom filter when I log in always redirect to the error page
<xmlns:s="http://www.springframework.org/schema/security"
<s:http auto-config="true" use-expressions="true">
<s:form-login login-page="/login.action" ...
0
votes
0answers
85 views
Spring Security and MVC i18n not working as expected
The Problem: When a user clicks a link which has ?langId=fr_FR to navigate to my site the /logon.html page displays in French. But, after attempting to log in (if log in fails) the /logon.html page is ...
1
vote
1answer
87 views
Client-server user authentication
UPDATE: I failed to mention earlier that we want solution that will be flexible with authenticating users from within our databases or by asking other servers to tell us if the user is authenticated. ...
1
vote
1answer
64 views
How can I require that all request handlers in my Spring application have @PreAuthorize
I'd like to switch a Spring security application over to annotations, but I want to make sure that every request has its own @PreAuthorize annotation before allowing it to be called externally.
Is it ...
0
votes
1answer
96 views
Unsafe JavaScript attempt to access with frame
when i using Iframe and try to access different URL(same domain) into iframe, Am getting an error - Unsafe JavaScript attempt to access frame
Error - Unsafe JavaScript attempt to access frame with ...
1
vote
1answer
168 views
Spring Security doesn't always perform logout
Here is my Spring Security configuration:
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
0
votes
1answer
416 views
How can I configure two Spring security http elements with different authentication filters?
I'm using Spring 3.1.1.RELEASE with accompanying Spring security. I'm deploying to JBoss 7.1.1.Final . I would like to configure two http security elements, each with a different authentication ...
3
votes
2answers
77 views
Grails Security without database implementation
I'm developing a web application with Grails 2.2.0 which does all actions through an implemented API which is calling another backend server. This means, that all things, even the authentication and ...
2
votes
2answers
746 views
How to integrate Spring Security and Struts2
I've done tons of googling regarding this issue and up to now I could not find any tutorial regarding integrating Struts2 and Spring Security.
My question is that How would I integrate Spring ...
1
vote
1answer
198 views
denying access for multiple users of same role in spring security
I've run into a such situation: my application has several roles(administrator, moderator, user). Moderator and User can edit some forms. All permisions are ok. But when I'm loggen in as a user(role ...
0
votes
0answers
107 views
JasperReports Server Null pointer exception after CAS integration
I have followed the guide on this wiki to integrate JasperReports Server 4.7.1 Pro with CAS authentication.
The authentication is done successfully and I am able to redirect to the home flow, ...
0
votes
1answer
150 views
spring security mysuccessHandler
using spring security to protect my RESt WebService
i have one usue which is
this class org.rest.security.MySavedRequestAwareAuthenticationSuccessHandler
<?xml version="1.0" ...
8
votes
0answers
222 views
Which Java security framework to use? [closed]
We are building an O&M framework in Java, which will support both web based GUI and console based CLI. Later, it will also be supported with GUI that can be accessed using handhelds (Andriod app ...
-1
votes
1answer
57 views
Acegi encode password in browser or server
I'm doing with acegi security and i see in .xml file:
<property name="passwordEncoder">
<bean class="org.acegisecurity.providers.encoding.Md5PasswordEncoder" />
</property>
...
0
votes
1answer
230 views
Securing REST urls with Spring
I have a working Spring REST web service and want to add basic authentication to it. The controller methods have normal url and HTTP method annotation attached to them. For adding security, I do two ...
2
votes
1answer
1k views
Spring security Taglib
i want use spring security taglibs in my jsf project,so I've made the following changes to the project,but I get this Exception:
Error occurred during deployment: Exception while loading the app ...
2
votes
1answer
81 views
How to authorize system calls in spring security
I implemented spring security in my web application. Now all my services are secured and can be only invoked by authorized users. Everything works on webside, but if I invoke method via JMX or by ...
0
votes
1answer
236 views
Invalid remember-me token (Series/token) mismatch. Implies previous cookie theft attack
org.springframework.security.web.authentication.rememberme.CookieTheftException: Invalid remember-me token (Series/token) mismatch. Implies previous cookie theft attack.
at ...
6
votes
1answer
93 views
Disable Spring method security in version 3.0.x
I have a web application with spring security configured to limit access on both URLs and methods. I want to disable it entirely by-default, and allow my customers to easily turn it on if they want to ...
0
votes
0answers
140 views
spring security authorization intercept url
I am using spring security and I have set the
<s:intercept-url pattern=XXX access="Role_name"/>
in applicationContext-security.xml file for a special user. for example:
when I login with ...
1
vote
0answers
29 views
Is there a way to integrate the S3's ACL with my own user repository?
I am writing a java ee application, with its own users and roles repository (based on the Spring Security Framework). In the application, some users upload large files.
I want these files to be ...
2
votes
1answer
167 views
How to programatically return a json response after executing a custom filter UsernamePasswordAuthenticationFilter?
I'm creating a custom filter UsernamePasswordAuthenticationFilter to handle the authentication process. Basically, when the User performs login http post through the REST /login, the custom filter ...
0
votes
0answers
184 views
URLConnection and Spring Security PersistentTokenBasedRememberMeServices
I'm trying to use sitemesh to pull content together on a screen. You have to be "logged" into the site to view the page that site mesh is displaying and you must be logged in to view the components ...
0
votes
2answers
89 views
Spring Security annotations not consistent?
I noticed that on my code, I can successfully annotate methods on services classes (@Service) with both @Secured("ROLE_ADMIN") and @RolesAllowed("ROLE_ADMIN"). It works. Though, when I move the same ...
1
vote
0answers
26 views
Spring security Saved URL RequestCache does not store # (hash) [duplicate]
Possible Duplicate:
How to get Url Hash (#) from server side
I am using Spring security to protect resources on our application. Unfortunately, spring does not store the full url's that ...
1
vote
1answer
678 views
Struts2 Authorization
I am about to graduate from university with a web application that needs be implemented at school, everything is working perfect and this needs to be ready before november but I'm having a real ...
-1
votes
1answer
78 views
What is the best way to manage access to web controller in java? [closed]
I have some question. What is the best way to manage access to web controller in java?
For example I have users and projects.
Each user can have several projects, but I don't want, that anyone has ...
2
votes
2answers
3k views
Spring MVC - Checking if User is already logged in via Spring Security?
I have a Spring MVC application.It uses its own custom Login page. Upon successful login, a 'LOGGED_IN_USER' object is placed in the HTTPSession.
I want to allow only authenticated users to access ...
2
votes
1answer
199 views
Stop accepting GET request in spring j_acegi_security_check
I am using j_acegi_security_check to login into the Spring web application but because it is accepting GET parameters, too, this means that I'm able to login into the application with
...
0
votes
2answers
135 views
Spring Security Recommended Design To Request User Login to Different User With Different Role
I have the following use case and need recommendations on the proper implementation. To be clear can this be done through configuration or do I need to implement new code?
Business Use Case
The ...
-1
votes
1answer
115 views
Security architecture advice for non-web application
I am using Spring3.1 in a standalone env.
Although I am using Spring I am sure there could be other Java-ee frameworks(EJB,..) which I could adopt ideas from.
I am trying to build my security layer ...
0
votes
0answers
70 views
auto login acegi security
Is there a way to avoid form based login in servlet application which uses acegi security module? I want to pass somehow login and password to URL. I tried to call something like this:
...
1
vote
1answer
3k views
How to flag session cookie as secure (https only) in tomcat 6
I have done a lot of googeling and could not find an answer. I have tried setting the following in the web.xml file in the war with no impact :
<session-config>
...
0
votes
1answer
314 views
Spring Security: authorize on two or more web applications simultaneously
Can you please give me a hint, how to authorize user on few web applications at the same time?
I have:
EAR
WAR 1 (example.com/)
WAR 2 (example.com/shop/)
...
WAR n (example.com/forum/)
...
1
vote
1answer
166 views
Spring security authrorize based on input parameter criteria
I have a scenario where I need to authorize user based on combination of his permission and input parameter passed.
this is the current scenario
public void bookTicket(String bookingType)
{
...
5
votes
2answers
3k views
Spring security vs Apache Shiro
What I have researhed so far most of them are saying Apache Shiro is easy to use and easy to integrate with CAS (for SSO etc). Just to ask if anyone has got experienced using both of them and which ...
3
votes
1answer
356 views
String-based queries like [executeQuery] are currently not supported in this implementation of GORM
I'm trying to persist spring-security-acl domain objects in mongodb using grails mongo plugin. While executing following line of code
aclUtilService.addPermission Phone.class, phoneInstance.id, new ...
0
votes
0answers
96 views
How to get the trustmanager specified in the container configuration in java?
I am loading the trust manager in my application by explicitly specifying it using the class loader and passing the trust manager file name and the password as below.
private TrustManagerFactory ...
0
votes
1answer
256 views
Going wrong in obtaining cert object
import java.security.cert.Certificate;
import java.security.cert.CertificateFactory;
import org.junit.Test;
public class TrustManagerTest {
@Test
public void testTrust() throws Exception
...
1
vote
2answers
115 views
Grails - Spring Security Account Creation
I am using the Spring Security Core plugin and can successfully log users in and out of my application. However, when the user successfully signs up, I don't understand how to set that user's security ...
