VYPR
Critical severityNVD Advisory· Published Aug 4, 2023· Updated Oct 3, 2024

MindsDB 'Call to requests with verify=False disabling SSL certificate checks, security issue.' issue

CVE-2023-38699

Description

MindsDB's AI Virtual Database allows developers to connect any AI/ML model to any datasource. Prior to version 23.7.4.0, a call to requests with verify=False disables SSL certificate checks. This rule enforces always verifying SSL certificates for methods in the Requests library. In version 23.7.4.0, certificates are validated by default, which is the desired behavior.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
MindsDBPyPI
< 23.7.4.023.7.4.0

Affected products

1

Patches

1
083afcf6567c

Update dremio_handler.py

https://github.com/mindsdb/mindsdbZoran PandovskiJul 21, 2023via ghsa
1 file changed · +2 2
  • mindsdb/integrations/handlers/dremio_handler/dremio_handler.py+2 2 modified
    @@ -66,7 +66,7 @@ def connect(self) -> dict:
     
             data = '{' + f'"userName": "{self.connection_data["username"]}","password": "{self.connection_data["password"]}"' + '}'
     
    -        response = requests.post(self.base_url + '/apiv2/login', headers=headers, data=data, verify=False)
    +        response = requests.post(self.base_url + '/apiv2/login', headers=headers, data=data)
     
             return {
                 'Authorization': '_dremio' + response.json()['token'],
    @@ -235,4 +235,4 @@ def get_columns(self, table_name: str) -> StatusResponse:
         database=9047,
         username='admin',
         password='password'
    -)
    \ No newline at end of file
    +)
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

6

News mentions

0

No linked articles in our index yet.