mirror of https://github.com/Safe3/uuWAF
securityapi-gatewayapi-securityapplication-securitymodsecuritywaapwafweb-application-firewallweb-security-gateway
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
2 years ago
|
---
|
||
|
--- Generated by UUSEC(https://www.uusec.com/)
|
||
|
--- Created by Safe3.
|
||
|
--- DateTime: 2022/9/21 20:37
|
||
|
---
|
||
|
local cjson = require("cjson.safe")
|
||
|
local producer = require("resty.kafka.producer")
|
||
|
local log = require("waf.log")
|
||
|
|
||
|
local _M = {
|
||
|
version = 0.1,
|
||
|
name = "kafka-logger"
|
||
|
}
|
||
|
|
||
|
--[[
|
||
|
function _M.req_filter(waf)
|
||
|
|
||
|
end
|
||
|
|
||
|
function _M.resp_header_filter(waf)
|
||
|
|
||
|
end
|
||
|
|
||
|
function _M.resp_body_filter(waf)
|
||
|
|
||
|
end
|
||
|
--]]
|
||
|
|
||
|
local function kafka_log(_, broker_list, info)
|
||
|
local kp = producer:new(broker_list, { producer_type = "async" })
|
||
|
local json = cjson.new()
|
||
|
|
||
|
local key = "key"
|
||
|
local message = json.encode(info)
|
||
|
local ok, err = kp:send("waf-log", key, message)
|
||
|
if not ok then
|
||
|
log.errorlog(_M.name, " send err: ", err)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
function _M.log(waf)
|
||
|
local broker_list = {
|
||
|
{
|
||
|
host = "127.0.0.1",
|
||
|
port = 9092,
|
||
|
|
||
|
sasl_config = {
|
||
|
mechanism = "PLAIN",
|
||
|
user = "USERNAME",
|
||
|
password = "PASSWORD",
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
if waf.msg then
|
||
|
local country, province, city = log.ip2loc(waf.ip)
|
||
|
local info = { rule_id = waf.rule_id, ip = waf.ip, host = waf.host, url = waf.reqUri, data = waf.msg, country = country, province = province, city = city }
|
||
|
log.broker(kafka_log, broker_list, info)
|
||
|
end
|
||
|
end
|