recog 1.0.4 → 1.0.5

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,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 796c259c3ef2b6768e453d45c6eafecea0d3307e
4
- data.tar.gz: 18619b2bc105b2c9f8a607aa42b8a74cd2226416
3
+ metadata.gz: 6922a5ca66788a092e43f9ddc864fcab0dca9588
4
+ data.tar.gz: fa61c65c715b7ead541f77202552dc4eda374ccc
5
5
  SHA512:
6
- metadata.gz: 262b8c5243d2700fef9809eac70e68400fb4a40a21f305e9ada37eb48faf2fe2189127d27904b8ea3f1d416c5c786adf1f2604735ed81d42be59f64710ad9316
7
- data.tar.gz: 4cbfa966c8268210113965387576182ea7aa4a98267af5bac81b9194db89fac554882a6421b37f2c96cde466b0589ed2165fd9faf9228421214bb49834fb6a5e
6
+ metadata.gz: d8d7e46ac8d54bc54bbc0474e26c97106810e690dbd1749ca313221dd6470f767d93713e114ff7d94540eb4f454950b7ab730dcf6ae63a013c2dd840fb98d2c1
7
+ data.tar.gz: b4facaf26e9fd6a617c38b719ecdb5056fdfdef0d306fb55c22eb819f0c032b1b61e8b743233489e09322cf0b1d4c19f303658db9571d0972f594244941d8fe1
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,52 @@
1
+ # Contributing to Recog
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.
7
+
8
+ On the other hand, if you haven't, read on!
9
+
10
+ ## Fork and Clone
11
+
12
+ Generally, this should only need to be done once, or if you need to start over.
13
+
14
+ 1. Fork Recog: Visit https://github.com/rapid7/recog and click Fork,
15
+ selecting your github account if prompted
16
+ 2. Clone ```git@github.com:<your-github-username>/recog.git```, replacing
17
+ ```<your-github-username>``` with, you guessed it, your Github username.
18
+ 3. Add the master Recog repository as your upstream:
19
+ ```
20
+ git remote add upstream git://github.com/rapid7/recog.git
21
+ git fetch --all
22
+ ```
23
+
24
+ ## Branch and Improve
25
+
26
+ If you have a contribution to make, first create a branch to contain your
27
+ work. The name is yours to choose, however generally it should roughly
28
+ describe what you are doing. In this example, and from here on out, the
29
+ branch will be FOO, but you should obviously change this
30
+
31
+ ```
32
+ git fetch --all
33
+ git checkout master
34
+ git rebase upstream/master
35
+ git checkout -b FOO
36
+ ```
37
+
38
+ Now, make your changes, committing as necessary, using useful commit messages:
39
+
40
+ ```
41
+ vim CONTRIBUTING.md
42
+ git add CONTRIBUTING.md
43
+ git commit -m "Add a document on how to contribute to recog" -a
44
+ ```
45
+
46
+ Now push your changes to your fork:
47
+
48
+ ```
49
+ git push origin FOO
50
+ ```
51
+
52
+ Finally, submit the PR. Navigate to ```https://github.com/<your-github-username>/recog/compare/FOO```, fill in the details and submit.
data/lib/recog/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Recog
2
- VERSION = "1.0.4"
2
+ VERSION = "1.0.5"
3
3
  end
@@ -1527,6 +1527,30 @@
1527
1527
  <!--======================================================================
1528
1528
  CISCO
1529
1529
  =======================================================================-->
