mirror of
https://github.com/SECTL/SecScore.git
synced 2026-07-19 19:04:23 +08:00
修复看板SQL校验误判换行导致无法执行
This commit is contained in:
@@ -73,7 +73,12 @@ fn is_readonly_query(sql: &str) -> bool {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let lower = trimmed.to_ascii_lowercase();
|
let lower = trimmed.to_ascii_lowercase();
|
||||||
if !(lower.starts_with("select ") || lower.starts_with("with ")) {
|
let starts_with_select_or_with = lower
|
||||||
|
.split_whitespace()
|
||||||
|
.next()
|
||||||
|
.map(|first| first == "select" || first == "with")
|
||||||
|
.unwrap_or(false);
|
||||||
|
if !starts_with_select_or_with {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user