The vulnerability lies in the handling of 7zip archives, which could cause server memory exhaustion. The provided commit fb11968f8798 directly addresses this issue. The patch modifies the Extract function within the archiveExtractor struct in server/platform/services/docextractor/archive.go. The change involves adding a check to detect if a file is a 7zip archive by its name or content stream. If it is identified as a 7zip file, the function now immediately returns, effectively skipping the extraction process that was causing the vulnerability. This indicates that the docextractor.archiveExtractor.Extract function was the entry point for the vulnerable operation. An attacker would trigger this by uploading a malicious 7zip file, which would then be processed by this function.