summaryrefslogtreecommitdiffstats
path: root/contrib/file_processor/Processor/Anubis.pm
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:39:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:39:49 +0000
commita0aa2307322cd47bbf416810ac0292925e03be87 (patch)
tree37076262a026c4b48c8a0e84f44ff9187556ca35 /contrib/file_processor/Processor/Anubis.pm
parentInitial commit. (diff)
downloadsuricata-a0aa2307322cd47bbf416810ac0292925e03be87.tar.xz
suricata-a0aa2307322cd47bbf416810ac0292925e03be87.zip
Adding upstream version 1:7.0.3.upstream/1%7.0.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'contrib/file_processor/Processor/Anubis.pm')
-rw-r--r--contrib/file_processor/Processor/Anubis.pm33
1 files changed, 33 insertions, 0 deletions
diff --git a/contrib/file_processor/Processor/Anubis.pm b/contrib/file_processor/Processor/Anubis.pm
new file mode 100644
index 0000000..6cdabb8
--- /dev/null
+++ b/contrib/file_processor/Processor/Anubis.pm
@@ -0,0 +1,33 @@
+package Processor::Anubis;
+use Moose;
+extends 'Processor';
+use Data::Dumper;
+use LWP::UserAgent;
+
+has 'md5' => (is => 'ro', isa => 'Str', required => 1);
+has 'ua' => (is => 'rw', isa => 'LWP::UserAgent', required => 1, default => sub { return LWP::UserAgent->new(agent => 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1'); });
+has 'url_template' => (is => 'ro', isa => 'Str', required => 1, default => 'http://anubis.iseclab.org/?action=result&task_id=%s');
+sub name { 'Anubis' }
+sub description { 'Processor for anubis.iseclab.org' }
+
+sub process {
+ my $self = shift;
+ my $url = sprintf($self->url_template, $self->md5);
+ $self->log->debug('Getting url ' . $url);
+ my $response = $self->ua->get($url);
+ #$self->log->debug(Dumper($response));
+ if ($response->code eq 200){
+ if ($response->decoded_content =~ /Invalid Task ID/){
+ $self->log->debug('No result');
+ return 0;
+ }
+ $self->log->info('Got result');
+ return $url;
+ }
+ else {
+ $self->log->debug('Communications failure: ' . Dumper($response));
+ return 0;
+ }
+}
+
+1 \ No newline at end of file