Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Add Azure VM disablePasswordAuth #506

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
16 changes: 16 additions & 0 deletions jupiterone/questions/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,22 @@ questions:
- azure
- network

- id: integration-question-Azure-virtual-machine-disablePasswordAuthentication
title: Which Azure virtual machines that has allow all access with disablePasswordAuthentication?
mcpeach9 marked this conversation as resolved.
Show resolved Hide resolved
description:
Returns a list of virtual machines that allows all access with disabledPasswordAuthentication.
chjlarson marked this conversation as resolved.
Show resolved Hide resolved
queries:
- name: bad
query: |
FIND azure_vm WITH disablePasswordAuthentication = true AS v
THAT ASSIGNED azure_service_principal
THAT ALLOWS *
RETURN
v.displayName,v.active,v.usesManagedDisks
mcpeach9 marked this conversation as resolved.
Show resolved Hide resolved
tags:
- azure
- vm

##########################################
# CIS 1 - Identity & Access Management
##########################################
Expand Down