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
After checking my application I faced with this problem: (onFileDrop)="dropped($event)" more information about here
<tbody class="upload-name-style">
<tr *ngFor="let item of files; let i=index">
<td><strong>{{ item.relativePath }}</strong></td>
</tr>
</tbody>
embeds untrusted data in the generated output with relativePath. This untrusted data is embedded straight into the output without proper sanitization or encoding, enabling an attacker to inject malicious code into the output.
Have you ever had to deal with such a check?
The text was updated successfully, but these errors were encountered:
After checking my application I faced with this problem:
(onFileDrop)="dropped($event)"
more information about hereembeds untrusted data in the generated output with
relativePath
. This untrusted data is embedded straight into the output without proper sanitization or encoding, enabling an attacker to inject malicious code into the output.Have you ever had to deal with such a check?
The text was updated successfully, but these errors were encountered: