Skip to content

Microsoft Teams

NightVision can seamlessly integrate into Teams, where a PDF can be generated from the SARIF created via the nightvision swagger export command. The code can be found in the following repo:

Teams Integration Repository

  1. Clone the repository:
    git clone https://github.com/jxbt/nightvision_ms_teams_importer.git
    cd nightvision_ms_teams_importer
  2. Install Dependencies
    python3 -m venv .venv
    source .venv/bin/activate
    pip3 install -r requirements.txt

To use the NightVision Teams integration, provide the path to your SARIF file along with your Microsoft Teams webhook URL:

source .venv/bin/activate
python3 nightvision_teams_importer.py --sarif <path_to_sarif_file> --webhook <webhook_url>
FlagDescription
-s, —sarifPath to the SARIF file containing the security scan results.
-w, —webhookMicrosoft Teams webhook URL.