In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade nltk to version 3.10.3 or higher.
nltk is a Natural Language Toolkit (NLTK) is a Python package for natural language processing.
Affected versions of this package are vulnerable to Uncontrolled Recursion via the RecursiveDescentParser in nltk/parse/recursivedescent.py. An attacker can pin a CPU core indefinitely or exhaust the Python recursion stack by supplying a tiny left-recursive or highly ambiguous grammar and triggering top-down parsing on even a short input. The parser enumerates parse trees recursively with no default bound on the search, so crafted grammars cause unbounded work and hang the process. This can deny service to applications that parse untrusted grammars or user-controlled input with RecursiveDescentParser or SteppingRecursiveDescentParser.