fluent-plugin-jfrog-siem 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/fluent-plugin-jfrog-siem.gemspec +4 -4
- data/test/plugin/test_in_jfrog_siem.rb +9 -27
- metadata +5 -6
- data/CHANGELOG.md +0 -36
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea8dc8e85e1874da646a83a7aea1ab32a63057cfaedd0cce5b30a63461898b9c
|
|
4
|
+
data.tar.gz: 4d38c3858e8432b13cd25e1fde6a82619d037274037173fd0825b3b1236e811e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e9289b75176b973729f922e61b8a1c17481ad896f1bed3e9baae687f6387ecf8d968523ec229da36d22f6d6ef9b052ab8e9cab5d652310e2f4c8d0dfb8ef81f8
|
|
7
|
+
data.tar.gz: 9bf33d52a6265a39dceb9bb8e1c99d395fcc0e654b2586d180379c390ac76e86b0dcf680985d01cecf9daaa3237d34e7e9848a2d2a0f6b4461c3e59065a5ff2f
|
|
@@ -3,13 +3,13 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |spec|
|
|
5
5
|
spec.name = "fluent-plugin-jfrog-siem"
|
|
6
|
-
spec.version = "2.0.
|
|
7
|
-
spec.authors = ["
|
|
8
|
-
spec.email = ["
|
|
6
|
+
spec.version = "2.0.1"
|
|
7
|
+
spec.authors = ["Mahitha Byreddy", "Sudhindra Rao"]
|
|
8
|
+
spec.email = ["mahithab@jfrog.com", "sudhindrar@jfrog.com"]
|
|
9
9
|
|
|
10
10
|
spec.summary = %q{JFrog SIEM fluent input plugin will send the SIEM events from JFrog Xray to Fluentd}
|
|
11
11
|
spec.description = %q{JFrog SIEM fluent input plugin will send the SIEM events from JFrog Xray to Fluentd which can then be delivered to whatever output plugin specified}
|
|
12
|
-
spec.homepage = "https://github.com/jfrog/
|
|
12
|
+
spec.homepage = "https://github.com/jfrog/fluent-plugin-jfrog-siem"
|
|
13
13
|
spec.license = "Apache-2.0"
|
|
14
14
|
|
|
15
15
|
test_files, files = `git ls-files -z`.split("\x0").partition do |f|
|
|
@@ -11,34 +11,16 @@ class JfrogSiemInputTest < Test::Unit::TestCase
|
|
|
11
11
|
end
|
|
12
12
|
|
|
13
13
|
# Default configuration for tests
|
|
14
|
-
# CONFIG = %[
|
|
15
|
-
# tag "partnership.test_tag"
|
|
16
|
-
# jpd_url "https://partnership.jfrog.io/"
|
|
17
|
-
# username "sudhindrar"
|
|
18
|
-
# apikey "AKCp8ihpNg2JE5PV3nRXZQsmMGmzX9VTX6wN51hQBFRC1CXQWzGrKQvFL1tsw7aochjoQXAZq"
|
|
19
|
-
# pos_file "test_pos.txt"
|
|
20
|
-
# wait_interval 30
|
|
21
|
-
# ]
|
|
22
|
-
|
|
23
14
|
CONFIG = %[
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
# tag "jfrog.xray.siem.vulnerabilities"
|
|
34
|
-
# jpd_url "JPDURL"
|
|
35
|
-
# username "admin"
|
|
36
|
-
# apikey "APIKEY"
|
|
37
|
-
# pos_file_path "#{ENV['JF_PRODUCT_DATA_INTERNAL']}/log/"
|
|
38
|
-
# wait_interval 10
|
|
39
|
-
# from_date "2016-01-01"
|
|
40
|
-
# batch_size 25
|
|
41
|
-
# ]
|
|
15
|
+
tag "jfrog.xray.siem.vulnerabilities"
|
|
16
|
+
jpd_url "JPDURL"
|
|
17
|
+
username "admin"
|
|
18
|
+
apikey "APIKEY"
|
|
19
|
+
pos_file_path "#{ENV['JF_PRODUCT_DATA_INTERNAL']}/log/"
|
|
20
|
+
wait_interval 10
|
|
21
|
+
from_date "2016-01-01"
|
|
22
|
+
batch_size 25
|
|
23
|
+
]
|
|
42
24
|
|
|
43
25
|
private
|
|
44
26
|
|
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-jfrog-siem
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
- John Peterson
|
|
8
7
|
- Mahitha Byreddy
|
|
8
|
+
- Sudhindra Rao
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-08-
|
|
12
|
+
date: 2021-08-25 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -174,14 +174,13 @@ dependencies:
|
|
|
174
174
|
description: JFrog SIEM fluent input plugin will send the SIEM events from JFrog Xray
|
|
175
175
|
to Fluentd which can then be delivered to whatever output plugin specified
|
|
176
176
|
email:
|
|
177
|
-
- johnp@jfrog.com
|
|
178
177
|
- mahithab@jfrog.com
|
|
178
|
+
- sudhindrar@jfrog.com
|
|
179
179
|
executables: []
|
|
180
180
|
extensions: []
|
|
181
181
|
extra_rdoc_files: []
|
|
182
182
|
files:
|
|
183
183
|
- ".rspec"
|
|
184
|
-
- CHANGELOG.md
|
|
185
184
|
- Gemfile
|
|
186
185
|
- Gemfile.lock
|
|
187
186
|
- LICENSE
|
|
@@ -197,7 +196,7 @@ files:
|
|
|
197
196
|
- spec/xray_spec.rb
|
|
198
197
|
- test/helper.rb
|
|
199
198
|
- test/plugin/test_in_jfrog_siem.rb
|
|
200
|
-
homepage: https://github.com/jfrog/
|
|
199
|
+
homepage: https://github.com/jfrog/fluent-plugin-jfrog-siem
|
|
201
200
|
licenses:
|
|
202
201
|
- Apache-2.0
|
|
203
202
|
metadata: {}
|
data/CHANGELOG.md
DELETED
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
# JFrog Fluentd SIEM Input Plugin Changelog
|
|
2
|
-
All changes to the SIEM plugin will be documented in this file.
|
|
3
|
-
|
|
4
|
-
## [1.0.0] - May 18, 2020
|
|
5
|
-
* [BREAKING] Using JFrog API Key for authentication
|
|
6
|
-
|
|
7
|
-
## [0.1.9] - May 17, 2021
|
|
8
|
-
* Handling the case where violations are left in a batch to be processed
|
|
9
|
-
|
|
10
|
-
## [0.1.8] - May 10, 2021
|
|
11
|
-
* Fixing persist, not persist item conditions
|
|
12
|
-
|
|
13
|
-
## [0.1.7] - April 21, 2021
|
|
14
|
-
* Adding policies and rules to payload
|
|
15
|
-
|
|
16
|
-
## [0.1.6] - April 13, 2021
|
|
17
|
-
* Adding additonal parameters to match with access logs for correlation
|
|
18
|
-
|
|
19
|
-
## [0.1.5] - March 29, 2021
|
|
20
|
-
* Normalizing the format of Impacted Artifact, fixing properties not found case
|
|
21
|
-
|
|
22
|
-
## [0.1.4] - February 02, 2021
|
|
23
|
-
* Adding dependencies, gemspec updates
|
|
24
|
-
|
|
25
|
-
## [0.1.3] - January 21, 2021
|
|
26
|
-
* Fixing thread pool issues (moving loop inside a thread pool)
|
|
27
|
-
|
|
28
|
-
## [0.1.2] - November 17, 2020
|
|
29
|
-
* Changes to better README
|
|
30
|
-
|
|
31
|
-
## [0.1.1] - November 17, 2020
|
|
32
|
-
* Adding dependencies to gemspec
|
|
33
|
-
|
|
34
|
-
## [0.1.0] - October 05, 2020
|
|
35
|
-
* Initial release of Jfrog Logs Analytic integration
|
|
36
|
-
|