-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(PSP-1220): add new cloud account type for Azure Agentless integr…
…ation (#1443) * feat: add new cloud account type for Azure Agentless integration
- Loading branch information
AoZhang
authored
Nov 8, 2023
1 parent
6084c10
commit 1bea012
Showing
4 changed files
with
335 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// | ||
// Author:: Ao Zhang (<[email protected]>) | ||
// Copyright:: Copyright 2023, Lacework Inc. | ||
// License:: Apache License, Version 2.0 | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License.n | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
package api | ||
|
||
// GetAzureSidekick gets a single AzureSidekick integration matching the provided integration guid | ||
func (svc *CloudAccountsService) GetAzureSidekick(guid string) ( | ||
response AzureSidekickIntegrationResponse, | ||
err error, | ||
) { | ||
err = svc.get(guid, &response) | ||
return | ||
} | ||
|
||
// CreateAzureSidekick creates an AzureSidekick Cloud Account integration | ||
func (svc *CloudAccountsService) CreateAzureSidekick(data CloudAccount) ( | ||
response AzureSidekickIntegrationResponse, | ||
err error, | ||
) { | ||
err = svc.create(data, &response) | ||
return | ||
} | ||
|
||
// UpdateAzureSidekick updates a single AzureSidekick integration on the Lacework Server | ||
func (svc *CloudAccountsService) UpdateAzureSidekick(data CloudAccount) ( | ||
response AzureSidekickIntegrationResponse, | ||
err error, | ||
) { | ||
err = svc.update(data.ID(), data, &response) | ||
return | ||
} | ||
|
||
type AzureSidekickIntegrationResponse struct { | ||
Data V2AzureSidekickIntegration `json:"data"` | ||
} | ||
|
||
type AzureSidekickToken struct { | ||
ServerToken string `json:"serverToken"` | ||
Uri string `json:"uri"` | ||
} | ||
|
||
type V2AzureSidekickIntegration struct { | ||
v2CommonIntegrationData | ||
AzureSidekickToken `json:"serverToken"` | ||
Data AzureSidekickData `json:"data"` | ||
} | ||
|
||
type AzureSidekickData struct { | ||
Credentials AzureSidekickCredentials `json:"credentials"` | ||
IntegrationLevel string `json:"integrationLevel"` // SUBSCRIPTION or TENANT | ||
ScanningSubscriptionId string `json:"scanningSubscriptionId"` | ||
TenantId string `json:"tenantId"` | ||
BlobContainerName string `json:"blobContainerName"` | ||
SubscriptionList string `json:"subscriptionList,omitempty"` | ||
QueryText string `json:"queryText,omitempty"` | ||
ScanFrequency int `json:"scanFrequency"` // in hours | ||
ScanContainers bool `json:"scanContainers"` | ||
ScanHostVulnerabilities bool `json:"scanHostVulnerabilities"` | ||
ScanMultiVolume bool `json:"scanMultiVolume"` | ||
ScanStoppedInstances bool `json:"scanStoppedInstances"` | ||
} | ||
|
||
type AzureSidekickCredentials struct { | ||
ClientID string `json:"clientId"` | ||
ClientSecret string `json:"clientSecret,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,251 @@ | ||
// | ||
// Author:: Ao Zhang (<[email protected]>) | ||
// Copyright:: Copyright 2023, Lacework Inc. | ||
// License:: Apache License, Version 2.0 | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
package api_test | ||
|
||
import ( | ||
"fmt" | ||
"net/http" | ||
"testing" | ||
|
||
"github.com/lacework/go-sdk/api" | ||
"github.com/lacework/go-sdk/internal/intgguid" | ||
"github.com/lacework/go-sdk/internal/lacework" | ||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
// These two objects are used to test Create, Get and Update operations. | ||
var ( | ||
azureSidekickData = api.AzureSidekickData{ | ||
IntegrationLevel: "SUBSCRIPTION", | ||
ScanningSubscriptionId: "54321", | ||
TenantId: "98765", | ||
BlobContainerName: "blobContainer", | ||
ScanFrequency: 24, | ||
ScanContainers: true, | ||
ScanHostVulnerabilities: true, | ||
Credentials: api.AzureSidekickCredentials{ | ||
ClientID: "Client123", | ||
ClientSecret: "Secret", | ||
}, | ||
SubscriptionList: "sub1,sub2", | ||
QueryText: "queryText", | ||
} | ||
|
||
azureUpdatedSidekickData = api.AzureSidekickData{ | ||
IntegrationLevel: "SUBSCRIPTION", | ||
ScanningSubscriptionId: "updated-54321", | ||
TenantId: "updated-98765", | ||
BlobContainerName: "updated-blobContainer", | ||
ScanFrequency: 12, | ||
ScanContainers: false, | ||
ScanHostVulnerabilities: true, | ||
Credentials: api.AzureSidekickCredentials{ | ||
ClientID: "updated-Client123", | ||
ClientSecret: "updated-Secret", | ||
}, | ||
SubscriptionList: "updated-sub1,sub2", | ||
QueryText: "updated-queryText", | ||
} | ||
) | ||
|
||
func TestCloudAccountsAzureSidekickCreate(t *testing.T) { | ||
integration := api.NewCloudAccount("integration_name", api.AzureSidekickCloudAccount, azureSidekickData) | ||
assert.Equal(t, api.AzureSidekickCloudAccount.String(), integration.Type) | ||
|
||
// casting the data interface{} to type AzureSidekickData | ||
integrationData := integration.Data.(api.AzureSidekickData) | ||
|
||
assert.Equal(t, integrationData.IntegrationLevel, "SUBSCRIPTION") | ||
assert.Equal(t, integrationData.ScanningSubscriptionId, "54321") | ||
assert.Equal(t, integrationData.TenantId, "98765") | ||
assert.Equal(t, integrationData.BlobContainerName, "blobContainer") | ||
assert.Equal(t, integrationData.ScanFrequency, 24) | ||
assert.Equal(t, integrationData.ScanContainers, true) | ||
assert.Equal(t, integrationData.ScanHostVulnerabilities, true) | ||
|
||
assert.Equal(t, integrationData.Credentials.ClientID, "Client123") | ||
assert.Equal(t, integrationData.Credentials.ClientSecret, "Secret") | ||
} | ||
|
||
func TestCloudAccountsAzureSidekickGet(t *testing.T) { | ||
var ( | ||
intgGUID = intgguid.New() | ||
apiPath = fmt.Sprintf("CloudAccounts/%s", intgGUID) | ||
fakeServer = lacework.MockServer() | ||
) | ||
fakeServer.MockToken("TOKEN") | ||
defer fakeServer.Close() | ||
|
||
fakeServer.MockAPI(apiPath, func(w http.ResponseWriter, r *http.Request) { | ||
assert.Equal(t, "GET", r.Method, "GetAzureSidekick() should be a GET method") | ||
fmt.Fprintf(w, generateCloudAccountResponse(getAzureData(intgGUID, azureSidekickData))) | ||
}) | ||
|
||
c, err := api.NewClient("test", | ||
api.WithToken("TOKEN"), | ||
api.WithURL(fakeServer.URL()), | ||
) | ||
assert.Nil(t, err) | ||
|
||
response, err := c.V2.CloudAccounts.GetAzureSidekick(intgGUID) | ||
assert.Nil(t, err) | ||
assert.NotNil(t, response) | ||
|
||
integration := response.Data | ||
assert.Equal(t, intgGUID, integration.IntgGuid) | ||
assert.Equal(t, "integration_test", integration.Name) | ||
assert.True(t, integration.State.Ok) | ||
|
||
integrationData := integration.Data | ||
assert.Equal(t, "SUBSCRIPTION", integrationData.IntegrationLevel) | ||
assert.Equal(t, "54321", integrationData.ScanningSubscriptionId) | ||
assert.Equal(t, "98765", integrationData.TenantId) | ||
assert.Equal(t, "blobContainer", integrationData.BlobContainerName) | ||
assert.Equal(t, 24, integrationData.ScanFrequency) | ||
assert.Equal(t, true, integrationData.ScanContainers) | ||
assert.Equal(t, true, integrationData.ScanHostVulnerabilities) | ||
assert.Equal(t, "Client123", integrationData.Credentials.ClientID) | ||
assert.Equal(t, "Secret", integrationData.Credentials.ClientSecret) | ||
assert.Equal(t, "sub1,sub2", integrationData.SubscriptionList) | ||
assert.Equal(t, "queryText", integrationData.QueryText) | ||
assert.Equal(t, "token_"+integration.IntgGuid, integration.ServerToken) | ||
} | ||
|
||
func TestCloudAccountsAzureSidekickUpdate(t *testing.T) { | ||
var ( | ||
intgGUID = intgguid.New() | ||
apiPath = fmt.Sprintf("CloudAccounts/%s", intgGUID) | ||
fakeServer = lacework.MockServer() | ||
) | ||
fakeServer.MockToken("TOKEN") | ||
defer fakeServer.Close() | ||
|
||
// Step 1 - Start Fake Server to return updated data | ||
fakeServer.MockAPI(apiPath, func(w http.ResponseWriter, r *http.Request) { | ||
assert.Equal(t, "PATCH", r.Method, "UpdateAzureSidekick() should be a PATCH method") | ||
|
||
if assert.NotNil(t, r.Body) { | ||
body := httpBodySniffer(r) | ||
assert.Contains(t, body, intgGUID, "INTG_GUID missing") | ||
assert.Contains(t, body, "integration_test", "cloud account name is missing") | ||
assert.Contains(t, body, "AzureSidekick", "wrong cloud account type") | ||
assert.Contains(t, body, azureSidekickData.Credentials.ClientID, "wrong client ID") | ||
assert.Contains(t, body, azureSidekickData.BlobContainerName, "wrong blob container name") | ||
assert.Contains(t, body, "enabled\":1", "cloud account is not enabled") | ||
} | ||
|
||
fmt.Fprintf(w, generateCloudAccountResponse(getAzureData(intgGUID, azureUpdatedSidekickData))) | ||
}) | ||
|
||
c, err := api.NewClient("test", | ||
api.WithToken("TOKEN"), | ||
api.WithURL(fakeServer.URL()), | ||
) | ||
assert.Nil(t, err) | ||
|
||
// Step 2 - Create New Account | ||
cloudAccount := api.NewCloudAccount("integration_test", | ||
api.AzureSidekickCloudAccount, | ||
azureSidekickData, | ||
) | ||
|
||
integrationData := cloudAccount.Data.(api.AzureSidekickData) | ||
assert.Equal(t, "integration_test", cloudAccount.Name) | ||
assert.Equal(t, "AzureSidekick", cloudAccount.Type) | ||
assert.Equal(t, 1, cloudAccount.Enabled) | ||
assert.Equal(t, "SUBSCRIPTION", integrationData.IntegrationLevel) | ||
assert.Equal(t, "54321", integrationData.ScanningSubscriptionId) | ||
assert.Equal(t, "98765", integrationData.TenantId) | ||
assert.Equal(t, "blobContainer", integrationData.BlobContainerName) | ||
assert.Equal(t, 24, integrationData.ScanFrequency) | ||
assert.Equal(t, true, integrationData.ScanContainers) | ||
assert.Equal(t, true, integrationData.ScanHostVulnerabilities) | ||
assert.Equal(t, "Client123", integrationData.Credentials.ClientID) | ||
assert.Equal(t, "Secret", integrationData.Credentials.ClientSecret) | ||
assert.Equal(t, "sub1,sub2", integrationData.SubscriptionList) | ||
assert.Equal(t, "queryText", integrationData.QueryText) | ||
|
||
// Step 3 - Get Updated data from Fake server | ||
cloudAccount.IntgGuid = intgGUID | ||
response, err := c.V2.CloudAccounts.UpdateAzureSidekick(cloudAccount) | ||
assert.Nil(t, err, "Cannot update integration") | ||
assert.NotNil(t, response) | ||
integration := response.Data | ||
assert.Equal(t, intgGUID, integration.IntgGuid) | ||
|
||
integrationData = integration.Data | ||
assert.Equal(t, "integration_test", cloudAccount.Name) | ||
assert.Equal(t, "AzureSidekick", cloudAccount.Type) | ||
assert.Equal(t, 1, cloudAccount.Enabled) | ||
assert.Equal(t, "SUBSCRIPTION", integrationData.IntegrationLevel) | ||
assert.Equal(t, "updated-54321", integrationData.ScanningSubscriptionId) | ||
assert.Equal(t, "updated-98765", integrationData.TenantId) | ||
assert.Equal(t, "updated-blobContainer", integrationData.BlobContainerName) | ||
assert.Equal(t, 12, integrationData.ScanFrequency) | ||
assert.Equal(t, false, integrationData.ScanContainers) | ||
assert.Equal(t, true, integrationData.ScanHostVulnerabilities) | ||
assert.Equal(t, "updated-Client123", integrationData.Credentials.ClientID) | ||
assert.Equal(t, "updated-Secret", integrationData.Credentials.ClientSecret) | ||
assert.Equal(t, "updated-sub1,sub2", integrationData.SubscriptionList) | ||
assert.Equal(t, "updated-queryText", integrationData.QueryText) | ||
} | ||
|
||
// getAzureData converts integration data to json string | ||
func getAzureData(id string, data api.AzureSidekickData) string { | ||
|
||
scanFrequency := fmt.Sprintf("%d", data.ScanFrequency) | ||
scanContainers := fmt.Sprintf("%t", data.ScanContainers) | ||
scanHostVulnerabilities := fmt.Sprintf("%t", data.ScanHostVulnerabilities) | ||
|
||
return ` | ||
{ | ||
"createdOrUpdatedBy": "[email protected]", | ||
"createdOrUpdatedTime": "2021-06-01T19:28:00.092Z", | ||
"enabled": 1, | ||
"intgGuid": "` + id + `", | ||
"isOrg": 0, | ||
"name": "integration_test", | ||
"state": { | ||
"details": {}, | ||
"lastSuccessfulTime": 1624456896915, | ||
"lastUpdatedTime": 1624456896915, | ||
"ok": true | ||
}, | ||
"type": "AzureSidekick", | ||
"data": { | ||
"credentials": { | ||
"clientId": "` + data.Credentials.ClientID + `", | ||
"clientSecret": "` + data.Credentials.ClientSecret + `" | ||
}, | ||
"integrationLevel": "` + data.IntegrationLevel + `", | ||
"scanningSubscriptionId": "` + data.ScanningSubscriptionId + `", | ||
"tenantId": "` + data.TenantId + `", | ||
"blobContainerName": "` + data.BlobContainerName + `", | ||
"subscriptionList": "` + data.SubscriptionList + `", | ||
"queryText": "` + data.QueryText + `", | ||
"scanFrequency": ` + scanFrequency + `, | ||
"scanContainers": ` + scanContainers + `, | ||
"scanHostVulnerabilities": ` + scanHostVulnerabilities + ` | ||
}, | ||
"serverToken": { | ||
"serverToken": "token_` + id + `" | ||
} | ||
} | ||
` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters