I have a mvc application in which there is a low veracode flaw on this line
Information exposure through sent data
private WebResponse GetCreditCheckResponse(Uri uri)
{
WebResponse response = null;
try
{
#region Logging
LogManager.Info("Enter - " + "Accessing uri: " + uri);
#endregion
var request = (HttpWebRequest)WebRequest.Create(uri); //Veracode Flaw in this line
Can anybody help me with this flaw?