pypi semgrep 1.59.1
Release v1.59.1

latest releases: 1.96.0, 1.95.0, 1.94.0...
9 months ago

1.59.1 - 2024-02-02

Added

  • taint-mode: Pro: Semgrep can now track taint via static class fields and global
    variables, such as in the following example:

    static char* x;
    
    void foo() {
        x = "tainted";
    }
    
    void bar() {
        sink(x);
    }
    
    void main() {
        foo();
        bar();
    }
    ``` (pa-3378)
    

Fixed

  • Pro: Make inter-file analysis more tolerant to small bugs, resorting to graceful
    degradation and continuing with the scan, rather than crashing. (pa-3387)

Don't miss a new semgrep release

NewReleases is sending notifications on new releases.