recog 1.0.5 → 1.0.6

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 CHANGED
@@ -1,7 +1,15 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 6922a5ca66788a092e43f9ddc864fcab0dca9588
4
- data.tar.gz: fa61c65c715b7ead541f77202552dc4eda374ccc
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ OTUzZjUzN2M1MmQ2YmI4NDk3ZTU2Y2UwOWE3OWZiNjgyMGE3NmQ3NA==
5
+ data.tar.gz: !binary |-
6
+ MWExZTRmNzk5Y2I5ZTg0NzkxYjE2ZmFlMDhjYWM2OGFjMzBlYzhhNg==
5
7
  SHA512:
6
- metadata.gz: d8d7e46ac8d54bc54bbc0474e26c97106810e690dbd1749ca313221dd6470f767d93713e114ff7d94540eb4f454950b7ab730dcf6ae63a013c2dd840fb98d2c1
7
- data.tar.gz: b4facaf26e9fd6a617c38b719ecdb5056fdfdef0d306fb55c22eb819f0c032b1b61e8b743233489e09322cf0b1d4c19f303658db9571d0972f594244941d8fe1
8
+ metadata.gz: !binary |-
9
+ NDU0MDlkYWFlYzBkOWMzODg5YzMyNGMxYTM2NDU1ZWJkNzg4OWJhYThkZTFi
10
+ YWI5NmRmY2E3MDNlMTVhMTllYjU2M2ZhMGM2MjNkN2E1OGI3YjE3ZGM5YzI1
11
+ MmFmNDdiNDdlMTY3NmMwMjhlMzgxZGY2ZGUwYTU0YzA2NzIxOGM=
12
+ data.tar.gz: !binary |-
13
+ NmY1NzA2NzVjMmIwOTA1OWM1N2E5NmE1NGFhYmRlMjRmYmQzNWY3ZDBiZjhi
14
+ NjI0ZTA5NDMyOTI3ZmUzMGVmOGRmZTQ4MjFjM2M4ZDI0MWEwNmQ5NDU0YTVj
15
+ NmI3MGQxNGI5MWQxYjU5ZjA0NjAwZTViYTcxNjVlYjBmNmM3ZGY=
data/.gitignore CHANGED
@@ -1,6 +1,7 @@
1
1
  .yardoc
2
2
  coverage/
3
3
  doc/
4
+ pkg/
4
5
 
5
6
  /Gemfile.lock
6
7
 
data/.travis.yml CHANGED
@@ -1,7 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.2
4
- - 2.0.0
3
+ - 2.1.4
5
4
  - 1.9.3
6
5
  - jruby
7
6
  matrix:
data/CONTRIBUTING.md CHANGED
@@ -1,13 +1,33 @@
1
1
  # Contributing to Recog
2
2
 
