This repository has been archived by the owner on Aug 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathlist-secrets.lua
68 lines (61 loc) · 1.82 KB
/
list-secrets.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
-- Script that lists secrets from k/v engine in Vault
-- If you want to print the secrets found for each list, add "-- true" after the URL
json = require "json"
local counter = 1
local threads = {}
function setup(thread)
thread:set("id", counter)
table.insert(threads, thread)
counter = counter + 1
end
function init(args)
if args[1] == nil then
print_secrets = "false"
else
print_secrets = args[1]
end
print_secrets = args[1]
requests = 0
lists = 0
responses = 0
method = "GET"
path = "/v1/secret/list-test?list=true"
body = ""
local msg = "thread %d created with print_secrets set to %s"
print(msg:format(id, print_secrets))
end
function request()
lists = lists + 1
requests = requests + 1
return wrk.format(method, path, nil, body)
end
function response(status, headers, body)
responses = responses + 1
if print_secrets == "true" then
body_object = json.decode(body)
for k,v in pairs(body_object) do
if k == "data" then
local count = 0
for k1,v1 in pairs(v) do
for _, v2 in pairs(v1) do
count = count + 1
local msg = "response %d found secret: %s"
print(msg:format(responses,v2))
end
local msg = "Found %d secrets in list"
print(msg:format(count))
end
end
end
end
end
function done(summary, latency, requests)
for index, thread in ipairs(threads) do
local id = thread:get("id")
local requests = thread:get("requests")
local lists = thread:get("lists")
local responses = thread:get("responses")
local msg = "thread %d made %d requests including %d lists and got %d responses"
print(msg:format(id, requests, lists, responses))
end
end