Skip to content

Commit

Permalink
correcting the check
Browse files Browse the repository at this point in the history
Signed-off-by: Hossein Rouhani <[email protected]>
  • Loading branch information
HRouhani committed May 10, 2024
1 parent 33bc6bf commit b848528
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/mondoo-openssl-vulnerability.mql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ queries:
3. Run this query:
```mql
semver(package("openssl").version) < semver("3.0.0") ||
semver(package("openssl").version) > semver("3.0.6")
semver(package('openssl').version.find(/\d+\.\d+\.\d+/).first) < semver("3.0.0") ||
semver(package('openssl').version.find(/\d+\.\d+\.\d+/).first) > semver("3.0.6")
```
Example output
Expand Down

0 comments on commit b848528

Please sign in to comment.