Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Low
-
Resolution: Fixed
-
Affects Version/s: 7.12.2
-
Fix Version/s: 8.0.0
-
Component/s: Login
-
Introduced in Version:7.12
-
Symptom Severity:Severity 2 - Major
-
Bug Fix Policy:
-
Current Status:
Description
Problem
Support for using os_username and os_password to authenticate when used as url query parameters has been deprecated in Jira 8.0.0.
It is possible to disable support for os_username & os_password as url query parameters for authentication by setting allowUrlParameterValue to false in <JIRA_install>/atlassian-jira/WEB-INF/web.xml .
example:
<filter> <filter-name>login</filter-name> <filter-class>com.atlassian.jira.web.filters.JiraLoginFilter</filter-class> <init-param> <param-name>allowUrlParameterValue</param-name> <param-value>false</param-value> </init-param> </filter>