13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
'login-username';
'login-challenge';
'conf';
'conf-profile';
'conf-sec';
'conf-sec-credmg';
}
local ingest = function(filename)
local hnd = io.open(path..'/'..filename)
local txt = hnd:read('*a')
io.close(hnd)
txt = txt:gsub('([^\\])!%b[]', '%1')
|
|
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
'login-username';
'login-challenge';
'conf';
'conf-profile';
'conf-sec';
'conf-sec-credmg';
'conf-user-ctl';
}
local ingest = function(filename)
local hnd = io.open(path..'/'..filename)
local txt = hnd:read('*a')
io.close(hnd)
txt = txt:gsub('([^\\])!%b[]', '%1')
|