logstash-filter-greynoise 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3b64201b6ac0532119871fc1cfc37259200e7477
4
+ data.tar.gz: f3ae39a58ea2ef70f6fd336cc21bda194248208c
5
+ SHA512:
6
+ metadata.gz: a027c800ed100e45e1bab4edeb37c505e4a54596914ae167cc9504e95afc867e44ffc97b2381630fd0a359a3a07eb52cdfff02994a966c5eab6802b0b2e93f3c
7
+ data.tar.gz: 3a575121c37a4cbe6b2c65c74738d0cf266c0218808c85a98b3321d177ea3a81f92c6bacab999819c18947564ee8bf7d28d747e687b9288bb40bb2fa619b29c2
data/CHANGELOG.md ADDED
@@ -0,0 +1,2 @@
1
+ ## 0.1.0
2
+ - Plugin created with the logstash plugin generator
data/CONTRIBUTORS ADDED
@@ -0,0 +1,10 @@
1
+ The following is a list of people who have contributed ideas, code, bug
2
+ reports, or in general have helped logstash along its way.
3
+
4
+ Contributors:
5
+ * nsherron90 - nsherron90@gmail.com
6
+
7
+ Note: If you've sent us patches, bug reports, or otherwise contributed to
8
+ Logstash, and you aren't on the list above and want to be, please let us know
9
+ and we'll make sure you're here. Contributions from folks like you are what make
10
+ open source awesome.
data/DEVELOPER.md ADDED
@@ -0,0 +1,2 @@
1
+ # logstash-filter-greynoise
2
+ Example filter plugin. This should help bootstrap your effort to write your own filter plugin!
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+
data/LICENSE ADDED
@@ -0,0 +1,11 @@
1
+ Licensed under the Apache License, Version 2.0 (the "License");
2
+ you may not use this file except in compliance with the License.
3
+ You may obtain a copy of the License at
4
+
5
+ http://www.apache.org/licenses/LICENSE-2.0
6
+
7
+ Unless required by applicable law or agreed to in writing, software
8
+ distributed under the License is distributed on an "AS IS" BASIS,
9
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
+ See the License for the specific language governing permissions and
11
+ limitations under the License.
data/README.md ADDED
@@ -0,0 +1,86 @@
1
+ # Logstash Plugin
2
+
3
+ This is a plugin for [Logstash](https://github.com/elastic/logstash).
4
+
5
+ It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
6
+
7
+ ## Documentation
8
+
9
+ Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elastic.co/guide/en/logstash/current/).
10
+
11
+ - For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
12
+ - For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide
13
+
14
+ ## Need Help?
15
+
16
+ Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.
17
+
18
+ ## Developing
19
+
20
+ ### 1. Plugin Developement and Testing
21
+
22
+ #### Code
23
+ - To get started, you'll need JRuby with the Bundler gem installed.
24
+
25
+ - Create a new plugin or clone and existing from the GitHub [logstash-plugins](https://github.com/logstash-plugins) organization. We also provide [example plugins](https://github.com/logstash-plugins?query=example).
26
+
27
+ - Install dependencies
28
+ ```sh
29
+ bundle install
30
+ ```
31
+
32
+ #### Test
33
+
34
+ - Update your dependencies
35
+
36
+ ```sh
37
+ bundle install
38
+ ```
39
+
40
+ - Run tests
41
+
42
+ ```sh
43
+ bundle exec rspec
44
+ ```
45
+
46
+ ### 2. Running your unpublished Plugin in Logstash
47
+
48
+ #### 2.1 Run in a local Logstash clone
49
+
50
+ - Edit Logstash `Gemfile` and add the local plugin path, for example:
51
+ ```ruby
52
+ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
53
+ ```
54
+ - Install plugin
55
+ ```sh
56
+ bin/logstash-plugin install --no-verify
57
+ ```
58
+ - Run Logstash with your plugin
59
+ ```sh
60
+ bin/logstash -e 'filter {awesome {}}'
61
+ ```
62
+ At this point any modifications to the plugin code will be applied to this local Logstash setup. After modifying the plugin, simply rerun Logstash.
63
+
64
+ #### 2.2 Run in an installed Logstash
65
+
66
+ You can use the same **2.1** method to run your plugin in an installed Logstash by editing its `Gemfile` and pointing the `:path` to your local plugin development directory or you can build the gem and install it using:
67
+
68
+ - Build your plugin gem
69
+ ```sh
70
+ gem build logstash-filter-awesome.gemspec
71
+ ```
72
+ - Install the plugin from the Logstash home
73
+ ```sh
74
+ bin/logstash-plugin install /your/local/plugin/logstash-filter-awesome.gem
75
+ ```
76
+ - Start Logstash and proceed to test the plugin
77
+
78
+ ## Contributing
79
+
80
+ All contributions are welcome: ideas, patches, documentation, bug reports, complaints, and even something you drew up on a napkin.
81
+
82
+ Programming is not a required skill. Whatever you've seen about open source and maintainers or community members saying "send patches or die" - you will not see that here.
83
+
84
+ It is more important to the community that you are able to contribute.
85
+
86
+ For more information about contributing, see the [CONTRIBUTING](https://github.com/elastic/logstash/blob/master/CONTRIBUTING.md) file.
@@ -0,0 +1,56 @@
1
+ # encoding: utf-8
2
+ require "logstash/filters/base"
3
+ require "json"
4
+ require "logstash/namespace"
5
+ require 'faraday'
6
+
7
+
8
+ # This filter will replace the contents of the default
9
+ # message field with whatever you specify in the configuration.
10
+ #
11
+ # It is only intended to be used as an .
12
+ class LogStash::Filters::Greynoise < LogStash::Filters::Base
13
+
14
+ # Setting the config_name here is required. This is how you
15
+ # configure this filter from your Logstash config.
16
+ #
17
+ # filter {
18
+ # {
19
+ # message => "My message..."
20
+ # }
21
+ # }
22
+ #
23
+ config_name "greynoise"
24
+
25
+ # Replace the message with this value.
26
+ config :key, :validate => :string, :required => false
27
+ config :ip, :validate => :string, :required => true
28
+
29
+
30
+
31
+ public
32
+ def register
33
+ end # def register
34
+
35
+ public
36
+ def filter(event)
37
+
38
+ if @key
39
+ url = "https://enterprise.api.greynoise.io/v2/noise/context/" + event.sprintf(ip)
40
+ uri = URI.parse(URI.encode(url.strip))
41
+
42
+ response = Faraday.get(uri, nil, Key: event.sprintf(key))
43
+ else
44
+ url = "https://api.greynoise.io/v1/query/ip"
45
+ response = Faraday.post url, { :ip => event.sprintf(ip) }
46
+
47
+ end
48
+
49
+ result = JSON.parse(response.body)
50
+
51
+ event.set('greynoise', result)
52
+ # filter_matched should go in the last line of our successful code
53
+ filter_matched(event)
54
+
55
+ end # def filter
56
+ end # class LogStash::Filters::Greynoise
@@ -0,0 +1,24 @@
1
+ Gem::Specification.new do |s|
2
+ s.name = 'logstash-filter-greynoise'
3
+ s.version = '0.1.0'
4
+ s.licenses = ['Apache-2.0']
5
+ s.summary = 'This greynoise filter takes contents in the ip field and returns greynoise api data (see https://greynoise.io/ for more info).'
6
+ s.description = 'This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install logstash-filter-greynoise. This gem is not a stand-alone program'
7
+ s.homepage = 'https://github.com/nsherron90/logstash-filter-greynoise'
8
+ s.authors = ['nsherron90']
9
+ s.email = 'nsherron90@gmail.com'
10
+ s.require_paths = ['lib']
11
+
12
+ # Files
13
+ s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
14
+ # Tests
15
+ s.test_files = s.files.grep(%r{^(test|spec|features)/})
16
+
17
+ # Special flag to let us know this is actually a logstash plugin
18
+ s.metadata = { "logstash_plugin" => "true", "logstash_group" => "filter" }
19
+
20
+ # Gem dependencies
21
+ s.add_runtime_dependency 'logstash-core-plugin-api', '~> 2.0'
22
+ s.add_development_dependency 'logstash-devutils'
23
+ s.add_runtime_dependency 'faraday', '~> 0.9.2'
24
+ end
@@ -0,0 +1,35 @@
1
+ # encoding: utf-8
2
+ require_relative '../spec_helper'
3
+ require "logstash/filters/greynoise"
4
+
5
+ describe LogStash::Filters::Greynoise do
6
+
7
+ describe "defaults" do
8
+ let(:config) do <<-CONFIG
9
+ filter {
10
+ greynoise {
11
+ ip => "ip"
12
+ }
13
+ }
14
+ CONFIG
15
+ # end
16
+
17
+ sample("ip" => "8.8.8.8") do
18
+ insist { subject }.include?("greynoise")
19
+
20
+ expected_fields = %w(greynoise.ip greynoise.seen)
21
+ expected_fields.each do |f|
22
+ insist { subject.get("greynoise") }.include?(f)
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
28
+ #
29
+ #
30
+ # sample("message" => "some text") do
31
+ # expect(subject).to include("message")
32
+ # expect(subject.get('message')).to eq('Hello World')
33
+ # end
34
+ # end
35
+ # end
@@ -0,0 +1,2 @@
1
+ # encoding: utf-8
2
+ require "logstash/devutils/rspec/spec_helper"
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: logstash-filter-greynoise
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - nsherron90
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-04-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - "~>"
17
+ - !ruby/object:Gem::Version
18
+ version: '2.0'
19
+ name: logstash-core-plugin-api
20
+ prerelease: false
21
+ type: :runtime
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ name: logstash-devutils
34
+ prerelease: false
35
+ type: :development
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 0.9.2
47
+ name: faraday
48
+ prerelease: false
49
+ type: :runtime
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.9.2
55
+ description: This gem is a Logstash plugin required to be installed on top of the
56
+ Logstash core pipeline using $LS_HOME/bin/logstash-plugin install logstash-filter-greynoise.
57
+ This gem is not a stand-alone program
58
+ email: nsherron90@gmail.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - CHANGELOG.md
64
+ - CONTRIBUTORS
65
+ - DEVELOPER.md
66
+ - Gemfile
67
+ - LICENSE
68
+ - README.md
69
+ - lib/logstash/filters/greynoise.rb
70
+ - logstash-filter-greynoise.gemspec
71
+ - spec/filters/greynoise_spec.rb
72
+ - spec/spec_helper.rb
73
+ homepage: https://github.com/nsherron90/logstash-filter-greynoise
74
+ licenses:
75
+ - Apache-2.0
76
+ metadata:
77
+ logstash_plugin: 'true'
78
+ logstash_group: filter
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.6.14.1
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: This greynoise filter takes contents in the ip field and returns greynoise
99
+ api data (see https://greynoise.io/ for more info).
100
+ test_files:
101
+ - spec/filters/greynoise_spec.rb
102
+ - spec/spec_helper.rb