trisulrp 1.5.6 → 1.5.7
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +6 -2
- data/VERSION +1 -1
- data/lib/trisulrp/protocol.rb +4 -0
- data/trisulrp.gemspec +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -2,8 +2,7 @@
|
|
2
2
|
|
3
3
|
== Trisul Remote Protocol
|
4
4
|
|
5
|
-
This gem allows you to automate incident response or network forensics tasks on the Trisul Network
|
6
|
-
|
5
|
+
This gem allows you to automate incident response or network forensics tasks on the Trisul Network Analytics platform.
|
7
6
|
|
8
7
|
|
9
8
|
Key Features :
|
@@ -13,6 +12,11 @@ Key Features :
|
|
13
12
|
* Easy to use
|
14
13
|
* Can do everything from getting statistics, flows, and pcaps
|
15
14
|
|
15
|
+
== Links
|
16
|
+
|
17
|
+
* TRP Documentation and Tutorials http://trisul.org/docs/trp/index.html
|
18
|
+
* Getting started tutorial http://trisul.org/docs/trp/trpgemsteps.html
|
19
|
+
* Github repo of sample scripts https://github.com/vivekrajan/trisul-scripts
|
16
20
|
|
17
21
|
|
18
22
|
== Contributing to trisulrp
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.5.
|
1
|
+
1.5.7
|
data/lib/trisulrp/protocol.rb
CHANGED
@@ -212,6 +212,8 @@ module TrisulRP::Protocol
|
|
212
212
|
req.key_session_activity_request = TRP::KeySessionActivityRequest.new(params)
|
213
213
|
when TRP::Message::Command::GREP_REQUEST
|
214
214
|
req.grep_request = TRP::GrepRequest.new(params)
|
215
|
+
when TRP::Message::Command::KEYSPACE_REQUEST
|
216
|
+
req.keyspace_request = TRP::KeySpaceRequest.new(params)
|
215
217
|
else
|
216
218
|
raise "Unknown TRP command ID"
|
217
219
|
end
|
@@ -306,6 +308,8 @@ module TrisulRP::Protocol
|
|
306
308
|
resp.key_session_activity_response
|
307
309
|
when TRP::Message::Command::GREP_RESPONSE
|
308
310
|
resp.grep_response
|
311
|
+
when TRP::Message::Command::KEYSPACE_RESPONSE
|
312
|
+
resp.keyspace_response
|
309
313
|
else
|
310
314
|
raise "Unknown TRP command ID"
|
311
315
|
end
|
data/trisulrp.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trisulrp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -158,7 +158,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
158
158
|
version: '0'
|
159
159
|
segments:
|
160
160
|
- 0
|
161
|
-
hash: -
|
161
|
+
hash: -1463049944485700067
|
162
162
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
163
163
|
none: false
|
164
164
|
requirements:
|