flawopen.com/安全事件/MOVEit CVE-2023-34362

MOVEit Transfer:一处未授权 SQL 注入,引爆数千家跨国机构的连锁沦陷

Critical — Mass exploitation CWE-89: SQL Injection Disclosed 31 May 2023
通俗解释 (ELI5)

一家快递公司开设了高度保密的中央中转仓库,供成百上千家银行和企业互送信件。有人发现:只要在接待前台的登记簿上写下一句'请顺便把仓库总钥匙给我',管理员就会毫不怀疑地照办。攻破了这一个中转站,成百上千家企业的绝密商业资料一夜之间全被卷走。

The lessons that actually transfer

FAQ

Do ORMs prevent this?

Largely, when used normally — ORMs bind parameters by default. The risk returns when developers drop to raw SQL fragments or string-build a query builder's conditions, which most ORMs permit.

Would a WAF have blocked it?

Signature-based filtering catches unsophisticated payloads and can slow mass scanning, but it is routinely bypassed and was not a reliable defence here. It is a mitigation layer, not a substitute for parameterised queries.

Related reading

参考资料与权威通告