Skip to content

Instantly share code, notes, and snippets.

View m14r41's full-sized avatar
💻
computer

Madhurendra kumar m14r41

💻
computer
View GitHub Profile
@m14r41
m14r41 / az-enum.sh
Last active November 15, 2023 09:35 — forked from iknowjason/az-enum.sh
Azure Enum & Recon Cheat Sheet
echo "\033[1;32mEnter the domain to perform reconnaissance on:\033[0m"; read DOMAIN
echo "\033[1;32mEnter a username for credential type check:\033[0m"; read USERNAME
# Function to print in color
print_color() {
local color=$1
shift
printf "\e[${color}m$@\e[0m\n"
}