honeycomb 0.0.3 → 0.0.4

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 (46) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/Gemfile +3 -21
  4. data/LICENSE.txt +22 -675
  5. data/README.md +29 -0
  6. data/Rakefile +1 -51
  7. data/honeycomb.gemspec +23 -0
  8. data/lib/honeycomb.rb +4 -23
  9. data/lib/honeycomb/version.rb +3 -0
  10. metadata +54 -214
  11. data/.document +0 -5
  12. data/.rspec +0 -1
  13. data/Gemfile.lock +0 -75
  14. data/README.rdoc +0 -72
  15. data/VERSION +0 -1
  16. data/data/binaries/example_data +0 -0
  17. data/data/logsql/honeypot.sqlite +0 -0
  18. data/etc/config.yml.example +0 -11
  19. data/lib/honeycomb/database.rb +0 -20
  20. data/lib/honeycomb/database/interact.rb +0 -71
  21. data/lib/honeycomb/default_setup.rb +0 -28
  22. data/lib/honeycomb/environment.rb +0 -64
  23. data/lib/honeycomb/honeypot.rb +0 -20
  24. data/lib/honeycomb/honeypot/manage.rb +0 -204
  25. data/lib/honeycomb/interact.rb +0 -20
  26. data/lib/honeycomb/model.rb +0 -82
  27. data/lib/honeycomb/model/connections.rb +0 -77
  28. data/lib/honeycomb/model/dcerpcbinds.rb +0 -47
  29. data/lib/honeycomb/model/dcerpcrequests.rb +0 -46
  30. data/lib/honeycomb/model/dcerpcserviceops.rb +0 -48
  31. data/lib/honeycomb/model/dcerpcservices.rb +0 -44
  32. data/lib/honeycomb/model/downloads.rb +0 -47
  33. data/lib/honeycomb/model/emu_profiles.rb +0 -44
  34. data/lib/honeycomb/model/emu_services.rb +0 -44
  35. data/lib/honeycomb/model/logins.rb +0 -46
  36. data/lib/honeycomb/model/mssql_commands.rb +0 -46
  37. data/lib/honeycomb/model/mssql_fingerprints.rb +0 -48
  38. data/lib/honeycomb/model/offers.rb +0 -44
  39. data/lib/honeycomb/model/p0fs.rb +0 -58
  40. data/lib/honeycomb/model/resolves.rb +0 -48
  41. data/lib/honeycomb/model/virustotals.rb +0 -47
  42. data/lib/honeycomb/model/virustotalscans.rb +0 -46
  43. data/scripts/honeycomb_libpath.rb +0 -2
  44. data/spec/honeycomb_spec.rb +0 -7
  45. data/spec/spec_helper.rb +0 -12
  46. data/tasks/irb.rake +0 -8
