patronus_fati 0.8.0

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.
Files changed (90) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.rspec +2 -0
  4. data/.yardopts +1 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE +165 -0
  7. data/README.md +29 -0
  8. data/Rakefile +21 -0
  9. data/bin/patronus_fati +54 -0
  10. data/kismet_configs/pat_fat_startup.sh +3 -0
  11. data/kismet_configs/patronus_fati_kismet.conf +88 -0
  12. data/lib/patronus_fati/cap_struct.rb +97 -0
  13. data/lib/patronus_fati/connection.rb +85 -0
  14. data/lib/patronus_fati/consts.rb +85 -0
  15. data/lib/patronus_fati/data_mapper/crypt_flags.rb +83 -0
  16. data/lib/patronus_fati/data_mapper/null_table_prefix.rb +7 -0
  17. data/lib/patronus_fati/data_models/access_point.rb +74 -0
  18. data/lib/patronus_fati/data_models/alert.rb +24 -0
  19. data/lib/patronus_fati/data_models/ap_frequency.rb +14 -0
  20. data/lib/patronus_fati/data_models/ap_signal.rb +12 -0
  21. data/lib/patronus_fati/data_models/client.rb +69 -0
  22. data/lib/patronus_fati/data_models/client_frequency.rb +14 -0
  23. data/lib/patronus_fati/data_models/client_signal.rb +12 -0
  24. data/lib/patronus_fati/data_models/common.rb +49 -0
  25. data/lib/patronus_fati/data_models/connection.rb +48 -0
  26. data/lib/patronus_fati/data_models/mac.rb +48 -0
  27. data/lib/patronus_fati/data_models/probe.rb +13 -0
  28. data/lib/patronus_fati/data_models/ssid.rb +35 -0
  29. data/lib/patronus_fati/data_observers/access_point_observer.rb +53 -0
  30. data/lib/patronus_fati/data_observers/alert_observer.rb +12 -0
  31. data/lib/patronus_fati/data_observers/client_observer.rb +52 -0
  32. data/lib/patronus_fati/data_observers/connection_observer.rb +66 -0
  33. data/lib/patronus_fati/data_observers/probe_observer.rb +11 -0
  34. data/lib/patronus_fati/data_observers/ssid_observer.rb +53 -0
  35. data/lib/patronus_fati/event_handler.rb +27 -0
  36. data/lib/patronus_fati/factory_base.rb +56 -0
  37. data/lib/patronus_fati/message_models/ack.rb +5 -0
  38. data/lib/patronus_fati/message_models/alert.rb +10 -0
  39. data/lib/patronus_fati/message_models/battery.rb +6 -0
  40. data/lib/patronus_fati/message_models/bssid.rb +43 -0
  41. data/lib/patronus_fati/message_models/bssidsrc.rb +15 -0
  42. data/lib/patronus_fati/message_models/btscandev.rb +11 -0
  43. data/lib/patronus_fati/message_models/capability.rb +5 -0
  44. data/lib/patronus_fati/message_models/channel.rb +13 -0
  45. data/lib/patronus_fati/message_models/client.rb +45 -0
  46. data/lib/patronus_fati/message_models/clisrc.rb +17 -0
  47. data/lib/patronus_fati/message_models/clitag.rb +6 -0
  48. data/lib/patronus_fati/message_models/common.rb +15 -0
  49. data/lib/patronus_fati/message_models/critfail.rb +5 -0
  50. data/lib/patronus_fati/message_models/error.rb +6 -0
  51. data/lib/patronus_fati/message_models/gps.rb +6 -0
  52. data/lib/patronus_fati/message_models/info.rb +11 -0
  53. data/lib/patronus_fati/message_models/kismet.rb +8 -0
  54. data/lib/patronus_fati/message_models/nettag.rb +6 -0
  55. data/lib/patronus_fati/message_models/packet.rb +10 -0
  56. data/lib/patronus_fati/message_models/plugin.rb +8 -0
  57. data/lib/patronus_fati/message_models/protocols.rb +5 -0
  58. data/lib/patronus_fati/message_models/remove.rb +6 -0
  59. data/lib/patronus_fati/message_models/source.rb +10 -0
  60. data/lib/patronus_fati/message_models/spectrum.rb +8 -0
  61. data/lib/patronus_fati/message_models/ssid.rb +25 -0
  62. data/lib/patronus_fati/message_models/status.rb +5 -0
  63. data/lib/patronus_fati/message_models/string.rb +6 -0
  64. data/lib/patronus_fati/message_models/terminate.rb +5 -0
  65. data/lib/patronus_fati/message_models/time.rb +6 -0
  66. data/lib/patronus_fati/message_models/trackinfo.rb +8 -0
  67. data/lib/patronus_fati/message_models/wepkey.rb +6 -0
  68. data/lib/patronus_fati/message_models.rb +39 -0
  69. data/lib/patronus_fati/message_parser.rb +44 -0
  70. data/lib/patronus_fati/message_processor/alert.rb +15 -0
  71. data/lib/patronus_fati/message_processor/bssid.rb +47 -0
  72. data/lib/patronus_fati/message_processor/capability.rb +24 -0
  73. data/lib/patronus_fati/message_processor/client.rb +55 -0
  74. data/lib/patronus_fati/message_processor/critfail.rb +8 -0
  75. data/lib/patronus_fati/message_processor/error.rb +7 -0
  76. data/lib/patronus_fati/message_processor/protocols.rb +7 -0
  77. data/lib/patronus_fati/message_processor/ssid.rb +48 -0
  78. data/lib/patronus_fati/message_processor.rb +52 -0
  79. data/lib/patronus_fati/version.rb +3 -0
  80. data/lib/patronus_fati.rb +68 -0
  81. data/patronus_fati.gemspec +41 -0
  82. data/spec/data_models/access_point_spec.rb +26 -0
  83. data/spec/data_models/alert_spec.rb +12 -0
  84. data/spec/data_models/client_spec.rb +25 -0
  85. data/spec/data_models/connection_spec.rb +86 -0
  86. data/spec/data_models/mac_spec.rb +26 -0
  87. data/spec/patronus_fati_spec.rb +13 -0
  88. data/spec/spec_helper.rb +71 -0
  89. data/wrapper.rb +19 -0
  90. metadata +393 -0
