org.graylog.plugins.threatintel.functions.otx.OTXIPLookupFunction 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 org.graylog.plugins.pipelineprocessor.EvaluationContext;
import org.graylog.plugins.pipelineprocessor.ast.functions.FunctionArgs;
import org.graylog.plugins.pipelineprocessor.ast.functions.FunctionDescriptor;
import org.graylog.plugins.pipelineprocessor.ast.functions.ParameterDescriptor;
import org.graylog2.lookup.LookupTableService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.inject.Inject;
import static org.graylog.plugins.threatintel.functions.otx.OTXLookupResult.MESSAGE;
public class OTXIPLookupFunction extends AbstractOTXLookupFunction {
private static final Logger LOG = LoggerFactory.getLogger(OTXIPLookupFunction.class);
public static final String NAME = "otx_lookup_ip";
private static final String VALUE = "ip_address";
private final ParameterDescriptor valueParam = ParameterDescriptor
.string(VALUE)
.description("The IPv4 or IPv6 address to look up. Example: 198.51.100.1 or 2001:0db8:85a3:0000:0000:8a2e:0370:7334")
.build();
@Inject
public OTXIPLookupFunction(final LookupTableService lookupTableService) {
super(lookupTableService);
}
@Override
public OTXLookupResult evaluate(FunctionArgs args, EvaluationContext context) {
final String ip = valueParam.required(args, context);
if (ip == null) {
LOG.error("NULL parameter passed to OTX threat intel lookup.");
return OTXLookupResult.EMPTY;
}
LOG.debug("Running OTX lookup for IP [{}].", ip);
OTXLookupResult result = lookupIP(ip.trim());
if (result.hasError()) {
throw new RuntimeException((String) result.getResults().get(MESSAGE));
}
return result;
}
@Override
public FunctionDescriptor descriptor() {
return FunctionDescriptor.builder()
.name(NAME)
.description("Look up AlienVault OTX threat intelligence data for an IPv4 or IPv6 address.")
.params(valueParam)
.returnType(OTXLookupResult.class)
.build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy