Merge branch 'master' into kikeflare

This commit is contained in:
Thomas Lynch
2022-04-26 13:07:48 +10:00

View File

@ -10,10 +10,10 @@ function _M.generate_secret(context, salt, is_applet, iterations)
local user_agent = "" local user_agent = ""
if is_applet == true then if is_applet == true then
user_agent = context.headers['user-agent'] or {} user_agent = context.headers['user-agent'] or {}
user_agent = user_agent[0] user_agent = user_agent[0] or ""
else else
--note req_fhdr not req_hdr otherwise commas in useragent become a delimiter --note req_fhdr not req_hdr otherwise commas in useragent become a delimiter
user_agent = context.sf:req_fhdr('user-agent') user_agent = context.sf:req_fhdr('user-agent') or ""
end end
if iterations == nil then if iterations == nil then
--hcaptcha secret is just this --hcaptcha secret is just this