Last active
October 7, 2022 09:01
-
-
Save martezr/378a8f6ce22ab839bee0eb79cd43491a to your computer and use it in GitHub Desktop.
Identifying Active HashiCorp Vault Root Tokens
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/python3 | |
import os | |
import time | |
import hvac | |
import urllib3 | |
from prettytable import PrettyTable | |
urllib3.disable_warnings() | |
try: | |
os.environ["VAULT_ADDR"] | |
except Exception: | |
print("The VAULT_ADDR environment must be set.") | |
os._exit(1) | |
try: | |
os.environ["VAULT_TOKEN"] | |
except Exception: | |
print("The VAULT_TOKEN environment must be set.") | |
os._exit(1) | |
client = hvac.Client(url=os.environ['VAULT_ADDR'], verify=False, token=os.environ["VAULT_TOKEN"]) | |
payload = client.list('auth/token/accessors') | |
keys = payload['data']['keys'] | |
x = PrettyTable() | |
x.field_names = ["Display Name", "Creation Time", "Expiration Time", "Policies", "Token Accessor"] | |
for key in keys: | |
output = client.lookup_token(key, accessor=True) | |
display_name = output['data']['display_name'] | |
creation_date = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(output['data']['creation_time'])) | |
expire_time = output['data']['expire_time'] | |
policies = output['data']['policies'] | |
accessor = key | |
if "root" in policies: | |
x.add_row([display_name, creation_date, expire_time, policies, accessor]) | |
print(x) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List token accessors | |
path "auth/token/accessors/" | |
{ | |
capabilities = ["list", "sudo"] | |
} | |
# Lookup individual tokens by accessor | |
path "auth/token/lookup-accessor" | |
{ | |
capabilities = ["update"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment