You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP

netwrix-api

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

netwrix-api

A library to interact with Netwrix Search API

0.0.7
Maintainers
1

Netwrix Search API Module

This is a python3 library to interact with Netwrix Auditor

Example:

from netwrix_api import NetwrixAPI


filter_data = {
    "what": {"Contains": "GroupTest"},
    "datasource": "Active Directory",
    "objecttype": {"Contains": "Group"}
}
netwrix_host = "netwrixsv01.contoso.com"
username = "Username"
passwd = "ENTERPASSOWRD"
api = NetwrixAPI(netwrix_host, username, passwd)
results = api.queryDB(filter_data)

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts