killer 2.0.0

A Rust security platform: static analysis, the .klr test language, a parallel test framework, project intelligence, code review, and a CI gate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Static code rules. These run against your project source with:
#   killer test examples/database_rules.klr --project .

# Flag any line that builds a database query directly from user input
# without going through a sanitizer or parameterized query.
rule "unsafe database query"
when function contains "query"
and input reaches query
without sanitization
severity high
report: "User input reaches database directly"