org.graylog.plugins.threatintel.functions.otx.OTXDomainLookupFunction 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.graylog.plugins.threatintel.tools.Domain;
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 OTXDomainLookupFunction extends AbstractOTXLookupFunction {
private static final Logger LOG = LoggerFactory.getLogger(OTXDomainLookupFunction.class);
public static final String NAME = "otx_lookup_domain";
private static final String VALUE = "domain_name";
private final ParameterDescriptor valueParam = ParameterDescriptor
.string(VALUE)
.description("The domain to look up. Example: foo.example.org (A trailing dot ('.') will be ignored.)")
.build();
@Inject
public OTXDomainLookupFunction(final LookupTableService lookupTableService) {
super(lookupTableService);
}
@Override
public OTXLookupResult evaluate(FunctionArgs args, EvaluationContext context) {
final String domain = valueParam.required(args, context);
if (domain == null) {
LOG.error("NULL parameter passed to OTX threat intel lookup.");
return OTXLookupResult.EMPTY;
}
LOG.debug("Running OTX lookup for domain [{}].", domain);
OTXLookupResult result = lookupDomain(Domain.prepareDomain(domain).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 a domain name.")
.params(valueParam)
.returnType(OTXLookupResult.class)
.build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy