У меня нижеприведенный код при сканировании с помощью HP Fortify показал проблему XSS в следующей строке: Response.BinaryWrite (buffer);
Что я могу сделать, чтобы исправить проблему XSS, указанную в Fortify?
void ShowPDF(string infilepath)
{
WebClient client = new WebClient();
Byte[] buffer = client.DownloadData(infilepath);
Response.ContentType = "application/pdf";
Response.AddHeader("content-length", buffer.Length.ToString());
Response.AddHeader("content-disposition","attachment; filename=hearingprep.pdf");
Response.BinaryWrite(buffer);
}
Любая помощь будет высоко оценена.