Security: Correctly disable eval in pdfjs (#6702)

This commit is contained in:
shamoon 2024-05-13 08:44:35 -07:00 committed by GitHub
parent ac666df4ce
commit 7983487430
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,6 @@ import type {
import { PDFSinglePageViewer } from 'pdfjs-dist/web/pdf_viewer'
PDFJS['verbosity'] = PDFJS.VerbosityLevel.ERRORS
PDFJS['isEvalSupported'] = false
export enum RenderTextMode {
DISABLED,
@ -440,6 +439,7 @@ export class PdfViewerComponent
cMapPacked: true,
enableXfa: true,
}
params.isEvalSupported = false
if (srcType === 'string') {
params.url = this.src