|
|
|
|
|
by tie_
1652 days ago
|
|
Please stop suggesting that SQL Injections are a sanitization problem. They are a problem of escaping in the application constructing the query, not a problem with whatever the user has typed in. The log4j vulnerability shares some common traits, but it's completely different at the core. It's not a problem of sanitization, and I'd argue it's not a problem of escaping either (though escaping could fix it). It's a problem with an obscure feature that is left with insecure defaults, and is (was?) unknown to the vast majority of developers who integrate the library in their apps. |
|
Agreed that this is not a sanitisation attack, but i think that means it is a format string attack:
https://owasp.org/www-community/attacks/Format_string_attack
It requires a couple of other loopholes, related to JNDI, to work, but that is the first step which goes wrong.