Project

General

Profile

Documentation #6478

Updated by Juliana Fajardini Reichow 6 months ago

With the addition of the JSON schema (see https://github.com/OISF/suricata/blob/master/etc/schema.json) and SV checks to validate it, it's important to ensure that it is complete. 

 Running @git grep set_string rust/src/ | cut -d'"' -f2 | sort | uniq | grep -v : | while read i; do echo -n $i; git grep $i etc/schema.json    | wc -l; done | awk '$2 == 0'@ 

 shows show for instance that @server_security_failure_reason@ is missing in etc/schema.json for rfb

Back