
Wiz Plugin for Steampipe
Use SQL to query security controls, findings, vulnerabilities, and more from your Wiz subscription.
Quick start
Install
Download and install the latest Wiz plugin:
steampipe plugin install wiz
Configure your credentials and config file.
Configure your subscription details in ~/.steampipe/config/wiz.spc:
connection "wiz" {
plugin = "wiz"
# Authentication information
client_id = "8rp38Z6yb2cOSTeaMpPIpepAt99eg3ry"
client_secret = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IndJUnZwVWpBTU93WHQ5ZG5CXzRrVCJ9"
url = "https://api.us1.app.wiz.io/graphql"
}
Or through environment variables:
export WIZ_AUTH_CLIENT_ID=8rp38Z6yb2cOSTeaMpPIpepAt99eg3ry
export WIZ_AUTH_CLIENT_SECRET=eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IndJUnZwVWpBTU93WHQ5ZG5CXzRrVCJ9
export WIZ_URL=https://api.us1.app.wiz.io/graphql
Run steampipe:
steampipe query
List all critical issues:
select
id,
status,
severity,
created_at
from
wiz_issue
where
severity = 'CRITICAL';
+--------------------------------------+----------+----------+---------------------------+
| id | status | severity | created_at |
+--------------------------------------+----------+----------+---------------------------+
| fff8bfc2-c2f2-42ef-bfbc-2f4321ba85fd | OPEN | CRITICAL | 2022-10-06T18:37:35+05:30 |
| fff9b66f-bf5e-1234-b567-8afdded9a0b0 | RESOLVED | CRITICAL | 2022-11-02T21:25:08+05:30 |
| fff1a2f3-4b56-78ac-bf90-12a34da5f67d | OPEN | CRITICAL | 2022-09-28T23:40:49+05:30 |
+--------------------------------------+----------+----------+---------------------------+
Developing
Prerequisites:
Clone:
git clone https://github.com/turbot/steampipe-plugin-wiz.git
cd steampipe-plugin-wiz
Build, which automatically installs the new version to your ~/.steampipe/plugins directory:
make
Configure the plugin:
cp config/* ~/.steampipe/config
vi ~/.steampipe/config/wiz.spc
Try it!
steampipe query
> .inspect wiz
Further reading:
Contributing
Please see the contribution guidelines and our code of conduct. All contributions are subject to the Apache 2.0 open source license.
help wanted issues: