-
Notifications
You must be signed in to change notification settings - Fork 75
/
list-virtual-machine-user-access-admins.go
84 lines (76 loc) · 3 KB
/
list-virtual-machine-user-access-admins.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Copyright (C) 2022 Specter Ops, Inc.
//
// This file is part of AzureHound.
//
// AzureHound is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// AzureHound is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
package cmd
import (
"context"
"os"
"os/signal"
"time"
"github.com/bloodhoundad/azurehound/constants"
"github.com/bloodhoundad/azurehound/enums"
"github.com/bloodhoundad/azurehound/internal"
"github.com/bloodhoundad/azurehound/models"
"github.com/bloodhoundad/azurehound/pipeline"
"github.com/spf13/cobra"
)
func init() {
listRootCmd.AddCommand(listVirtualMachineUserAccessAdminsCmd)
}
var listVirtualMachineUserAccessAdminsCmd = &cobra.Command{
Use: "virtual-machine-user-access-admins",
Long: "Lists Azure Virtual Machine User Access Admins",
Run: listVirtualMachineUserAccessAdminsCmdImpl,
SilenceUsage: true,
}
func listVirtualMachineUserAccessAdminsCmdImpl(cmd *cobra.Command, args []string) {
ctx, stop := signal.NotifyContext(cmd.Context(), os.Interrupt, os.Kill)
defer gracefulShutdown(stop)
log.V(1).Info("testing connections")
if err := testConnections(); err != nil {
exit(err)
} else if azClient, err := newAzureClient(); err != nil {
exit(err)
} else {
log.Info("collecting azure virtual machine user access admins...")
start := time.Now()
subscriptions := listSubscriptions(ctx, azClient)
vms := listVirtualMachines(ctx, azClient, subscriptions)
vmRoleAssignments := listVirtualMachineRoleAssignments(ctx, azClient, vms)
stream := listVirtualMachineUserAccessAdmins(ctx, vmRoleAssignments)
outputStream(ctx, stream)
duration := time.Since(start)
log.Info("collection completed", "duration", duration.String())
}
}
func listVirtualMachineUserAccessAdmins(
ctx context.Context,
roleAssignments <-chan azureWrapper[models.VirtualMachineRoleAssignments],
) <-chan any {
return pipeline.Map(ctx.Done(), roleAssignments, func(ra azureWrapper[models.VirtualMachineRoleAssignments]) any {
filteredAssignments := internal.Filter(ra.Data.RoleAssignments, vmRoleAssignmentFilter(constants.UserAccessAdminRoleID))
uaas := internal.Map(filteredAssignments, func(ra models.VirtualMachineRoleAssignment) models.VirtualMachineUserAccessAdmin {
return models.VirtualMachineUserAccessAdmin{
VirtualMachineId: ra.VirtualMachineId,
UserAccessAdmin: ra.RoleAssignment,
}
})
return NewAzureWrapper(enums.KindAZVMUserAccessAdmin, models.VirtualMachineUserAccessAdmins{
VirtualMachineId: ra.Data.VirtualMachineId,
UserAccessAdmins: uaas,
})
})
}