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
# Built-in Killer suite: path traversal and file exposure.
suite "Filesystem" {

    attack traversal_unix {
        endpoint "/download"
        payload: "../../etc/passwd"
        expect {
            file_not_exposed true
        }
        severity high
        message: "Path traversal exposes /etc/passwd"
    }

    attack traversal_windows {
        endpoint "/download"
        payload: "..\\..\\windows\\win.ini"
        expect {
            file_not_exposed true
        }
        severity high
        message: "Path traversal exposes Windows system files"
    }
}