turbot/github_sherlock
Loading controls...

Control: Organization members should not be able to create pages

Description

Pages are public and may contain internal or sensitive information.

Usage

Run the control in your terminal:

powerpipe control run github_sherlock.control.org_members_cannot_create_pages

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run github_sherlock.control.org_members_cannot_create_pages --share

Steampipe Tables

SQL

select
url as resource,
case
when members_can_create_pages then 'alarm'
else 'ok'
end as status,
login || ' users ' || case
when (members_can_create_pages) :: bool then 'can '
else 'cannot '
end || 'create pages.' as reason,
login
from
github_my_organization

Tags