Skip to content

Latest commit

 

History

History
21 lines (19 loc) · 902 Bytes

Slither new detectors.md

File metadata and controls

21 lines (19 loc) · 902 Bytes

Slither’s plugin architecture lets you integrate new detectors that run from the command line. The skeleton for a detector has:

  1. ARGUMENT: lets you run the detector from the command line
  2. HELP: is the information printed from the command line
  3. IMPACT: indicates the impact of the issue. Allowed values are INFORMATIONAL|LOW|MEDIUM|HIGH 
  4. CONFIDENCE: indicates your confidence in the analysis. Allowed values are LOW|MEDIUM|HIGH
  5. WIKI: constants are used to generate automatically the documentation.
  6. _detect() is the function that implements the detector logic and needs to return a list of findings.

Slide Screenshot

043.jpg


Slide Text


References


Tags