(no title)
JoeSpaghettio | 2 years ago
I would also say that static analysis as a panacea for SQL Injection is laughable. SAST tools have a hard time finding sql injection in code. As they quickly loose track of user controlled data. They almost always create false positives / false negatives when Parameterised queries are used incorrectly. For example when user controlled data gets into the SQL query rather than the parameter of a paremeterised query. And that completely ignores SQL Injection attacks that do not occur within your code directly, but in libraries you are using.
sebazzz|2 years ago
So can IIS request filtering or whatever exists in Nagios. Right on the webserver.
JoeSpaghettio|2 years ago
threeseed|2 years ago