Open EricGao888 opened 1 year ago
Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
#troubleshooting
please assign to me if no one is implementing it @EricGao888
please assign to me if no one is implementing it @EricGao888
@hdygxsj Great! Thanks for helping out : )
At present, the following technical details need to be discussed 1.Whether it is necessary to introduce spring security dependencies on the back end to make dolphinscheduler safe from csrf attacks The spring security csrf module does the following
CsrfToken csrfToken = this.tokenRepository.loadToken(request);
boolean missingToken = (csrfToken == null);
if (missingToken) {
csrfToken = this.tokenRepository.generateToken(request);
this.tokenRepository.saveToken(csrfToken, request, response);
}
@Override
public void saveToken(CsrfToken token, HttpServletRequest request, HttpServletResponse response) {
String tokenValue = (token != null) ? token.getToken() : "";
Cookie cookie = new Cookie(this.cookieName, tokenValue);
cookie.setSecure((this.secure != null) ? this.secure : request.isSecure());
cookie.setPath(StringUtils.hasLength(this.cookiePath) ? this.cookiePath : this.getRequestContext(request));
cookie.setMaxAge((token != null) ? this.cookieMaxAge : 0);
cookie.setHttpOnly(this.cookieHttpOnly);
if (StringUtils.hasLength(this.cookieDomain)) {
cookie.setDomain(this.cookieDomain);
}
response.addCookie(cookie);
}
if (!this.requireCsrfProtectionMatcher.matches(request)) {
if (this.logger.isTraceEnabled()) {
this.logger.trace("Did not protect against CSRF since request did not match "
+ this.requireCsrfProtectionMatcher);
}
filterChain.doFilter(request, response);
return;
}
String actualToken = request.getHeader(csrfToken.getHeaderName());
if (actualToken == null) {
actualToken = request.getParameter(csrfToken.getParameterName());
}
if (!equalsConstantTime(csrfToken.getToken(), actualToken)) {
this.logger.debug(
LogMessage.of(() -> "Invalid CSRF token found for " + UrlUtils.buildFullRequestUrl(request)));
AccessDeniedException exception = (!missingToken) ? new InvalidCsrfTokenException(csrfToken, actualToken)
: new MissingCsrfTokenException(actualToken);
this.accessDeniedHandler.handle(request, response, exception);
return;
}
filterChain.doFilter(request, response);
If we don't introduce spring security in the future, we can also implement csrf defense by adding a filter similar to CsrfFilter
2.How do we save the csrf token to prevent attackers from stealing it
I found that after calling the login interface, the front end would save the sessionId returned after successful login into the cookie again, and the cookie saved in this way instead of the set-cookie in the http response header would be stolen by other websites
const handleLogin = () => {
state.loginFormRef.validate(async (valid: any) => {
if (!valid) {
const loginRes: LoginRes = await login({ ...state.loginForm })
debugger
await userStore.setSessionId(loginRes.sessionId)
await userStore.setSecurityConfigType(loginRes.securityConfigType)
cookies.set('sessionId', loginRes.sessionId, { path: '/' })
……
}
})
}
This results in an attacker using the following code for a csrf attack, as shown below
import { defineComponent, ref } from "vue";
import cookies from 'js-cookie'
export default defineComponent({
setup() {
const csrfToken = cookies.get('XSRF-TOKEN')
return {
csrfToken
}
},
render() {
return (<div><form action="http://127.0.0.1:5173/dolphinscheduler/projects" method="post">
<input type="hidden"
name="projectName"
value="aasdasd" />
<input type="hidden"
name="userName"
value="admin" />
<input type="submit"
value="Win Money!" />
<input type="hidden" name="_csrf" value={this.csrfToken}></input>
</form></div>)
}
})
Once the dolphinscheduler user clicks the button in the diagram, a csrf attack completes
Maybe we can save the csrf token in pinia, but I'm not sure there is any risk that pinia will be stolen by other websites
The front end places the csrf token in the header or parameter. The back end uses the public key to decrypt the csrf Token in the http request and compares it to the token in the cookie
3.Whether to perform csrf defense on login requests
As mentioned in spring security, an attacker can forge login requests to obtain csrf token for subsequent attacks, but our login api must input the username and password. In my opinion, when the attacker has obtained the username and password, he can directly log in from the website, at this point, the csrf defense is meaningless
At present, the following technical details need to be discussed 1.Whether it is necessary to introduce spring security dependencies on the back end to make dolphinscheduler safe from csrf attacks The spring security csrf module does the following
- If the cookie in the request does not contain a CSRF-TOKEN, a CSRF-TOKEN is generated and a set cookie is added to the request
code snippet in org.springframework.security.web.csrf.CsrfFilter
CsrfToken csrfToken = this.tokenRepository.loadToken(request); boolean missingToken = (csrfToken == null); if (missingToken) { csrfToken = this.tokenRepository.generateToken(request); this.tokenRepository.saveToken(csrfToken, request, response); }
code snippet in org.springframework.security.web.csrf.CookieCsrfTokenRepository
@Override public void saveToken(CsrfToken token, HttpServletRequest request, HttpServletResponse response) { String tokenValue = (token != null) ? token.getToken() : ""; Cookie cookie = new Cookie(this.cookieName, tokenValue); cookie.setSecure((this.secure != null) ? this.secure : request.isSecure()); cookie.setPath(StringUtils.hasLength(this.cookiePath) ? this.cookiePath : this.getRequestContext(request)); cookie.setMaxAge((token != null) ? this.cookieMaxAge : 0); cookie.setHttpOnly(this.cookieHttpOnly); if (StringUtils.hasLength(this.cookieDomain)) { cookie.setDomain(this.cookieDomain); } response.addCookie(cookie); }
- Determine whether the request path needs to be protected by CSRF
code snippet in org.springframework.security.web.csrf.CsrfFilter
if (!this.requireCsrfProtectionMatcher.matches(request)) { if (this.logger.isTraceEnabled()) { this.logger.trace("Did not protect against CSRF since request did not match " + this.requireCsrfProtectionMatcher); } filterChain.doFilter(request, response); return; }
- Compare the CSRF token in the cookie with the CSRF token in the http request header or the token in the http request param
code snippet in org.springframework.security.web.csrf.CsrfFilter
String actualToken = request.getHeader(csrfToken.getHeaderName()); if (actualToken == null) { actualToken = request.getParameter(csrfToken.getParameterName()); } if (!equalsConstantTime(csrfToken.getToken(), actualToken)) { this.logger.debug( LogMessage.of(() -> "Invalid CSRF token found for " + UrlUtils.buildFullRequestUrl(request))); AccessDeniedException exception = (!missingToken) ? new InvalidCsrfTokenException(csrfToken, actualToken) : new MissingCsrfTokenException(actualToken); this.accessDeniedHandler.handle(request, response, exception); return; } filterChain.doFilter(request, response);
If we don't introduce spring security in the future, we can also implement csrf defense by adding a filter similar to CsrfFilter
2.How do we save the csrf token to prevent attackers from stealing it
- Whether we implement interceptors ourselves on the back end or use spring security, on the front end we need to think about how to store csrf tokens securely to prevent attackers from stealing them so that csrf defenses fail.
I found that after calling the login interface, the front end would save the sessionId returned after successful login into the cookie again, and the cookie saved in this way instead of the set-cookie in the http response header would be stolen by other websites
code snippet in use-login.ts
const handleLogin = () => { state.loginFormRef.validate(async (valid: any) => { if (!valid) { const loginRes: LoginRes = await login({ ...state.loginForm }) debugger await userStore.setSessionId(loginRes.sessionId) await userStore.setSecurityConfigType(loginRes.securityConfigType) cookies.set('sessionId', loginRes.sessionId, { path: '/' }) …… } }) }
This results in an attacker using the following code for a csrf attack, as shown below
import { defineComponent, ref } from "vue"; import cookies from 'js-cookie' export default defineComponent({ setup() { const csrfToken = cookies.get('XSRF-TOKEN') return { csrfToken } }, render() { return (<div><form action="http://127.0.0.1:5173/dolphinscheduler/projects" method="post"> <input type="hidden" name="projectName" value="aasdasd" /> <input type="hidden" name="userName" value="admin" /> <input type="submit" value="Win Money!" /> <input type="hidden" name="_csrf" value={this.csrfToken}></input> </form></div>) } })
Once the dolphinscheduler user clicks the button in the diagram, a csrf attack completes
Maybe we can save the csrf token in pinia, but I'm not sure there is any risk that pinia will be stolen by other websites
- In order to make csrf token more secure, do we need to consider the encryption of csrf token?
The front end places the csrf token in the header or parameter. The back end uses the public key to decrypt the csrf Token in the http request and compares it to the token in the cookie
3.Whether to perform csrf defense on login requests
As mentioned in spring security, an attacker can forge login requests to obtain csrf token for subsequent attacks, but our login api must input the username and password. In my opinion, when the attacker has obtained the username and password, he can directly log in from the website, at this point, the csrf defense is meaningless
For question 2,Pinia will store csrfToken
in localStorage and will not be stolen by other websites. Your attack succeeded because you deployed them on the same domain -- 127.0.0.1
.
Search before asking
Description
CSRF
of Spring Security. We could enable it and improve the front end at the same time by addingCSRF-token
to protectDS
fromCSRF
attack.Are you willing to submit a PR?
Code of Conduct