2021-07-29 10:02:31 +08:00
|
|
|
|
package com.zdjizhi.etl;
|
|
|
|
|
|
|
|
|
|
|
|
import com.zdjizhi.common.CommonConfig;
|
|
|
|
|
|
import com.zdjizhi.common.DosEventLog;
|
|
|
|
|
|
import com.zdjizhi.common.DosSketchLog;
|
2021-08-16 18:24:13 +08:00
|
|
|
|
import com.zdjizhi.utils.HbaseUtils;
|
2021-07-29 10:02:31 +08:00
|
|
|
|
import com.zdjizhi.utils.IpUtils;
|
|
|
|
|
|
import com.zdjizhi.utils.SnowflakeId;
|
|
|
|
|
|
import org.apache.commons.lang.StringUtils;
|
2021-08-05 18:42:34 +08:00
|
|
|
|
import org.apache.flink.api.common.functions.RichMapFunction;
|
2021-07-29 10:02:31 +08:00
|
|
|
|
import org.apache.flink.configuration.Configuration;
|
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
|
|
|
|
|
|
|
import java.text.NumberFormat;
|
|
|
|
|
|
import java.text.ParseException;
|
2021-08-05 18:42:34 +08:00
|
|
|
|
import java.util.*;
|
2021-07-29 10:02:31 +08:00
|
|
|
|
|
2021-08-16 18:24:13 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* @author wlh
|
|
|
|
|
|
*/
|
2021-08-05 18:42:34 +08:00
|
|
|
|
public class DosDetection extends RichMapFunction<DosSketchLog, DosEventLog> {
|
2021-07-29 10:02:31 +08:00
|
|
|
|
|
|
|
|
|
|
private static final Logger logger = LoggerFactory.getLogger(DosDetection.class);
|
2021-08-16 18:24:13 +08:00
|
|
|
|
private static Map<String, Map<String,List<Integer>>> baselineMap;
|
2021-07-30 10:55:01 +08:00
|
|
|
|
private final static int BASELINE_SIZE = 144;
|
|
|
|
|
|
private final static NumberFormat PERCENT_INSTANCE = NumberFormat.getPercentInstance();
|
2021-07-29 10:02:31 +08:00
|
|
|
|
|
|
|
|
|
|
@Override
|
2021-08-16 18:24:13 +08:00
|
|
|
|
public void open(Configuration parameters){
|
|
|
|
|
|
baselineMap = HbaseUtils.baselineMap;
|
2021-07-30 10:55:01 +08:00
|
|
|
|
PERCENT_INSTANCE.setMinimumFractionDigits(2);
|
2021-07-29 10:02:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
2021-08-16 18:24:13 +08:00
|
|
|
|
public DosEventLog map(DosSketchLog value){
|
2021-07-30 10:55:01 +08:00
|
|
|
|
try {
|
|
|
|
|
|
String destinationIp = value.getDestination_ip();
|
|
|
|
|
|
String attackType = value.getAttack_type();
|
2021-08-05 18:42:34 +08:00
|
|
|
|
logger.debug("当前判断IP:{}, 类型: {}",destinationIp,attackType);
|
|
|
|
|
|
if (baselineMap.containsKey(destinationIp)){
|
|
|
|
|
|
List<Integer> baseline = baselineMap.get(destinationIp).get(attackType);
|
2021-07-30 10:55:01 +08:00
|
|
|
|
if (baseline != null && baseline.size() == BASELINE_SIZE){
|
|
|
|
|
|
int timeIndex = getCurrentTimeIndex(value.getSketch_start_time());
|
|
|
|
|
|
Integer base = baseline.get(timeIndex);
|
2021-08-17 11:09:45 +08:00
|
|
|
|
long diff = value.getSketch_sessions() - base;
|
2021-07-30 10:55:01 +08:00
|
|
|
|
if (diff > 0){
|
2021-08-17 11:09:45 +08:00
|
|
|
|
String percent = getDiffPercent(diff, base);
|
2021-07-30 10:55:01 +08:00
|
|
|
|
double diffPercentDouble = getDiffPercentDouble(percent);
|
|
|
|
|
|
Severity severity = judgeSeverity(diffPercentDouble);
|
|
|
|
|
|
if (severity != Severity.NORMAL){
|
|
|
|
|
|
DosEventLog result = getResult(value, severity, percent);
|
|
|
|
|
|
logger.info("检测到当前server IP {} 存在 {} 异常,日志详情\n {}",destinationIp,attackType,result.toString());
|
2021-08-05 18:42:34 +08:00
|
|
|
|
return result;
|
2021-07-30 10:55:01 +08:00
|
|
|
|
}else {
|
2021-08-05 18:42:34 +08:00
|
|
|
|
logger.debug("当前server IP:{} 未出现 {} 异常,日志详情 {}",destinationIp,attackType,value.toString());
|
2021-07-30 10:55:01 +08:00
|
|
|
|
}
|
2021-07-29 10:02:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2021-07-30 10:55:01 +08:00
|
|
|
|
}else {
|
2021-08-05 18:42:34 +08:00
|
|
|
|
logger.debug("未获取到当前server IP:{} 类型 {} baseline数据",destinationIp,attackType);
|
2021-07-29 10:02:31 +08:00
|
|
|
|
}
|
2021-07-30 10:55:01 +08:00
|
|
|
|
}catch (Exception e){
|
|
|
|
|
|
logger.error("判定失败\n {} \n{}",value,e);
|
2021-07-29 10:02:31 +08:00
|
|
|
|
}
|
2021-08-05 18:42:34 +08:00
|
|
|
|
return null;
|
2021-07-29 10:02:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2021-08-05 18:42:34 +08:00
|
|
|
|
private DosEventLog getResult(DosSketchLog value, Severity severity, String percent){
|
2021-07-29 10:02:31 +08:00
|
|
|
|
DosEventLog dosEventLog = new DosEventLog();
|
|
|
|
|
|
dosEventLog.setLog_id(SnowflakeId.generateId());
|
|
|
|
|
|
dosEventLog.setStart_time(value.getSketch_start_time());
|
|
|
|
|
|
dosEventLog.setEnd_time(value.getSketch_start_time()+CommonConfig.FLINK_WINDOW_MAX_TIME);
|
|
|
|
|
|
dosEventLog.setAttack_type(value.getAttack_type());
|
2021-08-04 16:30:13 +08:00
|
|
|
|
dosEventLog.setSeverity(severity.toString());
|
2021-07-29 10:02:31 +08:00
|
|
|
|
dosEventLog.setConditions(getConditions(percent));
|
|
|
|
|
|
dosEventLog.setDestination_ip(value.getDestination_ip());
|
|
|
|
|
|
dosEventLog.setDestination_country(IpUtils.ipLookup.countryLookup(value.getDestination_ip()));
|
|
|
|
|
|
String ipList = value.getSource_ip();
|
|
|
|
|
|
dosEventLog.setSource_ip_list(ipList);
|
|
|
|
|
|
dosEventLog.setSource_country_list(getSourceCountryList(ipList));
|
|
|
|
|
|
dosEventLog.setSession_rate(value.getSketch_sessions());
|
|
|
|
|
|
dosEventLog.setPacket_rate(value.getSketch_packets());
|
|
|
|
|
|
dosEventLog.setBit_rate(value.getSketch_bytes());
|
|
|
|
|
|
return dosEventLog;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private String getConditions(String percent){
|
|
|
|
|
|
return "sessions > "+percent+" of baseline";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private String getSourceCountryList(String sourceIpList){
|
|
|
|
|
|
String[] ipArr = sourceIpList.split(",");
|
|
|
|
|
|
HashSet<String> countrySet = new HashSet<>();
|
|
|
|
|
|
for (String ip:ipArr){
|
|
|
|
|
|
countrySet.add(IpUtils.ipLookup.countryLookup(ip));
|
|
|
|
|
|
}
|
|
|
|
|
|
return StringUtils.join(countrySet,",");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private int getCurrentTimeIndex(long sketchStartTime){
|
|
|
|
|
|
long currentDayTime = sketchStartTime / (60 * 60 * 24) * 60 * 60 * 24;
|
|
|
|
|
|
long indexLong = (sketchStartTime - currentDayTime) / 600;
|
|
|
|
|
|
return Integer.parseInt(Long.toString(indexLong));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-08-17 11:09:45 +08:00
|
|
|
|
private String getDiffPercent(long diff,long base){
|
2021-07-29 10:02:31 +08:00
|
|
|
|
double diffDou = Double.parseDouble(Long.toString(diff));
|
2021-08-17 11:09:45 +08:00
|
|
|
|
double baseDou = Double.parseDouble(Long.toString(base));
|
|
|
|
|
|
return PERCENT_INSTANCE.format(diffDou / baseDou);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
|
|
|
System.out.println(new DosDetection().getDiffPercent(219, 0));
|
|
|
|
|
|
System.out.println(new DosDetection().getDiffPercentDouble("∞%"));
|
2021-07-29 10:02:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private double getDiffPercentDouble(String diffPercent) throws ParseException {
|
2021-07-30 10:55:01 +08:00
|
|
|
|
return PERCENT_INSTANCE.parse(diffPercent).doubleValue();
|
2021-07-29 10:02:31 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private Severity judgeSeverity(double diffPercent){
|
|
|
|
|
|
if (diffPercent >= CommonConfig.BASELINE_SESSIONS_MINOR_THRESHOLD && diffPercent < CommonConfig.BASELINE_SESSIONS_WARNING_THRESHOLD){
|
|
|
|
|
|
return Severity.MINOR;
|
|
|
|
|
|
}else if (diffPercent >= CommonConfig.BASELINE_SESSIONS_WARNING_THRESHOLD && diffPercent < CommonConfig.BASELINE_SESSIONS_MAJOR_THRESHOLD){
|
|
|
|
|
|
return Severity.WARNING;
|
|
|
|
|
|
}else if (diffPercent >= CommonConfig.BASELINE_SESSIONS_MAJOR_THRESHOLD && diffPercent < CommonConfig.BASELINE_SESSIONS_SEVERE_THRESHOLD){
|
|
|
|
|
|
return Severity.MAJOR;
|
|
|
|
|
|
}else if (diffPercent >= CommonConfig.BASELINE_SESSIONS_SEVERE_THRESHOLD && diffPercent < CommonConfig.BASELINE_SESSIONS_CRITICAL_THRESHOLD){
|
|
|
|
|
|
return Severity.SEVERE;
|
|
|
|
|
|
}else if (diffPercent >= CommonConfig.BASELINE_SESSIONS_CRITICAL_THRESHOLD){
|
|
|
|
|
|
return Severity.CRITICAL;
|
|
|
|
|
|
}else {
|
|
|
|
|
|
return Severity.NORMAL;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private enum Severity {
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 判断严重程度枚举类型
|
|
|
|
|
|
*/
|
|
|
|
|
|
CRITICAL("Critical"),
|
|
|
|
|
|
SEVERE("Severe"),
|
|
|
|
|
|
MAJOR("Major"),
|
|
|
|
|
|
WARNING("Warning"),
|
|
|
|
|
|
MINOR("Minor"),
|
|
|
|
|
|
NORMAL("Normal");
|
|
|
|
|
|
|
|
|
|
|
|
private final String severity;
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
public String toString() {
|
|
|
|
|
|
return this.severity;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Severity(String severity) {
|
|
|
|
|
|
this.severity = severity;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2021-08-05 18:42:34 +08:00
|
|
|
|
|
2021-07-29 10:02:31 +08:00
|
|
|
|
}
|