3
- Recog uses a model nearly identical to that of [Metasploit](https://github.com/rapid7/metasploit-framework) as outlined [here](https://github.com/rapid7/metasploit-framework/wiki/Setting-Up-a-Metasploit-Development-Environment),
4
- at least from a ```git``` perspective. If you've been through that
5
- process (or, even better, you've been through it many times with many
6
- people), you can do exactly what you did for Metasploit but with Recog and ignore the rest of this document.
3
+ The users and maintainers of Recog would greatly appreciate any contributions
4
+ you can make to the project. These contributions typically come in the form of
5
+ filed bugs/issues or pull requests (PRs). These contributions routinely result
6
+ in new versions of the [recog gem](https://rubygems.org/gems/recog) and the
7
+ [recog release](https://github.com/rapid7/recog/releases) to be released. The
8
+ process for each is outlined below.
9
+
10
+ ## Contributing Issues / Bug Reports
11
+
12
+ If you encounter any bugs or problems with Recog, please file them
13
+ [here](https://github.com/rapid7/recog/issues/new), providing as much detail as
14
+ possible. If the bug is straight-forward enough and you understand the fix for
15
+ the bug well enough, you may take the simpler, less-paperwork route and simply
16
+ fill a PR with the fix and the necessary details.
17
+
18
+ ## Contributing Code
19
+
20
+ Recog uses a model nearly identical to that of
21
+ [Metasploit](https://github.com/rapid7/metasploit-framework) as outlined
22
+ [here](https://github.com/rapid7/metasploit-framework/wiki/Setting-Up-a-Metasploit-Development-Environment),
23
+ at least from a ```git``` perspective. If you've been through that process
24
+ (or, even better, you've been through it many times with many people), you can
25
+ do exactly what you did for Metasploit but with Recog and ignore the rest of
26
+ this document.
7
27
 
8
28
  On the other hand, if you haven't, read on!
9
29
 
10
- ## Fork and Clone
30
+ ### Fork and Clone
11
31
 
12
32
  Generally, this should only need to be done once, or if you need to start over.
13
33
 
@@ -21,7 +41,7 @@ git remote add upstream git://github.com/rapid7/recog.git
21
41
  git fetch --all
22
42
  ```
23
43
 
24
- ## Branch and Improve
44
+ ### Branch and Improve
25
45
 
26
46
  If you have a contribution to make, first create a branch to contain your
27
47
  work. The name is yours to choose, however generally it should roughly
@@ -43,6 +63,8 @@ git add CONTRIBUTING.md
43
63
  git commit -m "Add a document on how to contribute to recog" -a
44
64
  ```
45
65
 
66
+ Please note that changes to [lib/recog/version.rb](https://github.com/rapid7/recog/blob/master/lib/recog/version.rb) in PRs are almost never necessary.
67
+
46
68
  Now push your changes to your fork:
47
69
 
48
70
  ```
@@ -50,3 +72,20 @@ git push origin FOO
50
72
  ```
51
73
 
52
74
  Finally, submit the PR. Navigate to ```https://github.com/<your-github-username>/recog/compare/FOO```, fill in the details and submit.
75
+
76
+ ## Releasing New Versions
77
+
78
+ Typically this process is reserved for contributors with push permissions to Recog:
79
+
80
+ ### Release New Gem
81
+
82
+ 1. Get an account on [Rubygems](https://rubygems.org)
83
+ 2. Contact one of the Recog project contributors and have them add you to the Recog gem
84
+ 3. Edit [lib/recog/version.rb](https://github.com/rapid7/recog/blob/master/lib/recog/version.rb) and increment ```VERSION```. Commit and push to origin/upstream master.
85
+ 4. Run ```rake release```
86
+
87
+ ### Github Release
88
+
89
+ Some users may prefer to consume recog in a manner other than using git itself. For that reason, Github offers [Releases](https://github.com/blog/1547-release-your-software). Whenever a new version of the software is to be released, be kind and also create a new [Release](https://github.com/rapid7/recog/releases), using a versioning scheme identical to that used for the gem
90
+
91
+
data/lib/recog/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Recog
2
- VERSION = "1.0.5"
2
+ VERSION = "1.0.6"
3
3
  end
data/xml/http_servers.xml CHANGED
@@ -3242,19 +3242,12 @@
3242
3242
 
3243
3243
  <fingerprint pattern="^Boa/(\d+\.[a-zA-Z0-9\.\-]+)">
3244
3244
  <description>Boa web server</description>
3245
- <example>Boa/0.94.14rc21</example>
3246
- <example>Boa/0.94.14rc18-ipcam</example>
3247
- <example>Boa/0.93.15 (with Intersil Extensions)</example>
3248
- <example>Boa/0.94.14rc19</example>
3249
- <example>Boa/0.94.14rc19-pek</example>
3250
- <example>Boa/0.94.8.3</example>
3251
- <example>Boa/0.92q</example>
3252
- <example>Boa/0.94.14rc18uC</example>
3253
- <example>Boa/0.94.12</example>
3254
- <example>Boa/0.92p OS-9 Version</example>
3255
- <example>Boa/0.94.14rc21-OE1</example>
3256
- <param pos="0" name="service.vendor" value="Boa"/>
3257
- <param pos="0" name="service.product" value="Web Server"/>
3245
+ <example service.version="0.94.14rc21">Boa/0.94.14rc21</example>
3246
+ <example service.version="0.94.14rc18-ipcam">Boa/0.94.14rc18-ipcam</example>
3247
+ <example service.version="0.93.15">Boa/0.93.15 (with Intersil Extensions)</example>
3248
+ <example service.version="0.92p">Boa/0.92p OS-9 Version</example>
3249
+ <!-- there is not an official vendor -->
3250
+ <param pos="0" name="service.product" value="Boa"/>
3258
3251
  <param pos="1" name="service.version"/>
3259
3252
  </fingerprint>
3260
3253
 
metadata CHANGED
@@ -1,111 +1,111 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: recog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rapid7 Research
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-29 00:00:00.000000000 Z
11
+ date: 2014-12-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - '>='
17
+ - - ! '>='
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - '>='
24
+ - - ! '>='
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: yard
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - '>='
31
+ - - ! '>='
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - '>='
38
+ - - ! '>='
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: redcarpet
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - '>='
45
+ - - ! '>='
46
46
  - !ruby/object:Gem::Version
47
47
  version: '0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - '>='
52
+ - - ! '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: cucumber
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - '>='
59
+ - - ! '>='
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - '>='
66
+ - - ! '>='
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: aruba
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
- - - '>='
73
+ - - ! '>='
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  type: :development
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - '>='
80
+ - - ! '>='
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: simplecov
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - '>='
87
+ - - ! '>='
88
88
  - !ruby/object:Gem::Version
89
89
  version: '0'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - '>='
94
+ - - ! '>='
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: nokogiri
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - '>='
101
+ - - ! '>='
102
102
  - !ruby/object:Gem::Version
103
103
  version: '0'
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - '>='
108
+ - - ! '>='
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  description: Recog is a framework for identifying products, services, operating systems,
@@ -214,17 +214,17 @@ require_paths:
214
214
  - lib
215
215
  required_ruby_version: !ruby/object:Gem::Requirement
216
216
  requirements:
217
- - - '>='
217
+ - - ! '>='
218
218
  - !ruby/object:Gem::Version
219
219
  version: '0'
220
220
  required_rubygems_version: !ruby/object:Gem::Requirement
221
221
  requirements:
222
- - - '>='
222
+ - - ! '>='
223
223
  - !ruby/object:Gem::Version
224
224
  version: '0'
225
225
  requirements: []
226
226
  rubyforge_project:
227
- rubygems_version: 2.4.1
227
+ rubygems_version: 2.2.2
228
228
  signing_key:
229
229
  specification_version: 4
230
230
  summary: Network service fingerprint database, classes, and utilities