Kali Linux

ROADTools: The Modern Azure AD Exploration Framework

ROADTools is a powerful framework designed for exploring and interacting with Microsoft Azure Active Directory (Azure AD). It is widely used by both Red Team and Blue Team security professionals to assess, analyze, and secure Azure AD environments. ROADTools consists of two main components: ROADlib and ROADrecon.

ROADlib: The Core Library for Azure AD Integration

ROADlib is the foundational library of ROADTools. It allows you to:

  • Authenticate securely with Azure AD.
  • Access and manipulate Azure AD data.
  • Build custom security tools integrated with ROADrecon databases.

The database model in ROADlib is automatically generated based on the Azure AD internal API metadata, ensuring accurate and up-to-date mappings of Azure AD objects. ROADlib can be easily imported in Python using:

from roadtools.roadlib import X

This library is fully compatible with Python 3.9 and above, leveraging modern asynchronous features for fast and efficient data processing.

ROADrecon: Exploring Azure AD Like a Pro

ROADrecon is a dedicated tool for in-depth exploration of Azure AD environments. It provides insights that are valuable for both offensive security testing (Red Team) and defensive monitoring (Blue Team).

Key features:

  • Offline Database Creation: Automatically generates an SQLAlchemy-backed database using Azure AD metadata.
  • Asynchronous Data Collection: Uses async HTTP requests to gather comprehensive Azure AD information efficiently.
  • Plugin System: Query the database and output results in multiple formats.
  • Web-Based Analysis Interface: Built with Angular, the interface allows intuitive exploration and visualization of Azure AD data offline.
  • Modern Compatibility: Supports Python 3.9+ with full async capabilities for faster execution and better stability.

Installation

1. Installing via PyPI

The easiest method is using pip:

pip install roadrecon

This command also adds the roadrecon CLI tool to your PATH, enabling quick command-line access.

2. Installing via GitHub

For the latest development versions:

git clone https://github.com/dirkjanm/ROADtools.git
pip install -e roadlib/
pip install -e roadrecon/

This approach allows you to stay up-to-date with the latest features and fixes.

Front-End Development (Optional)

To customize the Angular front-end:

  1. Ensure Node.js and npm are installed.
  2. Navigate to the front-end folder and install dependencies:
cd roadrecon/frontend/
npm install
  1. Run the Angular app locally:
npm start
  1. Build production-ready JavaScript files:
npm run build

Resources & Download

You can access ROADTools directly from its official GitHub repository, where you’ll find the latest versions, documentation, and installation instructions:

ROADTools GitHub Repository

R K

Recent Posts

Install Apache Cassandra on Ubuntu 18.04: NoSQL Setup Guide

Apache Cassandra is a free, open-source NoSQL database designed for high availability and linear scalability with…

15 hours ago

Install Rocket.Chat on Ubuntu 18.04 with Nginx and Let’s Encrypt

Rocket.Chat is a free, open-source team communication platform built with the Meteor framework. It is a…

15 hours ago

Install MySQL on Ubuntu 18.04: Setup, Security, and Root Access

MySQL is the most popular open-source relational database management system. It is fast, reliable, and scales…

15 hours ago

Install Apache on Ubuntu 18.04: Web Server Setup and Config

Apache is the most widely used web server in the world. It is free, open-source, and…

15 hours ago

Install NetBeans IDE on Ubuntu 18.04 with Snap and OpenJDK 8

NetBeans is a free, open-source, cross-platform IDE developed by the Apache Software Foundation. It was one…

15 hours ago

Install Pip on Ubuntu 18.04: Python 3 and Python 2 Setup Guide

Pip is the official package manager for Python and the standard way to install libraries from…

5 days ago