Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorSam Patel <46026722+SamMonoRT@users.noreply.github.com>2021-03-10 17:44:38 +0300
committerGitHub <noreply@github.com>2021-03-10 17:44:38 +0300
commitba3bbd5f5bd136f9450a6bd53a3c41747bc147e1 (patch)
tree692018e162ab652004e34463153e83cb337520fc /data
parent5e70c0b65b43f233799f3639c22a76f407240428 (diff)
CredScan issue - remove hardcoded password (#20908)
* CredScan issue - remove hardcoded password Remove commented out lines of code which had a hardcoded password flagged by the CredScan tool (line 86) * update net_4_)/web.config file * update net_1_1\machine.config * update net_4_5/web.config * update net_2_0/web.config
Diffstat (limited to 'data')
-rw-r--r--data/net_1_1/machine.config3
-rw-r--r--data/net_2_0/web.config1
-rw-r--r--data/net_4_0/web.config3
-rw-r--r--data/net_4_5/web.config3
4 files changed, 3 insertions, 7 deletions
diff --git a/data/net_1_1/machine.config b/data/net_1_1/machine.config
index 2dfec5f0203..5abbb85de0f 100644
--- a/data/net_1_1/machine.config
+++ b/data/net_1_1/machine.config
@@ -101,8 +101,7 @@
</httpModules>
<authentication mode="Forms">
<forms name=".MONOAUTH" loginUrl="login.aspx" protection="All" timeout="30" path="/">
- <credentials passwordFormat="Clear">
- <!--<user name="gonzalo" password="gonz"/>-->
+ <credentials passwordFormat="Clear">
</credentials>
</forms>
</authentication>
diff --git a/data/net_2_0/web.config b/data/net_2_0/web.config
index e1428f8c39b..a5190c338bc 100644
--- a/data/net_2_0/web.config
+++ b/data/net_2_0/web.config
@@ -53,7 +53,6 @@
<authentication mode="Forms">
<forms name=".MONOAUTH" loginUrl="login.aspx" protection="All" timeout="30" path="/">
<credentials passwordFormat="Clear">
- <!--<user name="gonzalo" password="gonz"/>-->
</credentials>
</forms>
</authentication>
diff --git a/data/net_4_0/web.config b/data/net_4_0/web.config
index 2a7dfd2edac..44cbe180dfd 100644
--- a/data/net_4_0/web.config
+++ b/data/net_4_0/web.config
@@ -111,8 +111,7 @@
</httpModules>
<authentication mode="Forms">
<forms name=".MONOAUTH" loginUrl="login.aspx" protection="All" timeout="30" path="/">
- <credentials passwordFormat="Clear">
- <!--<user name="gonzalo" password="gonz"/>-->
+ <credentials passwordFormat="Clear">
</credentials>
</forms>
</authentication>
diff --git a/data/net_4_5/web.config b/data/net_4_5/web.config
index 324c529f008..30524c17c3d 100644
--- a/data/net_4_5/web.config
+++ b/data/net_4_5/web.config
@@ -111,8 +111,7 @@
</httpModules>
<authentication mode="Forms">
<forms name=".MONOAUTH" loginUrl="login.aspx" protection="All" timeout="30" path="/">
- <credentials passwordFormat="Clear">
- <!--<user name="gonzalo" password="gonz"/>-->
+ <credentials passwordFormat="Clear">
</credentials>
</forms>
</authentication>