ROADtools is a framework to interact with Azure AD. It currently consists of a library (roadlib) and the ROADrecon Azure AD exploration tool.
ROADlib
ROADlib is a library that can be used to authenticate with Azure AD or to build tools that integrate with a database containing ROADrecon data. The database model in ROADlib is automatically generated based on the metadata definition of the Azure AD internal API. ROADlib lives in the ROADtools namespace, so to import it in your scripts use from roadtools.roadlib import X
ROADrecon
ROADrecon is a tool for exploring information in Azure AD from both a Red Team and Blue Team perspective. In short, this is what it does:
ROADrecon uses async
Python features and is only compatible with Python 3.6-3.8 (development is done with Python 3.8).
Installation
There are multiple ways to install ROADrecon:
Stable versions can be installed with pip install roadrecon
. This will automatically add the roadrecon
command to your PATH.
Every commit to master is automatically built into a release version with Azure Pipelines. This ensures that you can install the latest version of the GUI without having to install npm
and all it’s dependencies. Simply download the roadlib
and roadrecon
zip files from the Azure Pipelines artifacts, then unzip both and install them in the correct order (roadlib
first):
pip install roadlib/
pip install roadrecon/
You can also install them in development mode with pip install -e roadlib/
.
If you want to make changes to the Angular front-end, you will need to have node
and npm
installed. Then install the components from git:
git clone https://github.com/dirkjanm/roadtools.git
pip install -e roadlib/
pip install -e roadrecon/
cd roadrecon/frontend/
npm install
You can run the Angular frontend with npm start
or ng serve
using the Angular CLI from the roadrecon/frontend/
directory. To build the JavaScript files into ROADrecon’s dist_gui
directory, run npm build
.
Prompt injection is a type of security vulnerability that can be exploited to control the…
Firefly is an advanced black-box fuzzer and not just a standard asset discovery tool. Firefly…
Winit is a robust, cross-platform library designed for creating and managing windows in Rust applications.…
In today’s digital age, convenience often comes at the cost of security. One such overlooked…
Terminal GPT (tgpt) offers a seamless way to bring the power of ChatGPT 3.5 directly…
garak checks if an LLM can be made to fail in a way we don't…