@@ -0,0 +1,29 @@
1
+ # Honeycomb
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'honeycomb'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install honeycomb
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it ( https://github.com/[my-github-username]/honeycomb/fork )
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create a new Pull Request
data/Rakefile CHANGED
@@ -1,52 +1,2 @@
1
- # encoding: utf-8
1
+ require "bundler/gem_tasks"
2
2
 
3
- require 'rubygems'
4
- require 'bundler'
5
- require 'rake'
6
-
7
- begin
8
- Bundler.setup(:default, :development)
9
- rescue Bundler::BundlerError => e
10
- $stderr.puts e.message
11
- $stderr.puts "Run `bundle install` to install missing gems"
12
- exit e.status_code
13
- end
14
-
15
- Dir["tasks/*.rake"].each { |taskfile| load taskfile }
16
-
17
- require 'jeweler'
18
- Jeweler::Tasks.new do |gem|
19
- # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
20
- gem.name = "honeycomb"
21
- gem.homepage = "http://github.com/spiderlabs/honeycomb"
22
- gem.license = "GNU v3"
23
- gem.summary = %Q{Tool to manage and analyze data from the Dionaea Honeypot Project}
24
- gem.description = %Q{Tool to manage and analyze data from the Dionaea Honeypot Project}
25
- gem.email = "jgrunzweig at trustwave dot com"
26
- gem.authors = ["Josh Grunzweig"]
27
- # dependencies defined in Gemfile
28
- end
29
- Jeweler::RubygemsDotOrgTasks.new
30
-
31
- require 'rspec/core'
32
- require 'rspec/core/rake_task'
33
- RSpec::Core::RakeTask.new(:spec) do |spec|
34
- spec.pattern = FileList['spec/**/*_spec.rb']
35
- end
36
-
37
- RSpec::Core::RakeTask.new(:rcov) do |spec|
38
- spec.pattern = 'spec/**/*_spec.rb'
39
- spec.rcov = true
40
- end
41
-
42
- task :default => :spec
43
-
44
- require 'rdoc/task'
45
- Rake::RDocTask.new do |rdoc|
46
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
47
-
48
- rdoc.rdoc_dir = 'rdoc'
49
- rdoc.title = "honeycomb #{version}"
50
- rdoc.rdoc_files.include('README*')
51
- rdoc.rdoc_files.include('lib/**/*.rb')
52
- end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'honeycomb/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "honeycomb"
8
+ spec.version = Honeycomb::VERSION
9
+ spec.authors = ["Alexander Dimitriyadi"]
10
+ spec.email = ["alexander.dimitriyadi@gmail.com"]
11
+ spec.summary = %q{Build hexagonal applications in ruby}
12
+ spec.description = %q{A framework to enable developers to build encapsulated business logic in the hexagonal style of architecture.}
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.6"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -1,24 +1,5 @@
1
- # honeycomb - Tool to manage and analyze data from the Dionaea Honeypot
2
- # Project
3
- # Josh Grunzweig
4
- # Copyright (C) 2011 Trustwave Holdings
5
- #
6
- # This program is free software: you can redistribute it and/or modify it
7
- # under the terms of the GNU General Public License as published by the
8
- # Free Software Foundation, either version 3 of the License, or (at your
9
- # option) any later version.
10
- #
11
- # This program is distributed in the hope that it will be useful, but
12
- # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13
- # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
- # for more details.
15
- #
16
- # You should have received a copy of the GNU General Public License along
17
- # with this program. If not, see <http://www.gnu.org/licenses/>.
18
- #
1
+ require "honeycomb/version"
19
2
 
20
- require 'honeycomb/environment'
21
- require 'honeycomb/default_setup'
22
- require 'honeycomb/model'
23
- require 'honeycomb/honeypot'
24
- require 'honeycomb/database'
3
+ module Honeycomb
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Honeycomb
2
+ VERSION = "0.0.4"
3
+ end
metadata CHANGED
@@ -1,241 +1,81 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: honeycomb
3
- version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.0.3
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.4
6
5
  platform: ruby
7
- authors:
8
- - Josh Grunzweig
6
+ authors:
7
+ - Alexander Dimitriyadi
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
-
13
- date: 2011-07-15 00:00:00 -05:00
14
- default_executable:
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
17
- name: rspec
18
- requirement: &id001 !ruby/object:Gem::Requirement
19
- none: false
20
- requirements:
21
- - - ~>
22
- - !ruby/object:Gem::Version
23
- version: 2.3.0
24
- type: :development
25
- prerelease: false
26
- version_requirements: *id001
27
- - !ruby/object:Gem::Dependency
11
+ date: 2015-02-26 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
28
14
  name: bundler
29
- requirement: &id002 !ruby/object:Gem::Requirement
30
- none: false
31
- requirements:
32
- - - ~>
33
- - !ruby/object:Gem::Version
34
- version: 1.0.0
35
- type: :development
36
- prerelease: false
37
- version_requirements: *id002
38
- - !ruby/object:Gem::Dependency
39
- name: jeweler
40
- requirement: &id003 !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ~>
44
- - !ruby/object:Gem::Version
45
- version: 1.6.2
46
- type: :development
47
- prerelease: false
48
- version_requirements: *id003
49
- - !ruby/object:Gem::Dependency
50
- name: rcov
51
- requirement: &id004 !ruby/object:Gem::Requirement
52
- none: false
53
- requirements:
54
- - - ">="
55
- - !ruby/object:Gem::Version
56
- version: "0"
57
- type: :development
58
- prerelease: false
59
- version_requirements: *id004
60
- - !ruby/object:Gem::Dependency
61
- name: net-ssh
62
- requirement: &id005 !ruby/object:Gem::Requirement
63
- none: false
64
- requirements:
65
- - - ">="
66
- - !ruby/object:Gem::Version
67
- version: "0"
68
- type: :development
69
- prerelease: false
70
- version_requirements: *id005
71
- - !ruby/object:Gem::Dependency
72
- name: net-scp
73
- requirement: &id006 !ruby/object:Gem::Requirement
74
- none: false
75
- requirements:
76
- - - ">="
77
- - !ruby/object:Gem::Version
78
- version: "0"
79
- type: :development
80
- prerelease: false
81
- version_requirements: *id006
82
- - !ruby/object:Gem::Dependency
83
- name: dm-core
84
- requirement: &id007 !ruby/object:Gem::Requirement
85
- none: false
86
- requirements:
87
- - - ">="
88
- - !ruby/object:Gem::Version
89
- version: "0"
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
90
20
  type: :development
91
21
  prerelease: false
92
- version_requirements: *id007
93
- - !ruby/object:Gem::Dependency
94
- name: dm-types
95
- requirement: &id008 !ruby/object:Gem::Requirement
96
- none: false
97
- requirements:
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
98
31
  - - ">="
99
- - !ruby/object:Gem::Version
100
- version: "0"
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
101
34
  type: :development
102
35
  prerelease: false
103
- version_requirements: *id008
104
- - !ruby/object:Gem::Dependency
105
- name: dm-transactions
106
- requirement: &id009 !ruby/object:Gem::Requirement
107
- none: false
108
- requirements:
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
109
38
  - - ">="
110
- - !ruby/object:Gem::Version
111
- version: "0"
112
- type: :development
113
- prerelease: false
114
- version_requirements: *id009
115
- - !ruby/object:Gem::Dependency
116
- name: dm-validations
117
- requirement: &id010 !ruby/object:Gem::Requirement
118
- none: false
119
- requirements:
120
- - - ">="
121
- - !ruby/object:Gem::Version
122
- version: "0"
123
- type: :development
124
- prerelease: false
125
- version_requirements: *id010
126
- - !ruby/object:Gem::Dependency
127
- name: dm-serializer
128
- requirement: &id011 !ruby/object:Gem::Requirement
129
- none: false
130
- requirements:
131
- - - ">="
132
- - !ruby/object:Gem::Version
133
- version: "0"
134
- type: :development
135
- prerelease: false
136
- version_requirements: *id011
137
- - !ruby/object:Gem::Dependency
138
- name: dm-timestamps
139
- requirement: &id012 !ruby/object:Gem::Requirement
140
- none: false
141
- requirements:
142
- - - ">="
143
- - !ruby/object:Gem::Version
144
- version: "0"
145
- type: :development
146
- prerelease: false
147
- version_requirements: *id012
148
- - !ruby/object:Gem::Dependency
149
- name: dm-sqlite-adapter
150
- requirement: &id013 !ruby/object:Gem::Requirement
151
- none: false
152
- requirements:
153
- - - ">="
154
- - !ruby/object:Gem::Version
155
- version: "0"
156
- type: :development
157
- prerelease: false
158
- version_requirements: *id013
159
- description: Tool to manage and analyze data from the Dionaea Honeypot Project
160
- email: jgrunzweig at trustwave dot com
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: A framework to enable developers to build encapsulated business logic
42
+ in the hexagonal style of architecture.
43
+ email:
44
+ - alexander.dimitriyadi@gmail.com
161
45
  executables: []
162
-
163
46
  extensions: []
164
-
165
- extra_rdoc_files:
166
- - LICENSE.txt
167
- - README.rdoc
168
- files:
169
- - .document
170
- - .rspec
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".gitignore"
171
50
  - Gemfile
172
- - Gemfile.lock
173
51
  - LICENSE.txt
174
- - README.rdoc
52
+ - README.md
175
53
  - Rakefile
176
- - VERSION
177
- - data/binaries/example_data
178
- - data/logsql/honeypot.sqlite
179
- - etc/config.yml.example
54
+ - honeycomb.gemspec
180
55
  - lib/honeycomb.rb
181
- - lib/honeycomb/database.rb
182
- - lib/honeycomb/database/interact.rb
183
- - lib/honeycomb/default_setup.rb
184
- - lib/honeycomb/environment.rb
185
- - lib/honeycomb/honeypot.rb
186
- - lib/honeycomb/honeypot/manage.rb
187
- - lib/honeycomb/interact.rb
188
- - lib/honeycomb/model.rb
189
- - lib/honeycomb/model/connections.rb
190
- - lib/honeycomb/model/dcerpcbinds.rb
191
- - lib/honeycomb/model/dcerpcrequests.rb
192
- - lib/honeycomb/model/dcerpcserviceops.rb
193
- - lib/honeycomb/model/dcerpcservices.rb
194
- - lib/honeycomb/model/downloads.rb
195
- - lib/honeycomb/model/emu_profiles.rb
196
- - lib/honeycomb/model/emu_services.rb
197
- - lib/honeycomb/model/logins.rb
198
- - lib/honeycomb/model/mssql_commands.rb
199
- - lib/honeycomb/model/mssql_fingerprints.rb
200
- - lib/honeycomb/model/offers.rb
201
- - lib/honeycomb/model/p0fs.rb
202
- - lib/honeycomb/model/resolves.rb
203
- - lib/honeycomb/model/virustotals.rb
204
- - lib/honeycomb/model/virustotalscans.rb
205
- - scripts/honeycomb_libpath.rb
206
- - spec/honeycomb_spec.rb
207
- - spec/spec_helper.rb
208
- - tasks/irb.rake
209
- has_rdoc: true
210
- homepage: http://github.com/spiderlabs/honeycomb
211
- licenses:
212
- - GNU v3
56
+ - lib/honeycomb/version.rb
57
+ homepage: ''
58
+ licenses:
59
+ - MIT
60
+ metadata: {}
213
61
  post_install_message:
214
62
  rdoc_options: []
215
-
216
- require_paths:
63
+ require_paths:
217
64
  - lib
218
- required_ruby_version: !ruby/object:Gem::Requirement
219
- none: false
220
- requirements:
65
+ required_ruby_version: !ruby/object:Gem::Requirement
66
+ requirements:
221
67
  - - ">="
222
- - !ruby/object:Gem::Version
223
- hash: -293782617342564056
224
- segments:
225
- - 0
226
- version: "0"
227
- required_rubygems_version: !ruby/object:Gem::Requirement
228
- none: false
229
- requirements:
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ required_rubygems_version: !ruby/object:Gem::Requirement
71
+ requirements:
230
72
  - - ">="
231
- - !ruby/object:Gem::Version
232
- version: "0"
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
233
75
  requirements: []
234
-
235
76
  rubyforge_project:
236
- rubygems_version: 1.6.2
77
+ rubygems_version: 2.2.2
237
78
  signing_key:
238
- specification_version: 3
239
- summary: Tool to manage and analyze data from the Dionaea Honeypot Project
79
+ specification_version: 4
80
+ summary: Build hexagonal applications in ruby
240
81
  test_files: []
241
-
data/.document DELETED
@@ -1,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt
data/.rspec DELETED
@@ -1 +0,0 @@
1
- --color
@@ -1,75 +0,0 @@
1
- GEM
2
- remote: http://rubygems.org/
3
- specs:
4
- addressable (2.2.6)
5
- bcrypt-ruby (2.1.4)
6
- data_objects (0.10.6)
7
- addressable (~> 2.1)
8
- diff-lcs (1.1.2)
9
- dm-core (1.1.0)
10
- addressable (~> 2.2.4)
11
- dm-do-adapter (1.1.0)
12
- data_objects (~> 0.10.2)
13
- dm-core (~> 1.1.0)
14
- dm-serializer (1.1.0)
15
- dm-core (~> 1.1.0)
16
- fastercsv (~> 1.5.4)
17
- json (~> 1.4.6)
18
- dm-sqlite-adapter (1.1.0)
19
- dm-do-adapter (~> 1.1.0)
20
- do_sqlite3 (~> 0.10.2)
21
- dm-timestamps (1.1.0)
22
- dm-core (~> 1.1.0)
23
- dm-transactions (1.1.0)
24
- dm-core (~> 1.1.0)
25
- dm-types (1.1.0)
26
- bcrypt-ruby (~> 2.1.4)
27
- dm-core (~> 1.1.0)
28
- fastercsv (~> 1.5.4)
29
- json (~> 1.4.6)
30
- stringex (~> 1.2.0)
31
- uuidtools (~> 2.1.2)
32
- dm-validations (1.1.0)
33
- dm-core (~> 1.1.0)
34
- do_sqlite3 (0.10.6)
35
- data_objects (= 0.10.6)
36
- fastercsv (1.5.4)
37
- git (1.2.5)
38
- jeweler (1.6.2)
39
- bundler (~> 1.0)
40
- git (>= 1.2.5)
41
- rake
42
- json (1.4.6)
43
- net-scp (1.0.4)
44
- net-ssh (>= 1.99.1)
45
- net-ssh (2.1.4)
46
- rake (0.9.2)
47
- rcov (0.9.9)
48
- rspec (2.3.0)
49
- rspec-core (~> 2.3.0)
50
- rspec-expectations (~> 2.3.0)
51
- rspec-mocks (~> 2.3.0)
52
- rspec-core (2.3.1)
53
- rspec-expectations (2.3.0)
54
- diff-lcs (~> 1.1.2)
55
- rspec-mocks (2.3.0)
56
- stringex (1.2.1)
57
- uuidtools (2.1.2)
58
-
59
- PLATFORMS
60
- ruby
61
-
62
- DEPENDENCIES
63
- bundler (~> 1.0.0)
64
- dm-core
65
- dm-serializer
66
- dm-sqlite-adapter
67
- dm-timestamps
68
- dm-transactions
69
- dm-types
70
- dm-validations
71
- jeweler (~> 1.6.2)
72
- net-scp
73
- net-ssh
74
- rcov
75
- rspec (~> 2.3.0)