Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions src/Security/Security.sln
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ScenarioTest.ResourceManage
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestFx\TestFx.csproj", "{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Compute", "..\Compute\Compute\Compute.csproj", "{5C16925E-2F00-4254-AF14-029609FEFFCA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Network", "..\Network\Network\Network.csproj", "{1EC44FBB-41F6-425A-8489-9643DBDB45E3}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OperationalInsights", "..\OperationalInsights\OperationalInsights\OperationalInsights.csproj", "{AC0EA5E7-BD16-4E47-A8D9-0DBC18E6BB70}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -58,6 +64,18 @@ Global
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Debug|Any CPU.Build.0 = Debug|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.ActiveCfg = Release|Any CPU
{BC80A1D0-FFA4-43D9-AA74-799F5CB54B58}.Release|Any CPU.Build.0 = Release|Any CPU
{5C16925E-2F00-4254-AF14-029609FEFFCA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5C16925E-2F00-4254-AF14-029609FEFFCA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5C16925E-2F00-4254-AF14-029609FEFFCA}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5C16925E-2F00-4254-AF14-029609FEFFCA}.Release|Any CPU.Build.0 = Release|Any CPU
{1EC44FBB-41F6-425A-8489-9643DBDB45E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1EC44FBB-41F6-425A-8489-9643DBDB45E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1EC44FBB-41F6-425A-8489-9643DBDB45E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1EC44FBB-41F6-425A-8489-9643DBDB45E3}.Release|Any CPU.Build.0 = Release|Any CPU
{AC0EA5E7-BD16-4E47-A8D9-0DBC18E6BB70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{AC0EA5E7-BD16-4E47-A8D9-0DBC18E6BB70}.Debug|Any CPU.Build.0 = Debug|Any CPU
{AC0EA5E7-BD16-4E47-A8D9-0DBC18E6BB70}.Release|Any CPU.ActiveCfg = Release|Any CPU
{AC0EA5E7-BD16-4E47-A8D9-0DBC18E6BB70}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
1 change: 1 addition & 0 deletions src/Security/Security/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
-->

## Upcoming Release
* Fix typo in printing SQL vulnerability assessment scan results

## Version 0.10.0
* Added Sql Vulnerability Assessment cmdlets for IAAS:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public override string ToString()
{
return string.Join(Environment.NewLine, $"{{",
$"{Description}",
$"IsAutimated: {Automated}",
$"IsAutomated: {Automated}",
$"Portal Link: {PortalLink}",
$"Script:",
(Scripts.Any() ? $"{string.Join(Environment.NewLine, Scripts)}" : "{}"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ IsTrimmed : False
QueryResults : {dbo db_owner SQL_USER}
Remediation : {
Remove members who should not have access to the database role
IsAutimated: True
IsAutomated: True
Portal Link:
Script:
ALTER ROLE [db_owner] DROP MEMBER [dbo]
Expand Down Expand Up @@ -119,7 +119,7 @@ IsTrimmed : False
QueryResults : {dbo db_owner SQL_USER}
Remediation : {
Remove members who should not have access to the database role
IsAutimated: True
IsAutomated: True
Portal Link:
Script:
ALTER ROLE [db_owner] DROP MEMBER [dbo]
Expand Down Expand Up @@ -179,7 +179,7 @@ IsTrimmed : False
QueryResults : {}
Remediation : {
Revoke EXECUTE permission on xp_cmdshell to all users (except dbo)
IsAutimated: False
IsAutomated: False
Portal Link:
Script:
{}
Expand Down Expand Up @@ -221,7 +221,7 @@ IsTrimmed : False
QueryResults : {True}
Remediation : {
Install the latest SQL Server CU corresponding to your version of SQL Server. Go to https://technet.microsoft.com/en-us/sqlserver/ff803383.aspx to find and download the required CU.
IsAutimated: True
IsAutomated: True
Portal Link:
Script:
{}
Expand Down