How to Enumerate Microsoft 365 Groups Using PowerShell and Python

0
M365_Groups_Enum : Enumerate Microsoft 365 Groups In A Tenant With Their Metadata

Microsoft 365 Groups (also known as M365 Groups or Unified Groups) are at the heart of collaboration in Microsoft 365. They power Teams, Outlook Groups, SharePoint sites, Planner, and Yammer. For IT admins and security researchers, it’s critical to be able to enumerate groups, review their metadata, and audit access. In this updated 2025 guide, we’ll show you how to: List...

SeamlessPass: Using Kerberos Tickets to Access Microsoft 365

0

SeamlessPass is a specialized tool designed to leverage on-premises Active Directory Kerberos tickets to obtain access tokens for Microsoft 365 services. This approach is primarily relevant for hybrid environments where organizations use both on-premises Active Directory and cloud-based Microsoft 365 (Azure AD) accounts. It is often used alongside ROADTools, a set of tools for exploring and testing Microsoft 365 access,...

PPLBlade: Advanced Memory Dumping and Obfuscation Tool

0

PPLBlade is a powerful Protected Process Dumper designed to capture memory from target processes, hide the data using obfuscation, and transfer it to remote workstations without leaving files on disk. It is widely used for advanced security testing and memory analysis. Key Features of PPLBlade Bypass PPL protection – Works on protected processes that standard tools cannot access. Obfuscate memory dumps –...

HikPwn : Simple Scanner For Hikvision Devices With Basic Vulnerability Scanning

0
HikPwn : Simple Scanner For Hikvision Devices With Basic Vulnerability Scanning

HikPwn: Comprehensive Guide to Scanning Hikvision Devices for Vulnerabilities If you’re searching for an efficient way to discover and test Hikvision network devices for vulnerabilities, HikPwn is a standout tool for both security researchers and network administrators. This guide provides a detailed walkthrough of HikPwn > its core features, installation, setup, and utilization. What is HikPwn? HikPwn is a Python-based scanner specifically designed for Hikvision...

Comments in Bash Scripts

0
Comments in Bash Scripts

What Are Bash Comments? Comments in Bash scripts, are notes in your code that the computer skips. They help you and others understand what your script does without affecting how it works. In Bash, comments begin with the # sign and run until the end of the line. Example: # This line is a comment and won't be run by Bash echo "Hello,...

Shebang (#!) in Bash Script

0
Shebang (#!) in Bash Script

When you write a Bash script in Linux, you want it to run correctly every time, no matter who uses it or where it is run. That’s where a shebang comes in. A shebang is the first line in a Bash script that tells the system which program (interpreter) to use to run your commands. Using it ensures your script...

Bash String Concatenation – Bash Scripting

0
Bash String Concatenation

Introduction If you’re new to Bash scripting, one of the first skills you’ll need is string concatenation joining two or more strings together. Don’t worry if you’re completely new to Bash! If you haven’t started with Bash scripts yet, check out our beginner-friendly guide on how to create and run shell scripts in Bash. In this guide, you’ll learn six simple...

Learn Bash Scripting: How to Create and Run Shell Scripts for Beginners

0
learn bash scripting

What is Bash Scripting? Bash scripting allows you to save multiple Linux commands in a file and run them all at once.Instead of manually typing commands repeatedly, you can automate tasks such as: Backups File management System updates Data processing Why Learn Bash Scripting? Automation → Run tasks automatically without manual input. Efficiency → Save time by executing multiple commands instantly. Customization → Tailor Linux to your workflow. Portability → Works across most Linux distributions with minimal...

Bash if…else Statement – Bash Scripting

0
Bash-if.else-Statement

When it comes to automating tasks on Linux, Bash scripting is an essential skill for both beginners and seasoned sysadmins. Among the most fundamental concepts is conditional decision making, which lets your scripts respond intelligently based on the data or situation at hand. In this comprehensive guide, you'll discover how to use if statements, else conditions, and elif branches to enhance your Bash scripts for...

Bash Functions Explained: Syntax, Examples, and Best Practices

0
Bash functions

Learn how to create and use Bash functions with this complete tutorial. Includes syntax, arguments, return values, examples, and best practices for cleaner, reusable Bash scripts. Introduction If you’ve ever written the same code multiple times in a Bash script, you’ve already experienced the pain that Bash functions solve.Functions let you group a set of commands under a single name, so...