Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

502 total results found

MicroBurst

Azure - Cheatsheet Security Auditing

git clone git@github.com:NetSPI/MicroBurst.git cd MicroBurst pwsh-preview # Authenticate Connect-AzAccount # Import MicroBurst ipmo ./MicroBurst.psm1 # Install module for Out-GridView Install-Module Microsoft.PowerShell.GraphicalTools # Show...

iDRAC

Dell - One Liners

SkyArk

Azure - Cheatsheet Security Auditing

git clone https://github.com/cyberark/SkyArk cd SkyArk pwsh-preview Import-Module .\SkyArk.ps1 -force Start-AzureStealth Resource: https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology and Resources/Cloud - Azure Pentest.md

File System - Windows

Windows - Scripts

List all applications

Azure - Cheatsheet Azure AD

az ad app list --output=table --query='[].{Name:displayName,URL:homepage}'  

Security

Windows - Scripts

List all service principles

Azure - Cheatsheet Azure AD

az ad sp list --output=table --query='[].{Name:displayName,Enabled:accountEnabled,URL:homepage,Publisher:publisherName,MetadataURL:samlMetadataUrl}'  

Security

Windows - One Liners

List all groups

Azure - Cheatsheet Azure AD

az ad group list --output=json --query='[].{Group:displayName,Description:description}' Resource: https://www.blackhillsinfosec.com/red-teaming-microsoft-part-1-active-directory-leaks-via-azure/

Network

Windows - One Liners

Manually match On Premise AD-user to existing M365 user

Azure - Scripts

For anyone running into this issue, I wrote a script to re-link users for an ou to Azure AD. In my case, I moved all users from the ou I wanted to re-sync to Temp, ran the script, moved users back to the desired ou and re-ran the sync. Import-Module ActiveDir...

Network

Windows - Scripts

Applications

Windows - One Liners

View all VMSS in a subscription

Azure - Cheatsheet VMSS

Simply navigate to this page and use the magical Try it button to use the REST API to grab this info. Neat! CLI az vmss list

Applications

Windows - Scripts

Get VMSS by name and associated resource group

Azure - Cheatsheet VMSS

az vmss list | jq '.[].name, .[].resourceGroup'  

Performance

Windows - Scripts

List vms in a VMSS

Azure - Cheatsheet VMSS

az vmss list-instances -n $VMSS_NAME -g $RESOURCE_GROUP Resource: https://docs.microsoft.com/en-us/cli/azure/vmss?view=azure-cli-latest https://github.com/andyt530/az2tf/blob/master/scripts/295_azurerm_virtual_machine_scale_set.sh