Hello Sebastian,
first of all, thanks for this nice application!
I have two little security issues:
Can you tell me, how can I set the secure and http-only flag options for the JSESSIONID cookie?
I try to add the following to the web.xml in the scm-manager.war:
<session-config>
<session-timeout>30</session-timeout>
<cookie-config>
<secure>true</secure>
<http-only>true</http-only>
</cookie-config>
</session-config>
And add the sessionHandler to the server-config.xml under the Line "New id="scm-webapp" class="org.eclipse.jetty.webapp.WebAppContext"
<Get name="sessionHandler">
<Get name="sessionManager">
<Set name="secureCookies">true</Set>
<Set name="httpOnly">true</Set>
</Get>
</Get>
Unfortunately both take no effect.
Futhermore, it is possible to add a login-restriction, so the User will be locked after e.g. 5 unsuccessfull login attempts?
Thanks in advance for your help.
Kind regards,
Kevin