Skip to content

Commit

Permalink
FIX - Mitigating code scanning warnings (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
jocontr authored Nov 6, 2024
1 parent 426b152 commit d25ffbc
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 0 deletions.
5 changes: 5 additions & 0 deletions BusyDatabase/BusyDatabase.WebApi/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
<httpRuntime targetFramework="4.5.1" />
</system.web>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="DENY" />
</customHeaders>
</httpProtocol>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
Expand Down
5 changes: 5 additions & 0 deletions ChattyIO/ChattyIO.WebApi/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
</providers>
</entityFramework>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="DENY" />
</customHeaders>
</httpProtocol>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
Expand Down
5 changes: 5 additions & 0 deletions ExtraneousFetching/ExtraneousFetching.WebApi/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
<httpModules />
</system.web>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="DENY" />
</customHeaders>
</httpProtocol>
<validation validateIntegratedModeConfiguration="false" />
<modules />
<handlers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
<runtime>
</runtime>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="DENY" />
</customHeaders>
</httpProtocol>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
<httpRuntime targetFramework="4.5.1" />
</system.web>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="DENY" />
</customHeaders>
</httpProtocol>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@
<httpRuntime targetFramework="4.5.1" />
</system.web>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="DENY" />
</customHeaders>
</httpProtocol>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
Expand Down
5 changes: 5 additions & 0 deletions NoCaching/NoCaching.WebRole/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
<httpRuntime targetFramework="4.5.1" />
</system.web>
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="DENY" />
</customHeaders>
</httpProtocol>
<handlers>
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<remove name="OPTIONSVerbHandler" />
Expand Down

0 comments on commit d25ffbc

Please sign in to comment.