1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642
|
package org.apache.james.mailetcontainer.impl.matchers;
import java.io.IOException; import java.net.URI; import java.net.http.HttpClient; import java.net.http.HttpRequest; import java.net.http.HttpResponse; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.Set; import java.util.concurrent.CompletableFuture; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.ScheduledFuture; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors;
import javax.mail.Message; import javax.mail.MessagingException; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage;
import org.apache.james.mailetcontainer.impl.matchers.utils.CacheUtil; import org.apache.james.mailetcontainer.impl.matchers.utils.RateLimiter; import org.apache.mailet.Mail; import org.apache.mailet.base.GenericMailet; import org.slf4j.Logger; import org.slf4j.LoggerFactory;
import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; import com.google.common.base.Strings;
public class RiskMailet extends GenericMailet {
public static final Logger LOGGER = LoggerFactory.getLogger(RiskMailet.class);
private volatile Boolean riskSwitch = false; private volatile Boolean riskLogSwitch = false; private volatile Integer refreshInterval = 60;
private volatile String postmaster;
private volatile String host; private volatile String jamesServerIp; private volatile Boolean otherClientSwitch = false; private volatile Integer notificationLimitTime = 60;
private volatile List<String> domainNameWhitelist = new ArrayList<>(); private volatile List<String> fromEmailAddressBlacklist = new ArrayList<>(); private volatile List<String> toEmailAddressBlacklist = new ArrayList<>();
private volatile Long fromLimitTime; private volatile Long fromRiskControlTime; private volatile Long fromFrequency; private volatile List<String> dynamicFromWhitelist = new ArrayList<>();
private volatile Long toLimitTime; private volatile Long toRiskControlTime; private volatile Long toFrequency; private volatile List<String> dynamicToWhitelist = new ArrayList<>();
private volatile Long rateLimitCapacity; private volatile Long rateLimitRefillTokens; private volatile Long rateLimitInterval;
private final ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1); private final HttpClient httpClient = HttpClient.newHttpClient(); private final ObjectMapper objectMapper = new ObjectMapper();
private ScheduledFuture<?> scheduledFuture;
private static final String CONFIG_API_URL = "http://127.0.0.1:6001/api/mail/config/risk"; private static final String LOG_API_URL = "http://127.0.0.1:6001/api/mail/risk/log";
@Override public void init() throws MessagingException { super.init(); fetchRiskConfigAsync(); synchronized (this) { if (scheduledFuture != null && !scheduledFuture.isCancelled()) { scheduledFuture.cancel(true); } scheduledFuture = scheduler.scheduleAtFixedRate(this::fetchRiskConfigAsync, 0, refreshInterval, TimeUnit.SECONDS); } }
private void fetchRiskConfigAsync() { CompletableFuture.runAsync(() -> { try { HttpRequest request = HttpRequest.newBuilder() .uri(URI.create(CONFIG_API_URL)) .POST(HttpRequest.BodyPublishers.noBody()) .build();
HttpResponse<String> response = httpClient.send(request, HttpResponse.BodyHandlers.ofString());
if (response.statusCode() == 200) { parseRiskConfig(response.body()); } else { LOGGER.error("获取风控配置失败,状态码: {}", response.statusCode()); } } catch (Exception e) { LOGGER.error("获取风控配置异常: {}", e.getMessage()); } }); }
private void fetchRiskLogAsync(String type, String content) { CompletableFuture.runAsync(() -> { try { ObjectMapper objectMapper = new ObjectMapper(); String requestBody = objectMapper.writeValueAsString(Map.of( "type", type, "content", content )); HttpRequest request = HttpRequest.newBuilder() .uri(URI.create(LOG_API_URL)) .header("Content-Type", "application/json") .POST(HttpRequest.BodyPublishers.ofString(requestBody)) .build();
HttpResponse<String> response = httpClient.send(request, HttpResponse.BodyHandlers.ofString());
if (response.statusCode() == 200) { LOGGER.info("发送风控日志成功"); } else { LOGGER.error("发送风控日志失败,状态码: {}", response.statusCode()); } } catch (Exception e) { LOGGER.error("发送风控日志异常: {}", e.getMessage(), e); } }); }
private void parseRiskConfig(String responseBody) { try { JsonNode root = objectMapper.readTree(responseBody).get("msg").get("defaultConfigValue"); JsonNode jamesConfig = objectMapper.readTree(root.asText()); JsonNode riskConfig = jamesConfig.get("james").get("risk");
JsonNode uIDEventListenerConfig = jamesConfig.get("james").get("listener");
if (uIDEventListenerConfig.hasNonNull("receiptCallback")) { UIDEventListener.receiptCallback = uIDEventListenerConfig.get("receiptCallback").asBoolean(); }
if (riskConfig.hasNonNull("riskSwitch")) { this.riskSwitch = riskConfig.get("riskSwitch").asBoolean(); } if (riskConfig.hasNonNull("riskLogSwitch")) { this.riskLogSwitch = riskConfig.get("riskLogSwitch").asBoolean(); } if (riskConfig.hasNonNull("refreshInterval")) { int newRefreshInterval = riskConfig.get("refreshInterval").asInt(); if (newRefreshInterval > 0 && newRefreshInterval != refreshInterval) { this.refreshInterval = newRefreshInterval; if (scheduledFuture != null && !scheduledFuture.isCancelled()) { scheduledFuture.cancel(true); } synchronized (this) { if (scheduledFuture != null && !scheduledFuture.isCancelled()) { scheduledFuture.cancel(true); } scheduledFuture = scheduler.scheduleAtFixedRate(this::fetchRiskConfigAsync, 0, refreshInterval, TimeUnit.SECONDS); } } } if (riskConfig.hasNonNull("host")) { this.host = riskConfig.get("host").asText(); } if (riskConfig.hasNonNull("jamesServerIp")) { this.jamesServerIp = riskConfig.get("jamesServerIp").asText(); } if (riskConfig.hasNonNull("postmaster")) { this.postmaster = riskConfig.get("postmaster").asText(); } if (riskConfig.hasNonNull("otherClientSwitch")) { this.otherClientSwitch = riskConfig.get("otherClientSwitch").asBoolean(); } if (riskConfig.hasNonNull("notificationLimitTime")) { this.notificationLimitTime = riskConfig.get("notificationLimitTime").asInt(); } if (riskConfig.hasNonNull("domainNameWhitelist")) { this.domainNameWhitelist.clear(); riskConfig.get("domainNameWhitelist").forEach(node -> domainNameWhitelist.add(node.asText())); } if (riskConfig.hasNonNull("fromEmailAddressBlacklist")) { this.fromEmailAddressBlacklist.clear(); riskConfig.get("fromEmailAddressBlacklist").forEach(node -> fromEmailAddressBlacklist.add(node.asText())); } if (riskConfig.hasNonNull("toEmailAddressBlacklist")) { this.toEmailAddressBlacklist.clear(); riskConfig.get("toEmailAddressBlacklist").forEach(node -> toEmailAddressBlacklist.add(node.asText())); }
if (riskConfig.hasNonNull("fromLimitTime")) { this.fromLimitTime = riskConfig.get("fromLimitTime").asLong(); } if (riskConfig.hasNonNull("fromRiskControlTime")) { this.fromRiskControlTime = riskConfig.get("fromRiskControlTime").asLong(); } if (riskConfig.hasNonNull("fromFrequency")) { this.fromFrequency = riskConfig.get("fromFrequency").asLong(); } if (riskConfig.hasNonNull("dynamicFromWhitelist")) { this.dynamicFromWhitelist.clear(); riskConfig.get("dynamicFromWhitelist").forEach(node -> dynamicFromWhitelist.add(node.asText())); } if (riskConfig.hasNonNull("toLimitTime")) { this.toLimitTime = riskConfig.get("toLimitTime").asLong(); } if (riskConfig.hasNonNull("toRiskControlTime")) { this.toRiskControlTime = riskConfig.get("toRiskControlTime").asLong(); } if (riskConfig.hasNonNull("toFrequency")) { this.toFrequency = riskConfig.get("toFrequency").asLong(); } if (riskConfig.hasNonNull("dynamicToWhitelist")) { this.dynamicToWhitelist.clear(); riskConfig.get("dynamicToWhitelist").forEach(node -> dynamicToWhitelist.add(node.asText())); }
if (riskConfig.hasNonNull("rateLimitCapacity") && riskConfig.hasNonNull("rateLimitRefillTokens") && riskConfig.hasNonNull("rateLimitInterval")) { Long newRateLimitCapacity = riskConfig.get("rateLimitCapacity").asLong(); Long newRateLimitRefillTokens = riskConfig.get("rateLimitRefillTokens").asLong(); Long newRateLimitInterval = riskConfig.get("rateLimitInterval").asLong(); if (!newRateLimitCapacity.equals(rateLimitCapacity) || !newRateLimitRefillTokens.equals(rateLimitRefillTokens) || !newRateLimitInterval.equals(rateLimitInterval)) { rateLimitCapacity = newRateLimitCapacity; rateLimitRefillTokens = newRateLimitRefillTokens; rateLimitInterval = newRateLimitInterval; LOGGER.info("刷新限流配置"); RateLimiter rateLimiter = RateLimiter.getInstance(rateLimitCapacity, rateLimitRefillTokens, rateLimitInterval); rateLimiter.refreshConfig(newRateLimitCapacity, newRateLimitRefillTokens, newRateLimitInterval); } } else { LOGGER.info("清空限流配置"); try { RateLimiter rateLimiter = RateLimiter.getInstance(rateLimitCapacity, rateLimitRefillTokens, rateLimitInterval); rateLimiter.clear(); } catch (Exception e) { LOGGER.error("清空限流配置报错:{}", e.getMessage()); } } LOGGER.info("风控配置已更新: riskSwitch={},riskLogSwitch={}, refreshInterval={}, host={}, jamesServerIp={}, postmaster={}, " + "otherClientSwitch={}, notificationLimitTime={}, domainNameWhitelist={}, fromEmailAddressBlacklist={}, " + "toEmailAddressBlacklist={}, fromLimitTime={}, fromRiskControlTime={}, fromFrequency={}, dynamicFromWhitelist={}, " + "toLimitTime={}, toRiskControlTime={}, toFrequency={}, dynamicToWhitelist={}, rateLimitCapacity={}, " + "rateLimitRefillTokens={}, rateLimitInterval={}", riskSwitch, riskLogSwitch, refreshInterval, host, jamesServerIp, postmaster, otherClientSwitch, notificationLimitTime, domainNameWhitelist, fromEmailAddressBlacklist, toEmailAddressBlacklist, fromLimitTime, fromRiskControlTime, fromFrequency, dynamicFromWhitelist, toLimitTime, toRiskControlTime, toFrequency, dynamicToWhitelist, rateLimitCapacity, rateLimitRefillTokens, rateLimitInterval);
} catch (IOException e) { LOGGER.error("解析风控配置异常: {}", e.getMessage()); e.fillInStackTrace(); } }
@Override public void destroy() { scheduler.shutdown(); super.destroy(); }
@Override public void service(Mail mail) throws MessagingException { try { List<String> from = Arrays.stream(mail.getMessage().getFrom()).map(m -> ((InternetAddress) m).getAddress()).collect(Collectors.toList()); if (!riskSwitch) { LOGGER.info("风控开关没开,跳过风控"); } else if (!from.isEmpty() && (!Strings.isNullOrEmpty(postmaster) && postmaster.equals(from.get(0)))) { LOGGER.info("postmaster账户发的邮件,跳过风控"); } else { List<String> to = Arrays.stream(mail.getMessage().getRecipients(Message.RecipientType.TO)) .map(m -> ((InternetAddress) m).getAddress()) .collect(Collectors.toList());
LOGGER.info("发件人:{} 进入自定义拦截逻辑", from);
String rejectionReason = getRiskReason(from, to, mail.getRemoteAddr()); if (!Strings.isNullOrEmpty(rejectionReason)) { LOGGER.info("走完风控流程,被拦截..."); mail.setState(Mail.GHOST); sendRejectionNotification(mail, from, rejectionReason); } else { LOGGER.info("走完风控流程,放行..."); } }
} catch (Exception e) { LOGGER.error(e.getMessage()); } }
private void riskLog(List<String> from, String type, String content) { if (riskLogSwitch) {
if (CacheUtil.get("notification-" + from.get(0)) != null) { LOGGER.info("{}时间限制内已经推送过风控日志终止本次推送,避免频繁派发", from.get(0)); return; }
fetchRiskLogAsync(type, content); } else { LOGGER.info("风控日志推送未开启,跳过发送风控日志"); } }
private String getRiskReason(List<String> from, List<String> to, String sendServerIp) {
LOGGER.info("发件服务器ip:{} 进入自定义拦截逻辑", sendServerIp);
if (!checkFormDomain(from)) { riskLog(from, "白名单", from.get(0) + "不在邮箱域白名单,发件进来被拒"); return "Your mail cannot be delivered due to domain restrictions"; } else if (checkOtherClient(from, sendServerIp)) { riskLog(from, "第三方客户端", from.get(0) + "使用第三方客户端进行发件被拦截"); LOGGER.info("风控拦截,使用第三方客户端进行发件"); return "This operation poses a security risk and has been restricted"; } else if (checkFormEmailAddress(from)) { riskLog(from, "发件人黑名单", from.get(0) + "发件人黑名单用户发件被拦截"); return "Your email address is restricted and cannot be delivered"; } else if (checkToEmailAddress(to)) { riskLog(from, "收件人黑名单", String.join(",", to) + "收件人黑名单用户收件被拦截"); return "The recipient's email address is restricted and cannot be delivered:" + String.join(",", to); } else if (batchDynamicRiskControl(from, fromLimitTime, fromRiskControlTime, fromFrequency, dynamicFromWhitelist, "发件人")) { riskLog(from, "发件人限流", from.get(0) + "发件超额被拦截"); return "The operation is too frequent and has been locked -f"; } else if (batchDynamicRiskControl(to, toLimitTime, toRiskControlTime, toFrequency, dynamicToWhitelist, "收件人")) { riskLog(from, "收件人限流", String.join(",", to) + "收件超额被拦截"); return "The operation is too frequent and has been locked -t:" + String.join(",", to); } else if (batchDynamicRiskControl(from)) { riskLog(from, "邮箱域限流", getDomainFromEmail(from.get(0)) + "域流量超额被拦截"); return "The request has been locked due to excessive request attempts"; } return ""; }
public boolean batchDynamicRiskControl(List<String> targets) {
if (targets.isEmpty()) { return false; }
boolean isLimited = false;
for (String target : targets) { boolean result = applyDomainOrIpRateLimit(getDomainFromEmail(target)); if (result) { isLimited = true; } }
return isLimited; }
public boolean avoidLocalhost(String target, String type) { if ("127.0.0.1".equals(target) || "localhost".equals(target)) { LOGGER.info("{},本机ip,跳过", type); return false; }
if (!Strings.isNullOrEmpty(postmaster) && postmaster.equals(target)) { LOGGER.info("{},postmaster账户,跳过", type); return false; } return true; }
private boolean applyDomainOrIpRateLimit(String target) { if (rateLimitCapacity == null || rateLimitRefillTokens == null || rateLimitInterval == null) { LOGGER.info("未配置限流参数,跳过限流"); return false; }
if (!avoidLocalhost(target, "限流")) { return false; }
RateLimiter rateLimiter = RateLimiter.getInstance(rateLimitCapacity, rateLimitRefillTokens, rateLimitInterval); LOGGER.info("目标:{} 剩余令牌数量:{}", target, rateLimiter.getAvailableTokens(target));
if (rateLimiter.tryConsume(target)) { return false; } else { LOGGER.info("目标:{} 超过限流阈值,触发限制", target); return true; } }
private void sendRejectionNotification(Mail originalMail, List<String> recipients, String content) { try {
if (Strings.isNullOrEmpty(postmaster)) { LOGGER.info("没有配置通知邮箱,跳过发送拒收通知"); return; }
Object o = CacheUtil.get("notification-" + recipients.get(0));
if (o != null) { LOGGER.info("{}时间限制内已经发过拒收通知,终止本次通知,避免频繁派发", recipients.get(0)); return; }
LOGGER.info("开始发拒收通知"); MimeMessage notification = new MimeMessage(originalMail.getMessage().getSession()); notification.setFrom(new InternetAddress(postmaster)); notification.setRecipients(Message.RecipientType.TO, InternetAddress.parse(String.join(",", recipients))); notification.setSubject("Mail rejected notification"); notification.setText(content, "UTF-8", "html"); getMailetContext().sendMail(notification);
CacheUtil.put("notification-" + recipients.get(0), recipients, Long.valueOf(notificationLimitTime));
} catch (Exception e) { LOGGER.error("发送拒收通知失败", e); } }
public static String getDomainFromEmail(String email) { if (Strings.isNullOrEmpty(email) || !email.contains("@")) { return null; } return email.substring(email.lastIndexOf('@') + 1).toLowerCase(); }
public Boolean checkOtherClient(List<String> from, String sendServerIp) { if (!otherClientSwitch) { LOGGER.info("未开启第三方客户端发件限制,跳过邮箱客户端校验"); return false; } return host.equals(getDomainFromEmail(from.get(0))) && !jamesServerIp.equals(sendServerIp) && !"127.0.0.1".equals(sendServerIp) && !"localhost".equals(sendServerIp); }
public Boolean checkFormDomain(List<String> from) { if (domainNameWhitelist.isEmpty()) { LOGGER.info("未配置邮箱域白名单,跳过白名单校验"); return false; } Set<String> lowerCaseWhitelist = domainNameWhitelist.stream() .filter(Objects::nonNull) .map(String::toLowerCase) .collect(Collectors.toSet());
boolean b = from.stream() .filter(Objects::nonNull) .allMatch(email -> {
if (!Strings.isNullOrEmpty(postmaster) && postmaster.equalsIgnoreCase(email)) { return true; }
return lowerCaseWhitelist.contains(getDomainFromEmail(email)); });
if (!b) { LOGGER.info("发件域:{} 不在白名单,被拒", from); } return b; }
private Boolean checkFormEmailAddress(List<String> from) { if (fromEmailAddressBlacklist.isEmpty()) { LOGGER.info("未配置发件人黑名单,跳过发件人黑名单校验"); return false; } boolean b = from.stream() .anyMatch(email -> fromEmailAddressBlacklist.contains(email) && (Strings.isNullOrEmpty(postmaster) || !postmaster.equals(email)) ); if (b) { LOGGER.info("发件人:{} 邮箱地址被拒绝", from); } return b; }
private Boolean checkToEmailAddress(List<String> to) { if (toEmailAddressBlacklist.isEmpty()) { LOGGER.info("未配置收件人黑名单,跳过收件人黑名单校验"); return false; }
LOGGER.info("收件人地址:{}", to);
boolean b = to.stream() .anyMatch(email -> toEmailAddressBlacklist.contains(email) && (Strings.isNullOrEmpty(postmaster) || !postmaster.equals(email)) ); if (b) { LOGGER.info("收件人:{} 邮箱地址被拒绝", to); } return b; }
public boolean batchDynamicRiskControl(List<String> targets, Long limitTime, Long riskControlTime, Long frequency, List<String> dynamicWhitelist, String type) {
if (targets.isEmpty()) { return false; }
boolean isLimited = false;
for (String target : targets) { boolean result = dynamicRiskControl(target, limitTime, riskControlTime, frequency, dynamicWhitelist, type); if (result) { isLimited = true; } }
return isLimited; }
private Boolean dynamicRiskControl(String target, Long limitTime, Long riskControlTime, Long frequency, List<String> dynamicWhitelist, String type) {
if (Strings.isNullOrEmpty(target) || null == limitTime || null == riskControlTime || null == frequency) { LOGGER.info("{}的动态配置不全,跳过", type); return false; }
if (!avoidLocalhost(target, "动态风控")) { return false; }
if (!dynamicWhitelist.isEmpty() && dynamicWhitelist.stream().anyMatch(target::equals)) { LOGGER.info("{}-动态配置{}存在白名单中,跳过", type, target); return false; }
long currentTime = System.currentTimeMillis() / 1000;
Object lockExpireTimeObj = CacheUtil.get(target); if (lockExpireTimeObj != null) { long lockExpireTime = (Long) lockExpireTimeObj; if (currentTime < lockExpireTime) { LOGGER.info("动态风控,目标:{},处于锁定状态", target); return true; } else { LOGGER.info("动态风控,目标:{},锁定过期,移除记录", target); CacheUtil.rem(target); } }
String frequencyKey = target + ":frequency"; List<Long> requestTimes;
synchronized ((frequencyKey).intern()) { requestTimes = (List<Long>) CacheUtil.get(frequencyKey); if (requestTimes == null) { requestTimes = new ArrayList<>(); }
LOGGER.info("动态风控,目标:{},频次:{}", target, requestTimes.size());
long thresholdTime = currentTime - riskControlTime; requestTimes.removeIf(time -> time < thresholdTime);
if (requestTimes.size() >= frequency) { long lockTime = currentTime + limitTime; CacheUtil.put(target, lockTime, limitTime); CacheUtil.rem(frequencyKey); LOGGER.info("动态风控,目标:{},触发锁定", target); return true; }
requestTimes.add(currentTime); CacheUtil.put(frequencyKey, requestTimes, riskControlTime); } return false; } }
|