@@ -0,0 +1,71 @@
1
+
2
+ base_path = File.expand_path(File.join(File.basename(__FILE__), '..', 'lib'))
3
+ $LOAD_PATH.unshift(base_path) unless $LOAD_PATH.include?(base_path)
4
+
5
+ require 'rspec'
6
+ require 'database_cleaner'
7
+ require 'dm-rspec'
8
+ require 'dm-transactions'
9
+ require 'simplecov'
10
+
11
+ SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter
12
+ SimpleCov.add_filter "/spec/"
13
+ SimpleCov.add_filter do |source_file|
14
+ source_file.lines.count < 3
15
+ end
16
+
17
+ SimpleCov.add_group "Internal Data Models", "data_models"
18
+ SimpleCov.add_group "Internal Data Observers", "data_observers"
19
+ SimpleCov.add_group "Server Message Models", "message_models"
20
+ SimpleCov.add_group "Message Processors", "message_processors"
21
+
22
+ SimpleCov.start
23
+
24
+ require 'patronus_fati'
25
+
26
+ # Setup the database in memory
27
+ DataMapper.setup(:default, 'sqlite::memory:')
28
+ DataMapper.finalize
29
+ DataMapper.auto_upgrade!
30
+
31
+ RSpec.configure do |config|
32
+ config.include(DataMapper::Matchers)
33
+
34
+ config.before(:suite) do
35
+ DatabaseCleaner.strategy = :transaction
36
+ DatabaseCleaner.clean_with(:truncation)
37
+ end
38
+
39
+ config.around(:each) do |example|
40
+ DatabaseCleaner.cleaning do
41
+ example.run
42
+ end
43
+ end
44
+
45
+ config.expect_with :rspec do |expectations|
46
+ expectations.include_chain_clauses_in_custom_matcher_descriptions = true
47
+ end
48
+
49
+ config.mock_with :rspec do |mocks|
50
+ mocks.verify_partial_doubles = true
51
+ mocks.verify_doubled_constant_names = true
52
+ end
53
+
54
+ config.filter_run :focus
55
+ config.run_all_when_everything_filtered = true
56
+ config.disable_monkey_patching!
57
+
58
+ # Normally I'd run with this on, but datamapper uses instance variables
59
+ # without intializing them quite a bit.
60
+ config.warnings = false
61
+
62
+ if config.files_to_run.one?
63
+ config.default_formatter = 'doc'
64
+ end
65
+
66
+ config.profile_examples = 3
67
+ config.order = :random
68
+
69
+ Kernel.srand(config.seed)
70
+ end
71
+
data/wrapper.rb ADDED
@@ -0,0 +1,19 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ STDIN.sync = true
4
+ STDOUT.sync = true
5
+
6
+ require 'json'
7
+
8
+ base_msg = {
9
+ 'data' => nil,
10
+ 'options' => {},
11
+ 'source' => 'patronus_fati',
12
+ 'type' => 'wireless',
13
+ 'version' => '0.8.0'
14
+ }
15
+
16
+ while (line = STDIN.readline)
17
+ puts JSON.generate(base_msg.merge('data' => JSON.parse(line)))
18
+ STDOUT.flush
19
+ end
metadata ADDED
@@ -0,0 +1,393 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: patronus_fati
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.8.0
5
+ platform: ruby
6
+ authors:
7
+ - Sam Stelfox
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-03-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: dm-constraints
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: dm-core
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: dm-migrations
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: dm-observer
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: dm-sqlite-adapter
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: dm-timestamps
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: dm-validations
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: louis
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '2.0'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '2.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: database_cleaner
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: dm-rspec
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: dm-transactions
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: rake
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: '0'
174
+ type: :development
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ - !ruby/object:Gem::Dependency
182
+ name: rdoc
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: '0'
188
+ type: :development
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ - !ruby/object:Gem::Dependency
196
+ name: pry
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: '0'
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: '0'
209
+ - !ruby/object:Gem::Dependency
210
+ name: redcarpet
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
216
+ type: :development
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ - !ruby/object:Gem::Dependency
224
+ name: rspec
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ version: '0'
230
+ type: :development
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ">="
235
+ - !ruby/object:Gem::Version
236
+ version: '0'
237
+ - !ruby/object:Gem::Dependency
238
+ name: simplecov
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ">="
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
244
+ type: :development
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - ">="
249
+ - !ruby/object:Gem::Version
250
+ version: '0'
251
+ - !ruby/object:Gem::Dependency
252
+ name: yard
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - ">="
256
+ - !ruby/object:Gem::Version
257
+ version: '0'
258
+ type: :development
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ">="
263
+ - !ruby/object:Gem::Version
264
+ version: '0'
265
+ description: " A ruby implementation of the Kismet client protocol. "
266
+ email:
267
+ - sstelfox@bedroomprogrammers.net
268
+ executables:
269
+ - patronus_fati
270
+ extensions: []
271
+ extra_rdoc_files: []
272
+ files:
273
+ - ".gitignore"
274
+ - ".rspec"
275
+ - ".yardopts"
276
+ - Gemfile
277
+ - LICENSE
278
+ - README.md
279
+ - Rakefile
280
+ - bin/patronus_fati
281
+ - kismet_configs/pat_fat_startup.sh
282
+ - kismet_configs/patronus_fati_kismet.conf
283
+ - lib/patronus_fati.rb
284
+ - lib/patronus_fati/cap_struct.rb
285
+ - lib/patronus_fati/connection.rb
286
+ - lib/patronus_fati/consts.rb
287
+ - lib/patronus_fati/data_mapper/crypt_flags.rb
288
+ - lib/patronus_fati/data_mapper/null_table_prefix.rb
289
+ - lib/patronus_fati/data_models/access_point.rb
290
+ - lib/patronus_fati/data_models/alert.rb
291
+ - lib/patronus_fati/data_models/ap_frequency.rb
292
+ - lib/patronus_fati/data_models/ap_signal.rb
293
+ - lib/patronus_fati/data_models/client.rb
294
+ - lib/patronus_fati/data_models/client_frequency.rb
295
+ - lib/patronus_fati/data_models/client_signal.rb
296
+ - lib/patronus_fati/data_models/common.rb
297
+ - lib/patronus_fati/data_models/connection.rb
298
+ - lib/patronus_fati/data_models/mac.rb
299
+ - lib/patronus_fati/data_models/probe.rb
300
+ - lib/patronus_fati/data_models/ssid.rb
301
+ - lib/patronus_fati/data_observers/access_point_observer.rb
302
+ - lib/patronus_fati/data_observers/alert_observer.rb
303
+ - lib/patronus_fati/data_observers/client_observer.rb
304
+ - lib/patronus_fati/data_observers/connection_observer.rb
305
+ - lib/patronus_fati/data_observers/probe_observer.rb
306
+ - lib/patronus_fati/data_observers/ssid_observer.rb
307
+ - lib/patronus_fati/event_handler.rb
308
+ - lib/patronus_fati/factory_base.rb
309
+ - lib/patronus_fati/message_models.rb
310
+ - lib/patronus_fati/message_models/ack.rb
311
+ - lib/patronus_fati/message_models/alert.rb
312
+ - lib/patronus_fati/message_models/battery.rb
313
+ - lib/patronus_fati/message_models/bssid.rb
314
+ - lib/patronus_fati/message_models/bssidsrc.rb
315
+ - lib/patronus_fati/message_models/btscandev.rb
316
+ - lib/patronus_fati/message_models/capability.rb
317
+ - lib/patronus_fati/message_models/channel.rb
318
+ - lib/patronus_fati/message_models/client.rb
319
+ - lib/patronus_fati/message_models/clisrc.rb
320
+ - lib/patronus_fati/message_models/clitag.rb
321
+ - lib/patronus_fati/message_models/common.rb
322
+ - lib/patronus_fati/message_models/critfail.rb
323
+ - lib/patronus_fati/message_models/error.rb
324
+ - lib/patronus_fati/message_models/gps.rb
325
+ - lib/patronus_fati/message_models/info.rb
326
+ - lib/patronus_fati/message_models/kismet.rb
327
+ - lib/patronus_fati/message_models/nettag.rb
328
+ - lib/patronus_fati/message_models/packet.rb
329
+ - lib/patronus_fati/message_models/plugin.rb
330
+ - lib/patronus_fati/message_models/protocols.rb
331
+ - lib/patronus_fati/message_models/remove.rb
332
+ - lib/patronus_fati/message_models/source.rb
333
+ - lib/patronus_fati/message_models/spectrum.rb
334
+ - lib/patronus_fati/message_models/ssid.rb
335
+ - lib/patronus_fati/message_models/status.rb
336
+ - lib/patronus_fati/message_models/string.rb
337
+ - lib/patronus_fati/message_models/terminate.rb
338
+ - lib/patronus_fati/message_models/time.rb
339
+ - lib/patronus_fati/message_models/trackinfo.rb
340
+ - lib/patronus_fati/message_models/wepkey.rb
341
+ - lib/patronus_fati/message_parser.rb
342
+ - lib/patronus_fati/message_processor.rb
343
+ - lib/patronus_fati/message_processor/alert.rb
344
+ - lib/patronus_fati/message_processor/bssid.rb
345
+ - lib/patronus_fati/message_processor/capability.rb
346
+ - lib/patronus_fati/message_processor/client.rb
347
+ - lib/patronus_fati/message_processor/critfail.rb
348
+ - lib/patronus_fati/message_processor/error.rb
349
+ - lib/patronus_fati/message_processor/protocols.rb
350
+ - lib/patronus_fati/message_processor/ssid.rb
351
+ - lib/patronus_fati/version.rb
352
+ - patronus_fati.gemspec
353
+ - spec/data_models/access_point_spec.rb
354
+ - spec/data_models/alert_spec.rb
355
+ - spec/data_models/client_spec.rb
356
+ - spec/data_models/connection_spec.rb
357
+ - spec/data_models/mac_spec.rb
358
+ - spec/patronus_fati_spec.rb
359
+ - spec/spec_helper.rb
360
+ - wrapper.rb
361
+ homepage: ''
362
+ licenses:
363
+ - LGPL
364
+ metadata: {}
365
+ post_install_message:
366
+ rdoc_options: []
367
+ require_paths:
368
+ - lib
369
+ required_ruby_version: !ruby/object:Gem::Requirement
370
+ requirements:
371
+ - - ">="
372
+ - !ruby/object:Gem::Version
373
+ version: '0'
374
+ required_rubygems_version: !ruby/object:Gem::Requirement
375
+ requirements:
376
+ - - ">="
377
+ - !ruby/object:Gem::Version
378
+ version: '0'
379
+ requirements: []
380
+ rubyforge_project:
381
+ rubygems_version: 2.4.3
382
+ signing_key:
383
+ specification_version: 4
384
+ summary: A ruby implementation of the Kismet client protocol.
385
+ test_files:
386
+ - spec/data_models/access_point_spec.rb
387
+ - spec/data_models/alert_spec.rb
388
+ - spec/data_models/client_spec.rb
389
+ - spec/data_models/connection_spec.rb
390
+ - spec/data_models/mac_spec.rb
391
+ - spec/patronus_fati_spec.rb
392
+ - spec/spec_helper.rb
393
+ has_rdoc: