Description
Local Deep Research is an AI-powered research assistant for deep, iterative research. Prior to 1.6.10, the URL checking logic in local-deep-research has a logical flaw that could be bypassed by attackers, leading to SSRF attacks. The current project uses validate_url to validate the input URL. The main logic is to perform security checks on the host portion of the URL extracted by urlparse to prevent SSRF attacks. However, there are indeed differences in parsing between urlparse and the library that actually sends the request. For example, in safe_get, validate_url is first used to perform an SSRF check, and then requests.get is used to send the actual request. This vulnerability is fixed in 1.6.10.
Problem types
CWE-918: Server-Side Request Forgery (SSRF)
Product status
References
github.com/...search/security/advisories/GHSA-g23j-2vwm-5c25
github.com/...search/security/advisories/GHSA-g23j-2vwm-5c25
github.com/LearningCircuit/local-deep-research/pull/3873
github.com/LearningCircuit/local-deep-research/pull/3882
github.com/LearningCircuit/local-deep-research/pull/3889
github.com/LearningCircuit/local-deep-research/pull/3932
github.com/...rcuit/local-deep-research/releases/tag/v1.6.10