Skip to content

Commit

Permalink
SDL | Changing ReadXml to a more secure overload. (#2147) (#2490)
Browse files Browse the repository at this point in the history
Co-authored-by: Javad <v-jarahn@microsoft.com>
  • Loading branch information
dauinsight and JRahnama committed May 8, 2024
1 parent b4d40de commit 3994122
Showing 1 changed file with 8 additions and 2 deletions.
Expand Up @@ -9,6 +9,7 @@
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Xml;

namespace Microsoft.Data.ProviderBase
{
Expand Down Expand Up @@ -499,9 +500,14 @@ private void LoadDataSetFromXml(Stream XmlStream)
{
_metaDataCollectionsDataSet = new DataSet
{
Locale = System.Globalization.CultureInfo.InvariantCulture
Locale = CultureInfo.InvariantCulture
};
XmlReaderSettings settings = new()
{
XmlResolver = null
};
_metaDataCollectionsDataSet.ReadXml(XmlStream);
using XmlReader reader = XmlReader.Create(XmlStream, settings);
_metaDataCollectionsDataSet.ReadXml(reader);
}

protected virtual DataTable PrepareCollection(string collectionName, string[] restrictions, DbConnection connection)
Expand Down

0 comments on commit 3994122

Please sign in to comment.