1530
+ <fingerprint pattern="^(?:Cisco|TANDBERG) Codec SoftW: (.*\d+[\.\d+]*) MCU: Cisco TelePresence ([A-Z]+\d+).*">
1531
+ <description>Cisco TelePresence</description>
1532
+ <example os.version="TC5.1.0.280662" hw.product="SX20">Cisco Codec SoftW: TC5.1.0.280662 MCU: Cisco TelePresence SX20 Date: 2012-02-14 S/N: FTT16070041 BootSW: Board: 101790-6 [28]</example>
1533
+ <example os.version="TE4.1.3.292001" hw.product="SX20">Cisco Codec SoftW: TE4.1.3.292001 MCU: Cisco TelePresence SX20 Date: 2012-06-21 S/N: FTT1625007Z BootSW: Board: 101790-6 [B0]</example>
1534
+ <example os.version="TC4.2.0.259927" hw.product="MX200">TANDBERG Codec SoftW: TC4.2.0.259927 MCU: Cisco TelePresence MX200 Date: 2011-06-30 S/N: FTT1530000O BootSW: Board: 101770-4 [20]</example>
1535
+ <example os.version="TC5.1.3.292001" hw.product="MX300">TANDBERG Codec SoftW: TC5.1.3.292001 MCU: Cisco TelePresence MX300 Date: 2012-06-21 S/N: FTT16030013 BootSW: Board: 101770-5 [22]</example>
1536
+ <param pos="0" name="os.certainty" value="0.85"/>
1537
+ <param pos="0" name="os.vendor" value="Cisco"/>
1538
+ <param pos="0" name="os.product" value="TelePresence"/>
1539
+ <param pos="1" name="os.version"/>
1540
+ <param pos="2" name="hw.product"/>
1541
+ </fingerprint>
1542
+
1543
+ <fingerprint pattern="^Cisco TelePresence (Conductor|MCU (?:MSE )?\d+)">
1544
+ <description>Cisco TelePresence</description>
1545
+ <example hw.product="Conductor">Cisco TelePresence Conductor</example>
1546
+ <example hw.product="MCU 4205">Cisco TelePresence MCU 4205</example>
1547
+ <example hw.product="MCU MSE 8420">Cisco TelePresence MCU MSE 8420</example>
1548
+ <param pos="0" name="os.certainty" value="0.85"/>
1549
+ <param pos="0" name="os.vendor" value="Cisco"/>
1550
+ <param pos="0" name="os.product" value="TelePresence"/>
1551
+ <param pos="1" name="hw.product"/>
1552
+ </fingerprint>
1553
+
1530
1554
  <fingerprint pattern="^Cisco Adaptive Security Appliance Version (\d+\.\d+\(\d+\)\d*)">
1531
1555
  <description>Cisco Adaptive Security Appliance</description>
1532
1556
  <example os.version="8.0(2)">Cisco Adaptive Security Appliance Version 8.0(2)</example>
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.4
4
+ version: 1.0.5
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-10 00:00:00.000000000 Z
11
+ date: 2014-10-29 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,
@@ -121,10 +121,11 @@ executables:
121
121
  extensions: []
122
122
  extra_rdoc_files: []
123
123
  files:
124
- - ".gitignore"
125
- - ".rspec"
126
- - ".travis.yml"
127
- - ".yardopts"
124
+ - .gitignore
125
+ - .rspec
126
+ - .travis.yml
127
+ - .yardopts
128
+ - CONTRIBUTING.md
128
129
  - Gemfile
129
130
  - LICENSE
130
131
  - README.md
@@ -213,17 +214,17 @@ require_paths:
213
214
  - lib
214
215
  required_ruby_version: !ruby/object:Gem::Requirement
215
216
  requirements:
216
- - - ">="
217
+ - - '>='
217
218
  - !ruby/object:Gem::Version
218
219
  version: '0'
219
220
  required_rubygems_version: !ruby/object:Gem::Requirement
220
221
  requirements:
221
- - - ">="
222
+ - - '>='
222
223
  - !ruby/object:Gem::Version
223
224
  version: '0'
224
225
  requirements: []
225
226
  rubyforge_project:
226
- rubygems_version: 2.2.2
227
+ rubygems_version: 2.4.1
227
228
  signing_key:
228
229
  specification_version: 4
229
230
  summary: Network service fingerprint database, classes, and utilities