files.com 1.1.142 → 1.1.144
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/sftp_action_log.md +2 -0
- data/docs/siem_http_destination.md +8 -8
- data/lib/files.com/models/sftp_action_log.rb +5 -0
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6ddbe4f78b571fccaf7817bc5ce2dd9c549978afcc386af9c9f4f7c10f84354c
|
4
|
+
data.tar.gz: 195136ba31dc5657c82aeb59820efa66965475ac05dcfbbd4d1701504ca6e3e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d89e38932b20f2ecd7c90e794a8edb91f24f0dda3ecf96812071c775bf655a08526fee8585d6a31d6ed5fe8d66e10ec33abf0906b3ff379b5ea6455943879cb1
|
7
|
+
data.tar.gz: 854511564aed4a7553a862233c06ef1a7719fd8d382b8a2b55d5a3780813113f54818bb6763a130f267aada94d02b95e0879a6e3b5a351aa592942dd68b22634
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.144
|
data/docs/sftp_action_log.md
CHANGED
@@ -8,6 +8,7 @@
|
|
8
8
|
"remote_ip": "example",
|
9
9
|
"server_ip": "example",
|
10
10
|
"username": "example",
|
11
|
+
"ssh_client_identification": "example",
|
11
12
|
"session_uuid": "example",
|
12
13
|
"seq_id": 1,
|
13
14
|
"auth_method": "example",
|
@@ -31,6 +32,7 @@
|
|
31
32
|
* `remote_ip` (string): IP Address of SFTP Client
|
32
33
|
* `server_ip` (string): IP Address of SFTP Server
|
33
34
|
* `username` (string): Username
|
35
|
+
* `ssh_client_identification` (string): Name of the SFTP Client provided at initial connection
|
34
36
|
* `session_uuid` (string): Unique ID of the Session
|
35
37
|
* `seq_id` (int64): SFTP Sequence ID
|
36
38
|
* `auth_method` (string): Authentication Method
|
@@ -113,7 +113,7 @@
|
|
113
113
|
|
114
114
|
---
|
115
115
|
|
116
|
-
## List
|
116
|
+
## List SIEM HTTP Destinations
|
117
117
|
|
118
118
|
```
|
119
119
|
Files::SiemHttpDestination.list
|
@@ -127,7 +127,7 @@ Files::SiemHttpDestination.list
|
|
127
127
|
|
128
128
|
---
|
129
129
|
|
130
|
-
## Show
|
130
|
+
## Show SIEM HTTP Destination
|
131
131
|
|
132
132
|
```
|
133
133
|
Files::SiemHttpDestination.find(id)
|
@@ -140,7 +140,7 @@ Files::SiemHttpDestination.find(id)
|
|
140
140
|
|
141
141
|
---
|
142
142
|
|
143
|
-
## Create
|
143
|
+
## Create SIEM HTTP Destination
|
144
144
|
|
145
145
|
```
|
146
146
|
Files::SiemHttpDestination.create(
|
@@ -201,7 +201,7 @@ Files::SiemHttpDestination.create(
|
|
201
201
|
|
202
202
|
---
|
203
203
|
|
204
|
-
## send_test_entry
|
204
|
+
## send_test_entry SIEM HTTP Destination
|
205
205
|
|
206
206
|
```
|
207
207
|
Files::SiemHttpDestination.send_test_entry(
|
@@ -264,7 +264,7 @@ Files::SiemHttpDestination.send_test_entry(
|
|
264
264
|
|
265
265
|
---
|
266
266
|
|
267
|
-
## Update
|
267
|
+
## Update SIEM HTTP Destination
|
268
268
|
|
269
269
|
```
|
270
270
|
Files::SiemHttpDestination.update(id,
|
@@ -326,7 +326,7 @@ Files::SiemHttpDestination.update(id,
|
|
326
326
|
|
327
327
|
---
|
328
328
|
|
329
|
-
## Delete
|
329
|
+
## Delete SIEM HTTP Destination
|
330
330
|
|
331
331
|
```
|
332
332
|
Files::SiemHttpDestination.delete(id)
|
@@ -339,7 +339,7 @@ Files::SiemHttpDestination.delete(id)
|
|
339
339
|
|
340
340
|
---
|
341
341
|
|
342
|
-
## Update
|
342
|
+
## Update SIEM HTTP Destination
|
343
343
|
|
344
344
|
```
|
345
345
|
siem_http_destination = Files::SiemHttpDestination.find(id)
|
@@ -403,7 +403,7 @@ siem_http_destination.update(
|
|
403
403
|
|
404
404
|
---
|
405
405
|
|
406
|
-
## Delete
|
406
|
+
## Delete SIEM HTTP Destination
|
407
407
|
|
408
408
|
```
|
409
409
|
siem_http_destination = Files::SiemHttpDestination.find(id)
|
@@ -29,6 +29,11 @@ module Files
|
|
29
29
|
@attributes[:username]
|
30
30
|
end
|
31
31
|
|
32
|
+
# string - Name of the SFTP Client provided at initial connection
|
33
|
+
def ssh_client_identification
|
34
|
+
@attributes[:ssh_client_identification]
|
35
|
+
end
|
36
|
+
|
32
37
|
# string - Unique ID of the Session
|
33
38
|
def session_uuid
|
34
39
|
@attributes[:session_uuid]
|
data/lib/files.com/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: files.com
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.144
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|