You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Security Alert - Bundled chrome.exe in HTML-to-PDF Conversion
547
+
548
+
<table>
549
+
<thstyle="font-size:14px"width="100px">Issue
550
+
</th>
551
+
<thstyle="font-size:14px">Security alerts are triggered when the Syncfusion HTML-to-PDF converter uses a bundled `chrome.exe` executable to render HTML content in headless mode during PDF generation.
552
+
</th>
553
+
554
+
<tr>
555
+
<thstyle="font-size:14px"width="100px">Reason
556
+
</th>
557
+
<td>The HTML-to-PDF conversion relies on Chromium's Blink rendering engine:<br>
558
+
559
+
1.The NuGet package includes Blink binaries (`chrome.exe`) under `runtimes/win-x64/native`<br
560
+
2.This bundled Chrome instance launches in headless mode to render web content<br>
561
+
3.Security systems flag the execution of embedded binaries as potential risks<br>
562
+
</td>
563
+
</tr>
564
+
565
+
<tr>
566
+
<thstyle="font-size:14px"width="100px">Solution
567
+
</th>
568
+
<td>Use system-installed Chromium instead of bundled binaries:
569
+
<br><br/>
570
+
Step 1: Configure Blink Path
571
+
{% tabs %}
572
+
{% highlight C# tabtitle="C#" %}
573
+
574
+
HtmlToPdfConverter htmlConverter = new HtmlToPdfConverter();
575
+
BlinkConverterSettings settings = new BlinkConverterSettings();
0 commit comments