org.graylog.plugins.threatintel.functions.otx.AbstractOTXLookupFunction Maven / Gradle / Ivy
/*
* Copyright (C) 2020 Graylog, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* .
*/
package org.graylog.plugins.threatintel.functions.otx;
import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableMap;
import org.graylog.plugins.threatintel.functions.misc.LookupTableFunction;
import org.graylog2.lookup.LookupTableService;
import org.graylog2.plugin.lookup.LookupResult;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
abstract class AbstractOTXLookupFunction extends LookupTableFunction {
private static final String IP_LOOKUP_TABLE_NAME = "otx-api-ip";
private static final String DOMAIN_LOOKUP_TABLE_NAME = "otx-api-domain";
private final LookupTableService.Function ipLookupFunction;
private final LookupTableService.Function domainLookupFunction;
AbstractOTXLookupFunction(final LookupTableService lookupTableService) {
this.ipLookupFunction = lookupTableService.newBuilder().lookupTable(IP_LOOKUP_TABLE_NAME).build();
this.domainLookupFunction = lookupTableService.newBuilder().lookupTable(DOMAIN_LOOKUP_TABLE_NAME).build();
}
protected OTXLookupResult lookupIP(final String ip) {
return lookupIntel(ip, ipLookupFunction);
}
protected OTXLookupResult lookupDomain(final String domain) {
return lookupIntel(domain, domainLookupFunction);
}
private OTXLookupResult lookupIntel(final String key, final LookupTableService.Function lookupFunction) {
final LookupResult lookupResult = lookupFunction.lookup(key);
if (lookupResult != null && !lookupResult.isEmpty()) {
if (lookupResult.hasError()) {
return OTXLookupResult.buildFromError(lookupResult);
}
final ImmutableMap.Builder result = ImmutableMap.builder();
final Object singleValue = lookupResult.singleValue();
final Integer pulseCount = singleValue instanceof Integer ? (Integer) singleValue : Integer.valueOf(String.valueOf(singleValue));
if (pulseCount > 0) {
result.put("otx_threat_indicated", true);
if (lookupResult.multiValue() != null && lookupResult.multiValue() instanceof Map) {
Joiner joiner = Joiner.on(", ").skipNulls();
final Map pulse_info = (Map) lookupResult.multiValue().get("pulse_info");
final List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy