recog 2.3.6 → 2.3.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +17 -5
  3. data/.ruby-gemset +1 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +2 -4
  6. data/CONTRIBUTING.md +136 -37
  7. data/Gemfile +2 -5
  8. data/README.md +34 -29
  9. data/bin/recog_cleanup +16 -0
  10. data/bin/recog_standardize +142 -0
  11. data/cpe-remap.yaml +20 -0
  12. data/features/match.feature +4 -0
  13. data/features/support/aruba.rb +3 -0
  14. data/features/verify.feature +5 -0
  15. data/identifiers/README.md +56 -0
  16. data/identifiers/hw_device.txt +77 -0
  17. data/identifiers/hw_family.txt +96 -0
  18. data/identifiers/hw_product.txt +328 -0
  19. data/identifiers/os_architecture.txt +20 -0
  20. data/identifiers/os_device.txt +94 -0
  21. data/identifiers/os_family.txt +325 -0
  22. data/identifiers/os_product.txt +420 -0
  23. data/identifiers/service_family.txt +272 -0
  24. data/identifiers/service_product.txt +557 -0
  25. data/identifiers/software_class.txt +26 -0
  26. data/identifiers/software_family.txt +91 -0
  27. data/identifiers/software_product.txt +333 -0
  28. data/identifiers/vendor.txt +891 -0
  29. data/lib/recog/version.rb +1 -1
  30. data/requirements.txt +1 -1
  31. data/spec/lib/fingerprint_self_test_spec.rb +1 -1
  32. data/spec/lib/recog/fingerprint/regexp_factory_spec.rb +1 -1
  33. data/update_cpes.py +4 -1
  34. data/xml/apache_modules.xml +292 -5
  35. data/xml/apache_os.xml +50 -2
  36. data/xml/architecture.xml +19 -7
  37. data/xml/dns_versionbind.xml +215 -11
  38. data/xml/favicons.xml +1701 -0
  39. data/xml/ftp_banners.xml +225 -12
  40. data/xml/h323_callresp.xml +112 -12
  41. data/xml/hp_pjl_id.xml +47 -5
  42. data/xml/html_title.xml +2371 -17
  43. data/xml/http_cookies.xml +82 -7
  44. data/xml/http_servers.xml +863 -43
  45. data/xml/http_wwwauth.xml +154 -27
  46. data/xml/imap_banners.xml +19 -13
  47. data/xml/ldap_searchresult.xml +81 -9
  48. data/xml/mdns_device-info_txt.xml +194 -17
  49. data/xml/mdns_workstation_txt.xml +4 -2
  50. data/xml/mysql_banners.xml +554 -45
  51. data/xml/mysql_error.xml +113 -6
  52. data/xml/nntp_banners.xml +10 -2
  53. data/xml/ntp_banners.xml +95 -11
  54. data/xml/operating_system.xml +90 -3
  55. data/xml/pop_banners.xml +30 -31
  56. data/xml/rsh_resp.xml +11 -2
  57. data/xml/rtsp_servers.xml +96 -0
  58. data/xml/sip_banners.xml +192 -17
  59. data/xml/sip_user_agents.xml +69 -3
  60. data/xml/smb_native_lm.xml +10 -2
  61. data/xml/smb_native_os.xml +80 -2
  62. data/xml/smtp_banners.xml +166 -9
  63. data/xml/smtp_debug.xml +6 -4
  64. data/xml/smtp_ehlo.xml +7 -5
  65. data/xml/smtp_expn.xml +13 -4
  66. data/xml/smtp_help.xml +23 -4
  67. data/xml/smtp_mailfrom.xml +5 -2
  68. data/xml/smtp_noop.xml +6 -5
  69. data/xml/smtp_quit.xml +5 -4
  70. data/xml/smtp_rcptto.xml +5 -2
  71. data/xml/smtp_rset.xml +4 -4
  72. data/xml/smtp_turn.xml +4 -4
  73. data/xml/smtp_vrfy.xml +14 -4
  74. data/xml/snmp_sysdescr.xml +863 -122
  75. data/xml/snmp_sysobjid.xml +47 -2
  76. data/xml/ssh_banners.xml +253 -78
  77. data/xml/telnet_banners.xml +419 -14
  78. data/xml/x11_banners.xml +27 -4
  79. data/xml/x509_issuers.xml +39 -15
  80. data/xml/x509_subjects.xml +545 -64
  81. metadata +30 -6
@@ -1,9 +1,8 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
2
  <fingerprints matches="smtp.banner" protocol="smtp" database_type="service" preference="0.20">
3
3
  <!--
4
4
  SMTP greeting lines (part of the banner after the response code) are matched
5
5
  against these patterns (1 line at a time) to fingerprint SMTP servers.
6
-
7
6
  This is always done in addition to the patterns in other smtp_*.xml files.
8
7
  These XML files are used in this order:
9
8
  smtp_banners.xml
@@ -16,13 +15,12 @@
16
15
  smtp_turn.xml
17
16
  smtp_rset.xml
18
17
  smtp_quit.xml
19
-
20
18
  The system or service fingerprint with the highest certainty overwrites the others.
21
-
22
19
  'preference' notes: This value has been impacted by the poor quality of the 'Cisco PIX' match.
23
20
  Additionally, the 'preference' value for the other databases mentioned above has been set so
24
21
  as to implement their preference as described.
25
22
  -->
23
+
26
24
  <fingerprint pattern="^X1 NT-ESMTP Server ([^ ]+) \(IMail (\d+\.[^ ]+) EVAL \d+-\d+\)$">
27
25
  <description>IMail - EVAL version</description>
28
26
  <example service.version="6.06">X1 NT-ESMTP Server foo.bar (IMail 6.06 EVAL 11347-1)</example>
@@ -34,6 +32,7 @@
34
32
  <param pos="1" name="host.name"/>
35
33
  <param pos="0" name="imail.eval" value="yes"/>
36
34
  </fingerprint>
35
+
37
36
  <fingerprint pattern="^X1 NT-ESMTP Server ([^ ]+) \(IMail (\d+\.[^ ]+) \d+-\d+\)$">
38
37
  <description>IMail - non-EVAL version</description>
39
38
  <example service.version="6.06">X1 NT-ESMTP Server foo.bar (IMail 6.06 899085-1)</example>
@@ -44,6 +43,7 @@
44
43
  <param pos="0" name="service.cpe23" value="cpe:/a:ipswitch:imail_server:{service.version}"/>
45
44
  <param pos="1" name="host.name"/>
46
45
  </fingerprint>
46
+
47
47
  <fingerprint pattern="^([^ ]+) \(IMail (\d+\.[^ ]+) \d+-\d+\) NT-ESMTP Server X1$">
48
48
  <description>IMail - non-EVAL version, NT-ESMTP at end</description>
49
49
  <example service.version="12.4.2.27">foo.bar (IMail 12.4.2.27 21349-1) NT-ESMTP Server X1</example>
@@ -54,6 +54,7 @@
54
54
  <param pos="0" name="service.cpe23" value="cpe:/a:ipswitch:imail_server:{service.version}"/>
55
55
  <param pos="1" name="host.name"/>
56
56
  </fingerprint>
57
+
57
58
  <fingerprint pattern="^([^ ]+) SMTP AnalogX Proxy ([^ ]+\.[^ ]+) \(Release\) ready *$">
58
59
  <description>AnalogX proxy (http://www.analogx.com/contents/download/network/proxy.htm)</description>
59
60
  <example host.name="192.168.1.1" service.version="4.15">192.168.1.1 SMTP AnalogX Proxy 4.15 (Release) ready</example>
@@ -64,6 +65,7 @@
64
65
  <param pos="0" name="service.cpe23" value="cpe:/a:analogx:proxy:{service.version}"/>
65
66
  <param pos="1" name="host.name"/>
66
67
  </fingerprint>
68
+
67
69
  <fingerprint pattern="^ArGoSoft Mail Server, Version [^ ]+ \(([^ ]+\.[^ ]+\.[^ ]+\.[^ ]+)\) *$">
68
70
  <description>ArGoSoft Mail Server</description>
69
71
  <example service.version="1.4.0.7">ArGoSoft Mail Server, Version 1.4 (1.4.0.7)</example>
@@ -76,6 +78,7 @@
76
78
  <param pos="0" name="service.product" value="Mail Server"/>
77
79
  <param pos="1" name="service.version"/>
78
80
  </fingerprint>
81
+
79
82
  <fingerprint pattern="^^(?:(\S+) +)?ArGoSoft Mail Server Freeware, Version [^ ]+ \(([^ ]+\.[^ ]+\.[^ ]+\.[^ ]+)\) *$">
80
83
  <description>ArGoSoft Mail Server - freeware version</description>
81
84
  <example host.name="foo.bar" service.version="1.8.8.8">foo.bar ArGoSoft Mail Server Freeware, Version 1.8 (1.8.8.8)</example>
@@ -90,6 +93,7 @@
90
93
  <param pos="2" name="service.version"/>
91
94
  <param pos="1" name="host.name"/>
92
95
  </fingerprint>
96
+
93
97
  <fingerprint pattern="^(?:(\S+) +)?ArGoSoft Mail Server Pro for WinNT\/2000(?:\/XP)?, Version [^ ]+ \(([^ ]+\.[^ ]+\.[^ ]+\.[^ ]+)\) *$">
94
98
  <description>ArGoSoft Mail Server - Pro version</description>
95
99
  <example service.version="1.6.1.8">ArGoSoft Mail Server Pro for WinNT/2000, Version 1.61 (1.6.1.8)</example>
@@ -105,6 +109,7 @@
105
109
  <param pos="1" name="host.name"/>
106
110
  <param pos="2" name="service.version"/>
107
111
  </fingerprint>
112
+
108
113
  <fingerprint pattern="^([^ ]+) +AppleShare IP Mail Server ([^ ]+\.[\d.]+) SMTP Server Ready *$">
109
114
  <description>AppleShare IP Mail Server</description>
110
115
  <example service.version="6.2.1">foo.bar AppleShare IP Mail Server 6.2.1 SMTP Server Ready</example>
@@ -115,6 +120,7 @@
115
120
  <param pos="1" name="host.name"/>
116
121
  <param pos="2" name="service.version"/>
117
122
  </fingerprint>
123
+
118
124
  <fingerprint pattern="^CheckPoint FireWall-1 secure E?SMTP server *$">
119
125
  <description>CheckPoint FireWall-1</description>
120
126
  <example>CheckPoint FireWall-1 secure SMTP server</example>
@@ -124,6 +130,7 @@
124
130
  <param pos="0" name="service.product" value="Firewall-1"/>
125
131
  <param pos="0" name="service.cpe23" value="cpe:/a:checkpoint:firewall-1:-"/>
126
132
  </fingerprint>
133
+
127
134
  <fingerprint pattern="^SMTP/cmap ready_+$">
128
135
  <description>Cisco Pix v4.x</description>
129
136
  <example>SMTP/cmap ready________________________________________________________________________</example>
@@ -133,6 +140,7 @@
133
140
  <param pos="0" name="os.version" value="4"/>
134
141
  <param pos="0" name="os.cpe23" value="cpe:/o:cisco:pix_firewall_software:4"/>
135
142
  </fingerprint>
143
+
136
144
  <fingerprint pattern="CCProxy (\S+) SMTP Service Ready(?:\(Unregistered\))?$">
137
145
  <description>Youngzsoft CCProxy SMTP</description>
138
146
  <example service.version="7.3">CCProxy 7.3 SMTP Service Ready(Unregistered)</example>
@@ -141,16 +149,16 @@
141
149
  <param pos="0" name="service.product" value="CCProxy"/>
142
150
  <param pos="1" name="service.version"/>
143
151
  </fingerprint>
152
+
144
153
  <!--
145
154
  Cisco PIX sits between an internal SMTP server and the rest of the world.
146
-
147
155
  Its MailGuard feature strips all information out of the 220 header except for the ' ' (space), '2' (digit two),
148
156
  and '0' (digit zero) characters, replacing them with asterisks. While this effectively
149
157
  hides the back-end SMTP server, it does tell us that they are running Cisco PIX firewall
150
158
  (at least for SMTP, and possibly other services as well).
151
-
152
159
  Search Cisco's documentation for "fixup protocol SMTP" for more information.
153
160
  -->
161
+
154
162
  <fingerprint pattern="^[\*20 ]+$">
155
163
  <description>Cisco PIX firewall MailGuard banner stripping</description>
156
164
  <example os.product="PIX">***************************</example>
@@ -159,6 +167,7 @@
159
167
  <param pos="0" name="os.product" value="PIX"/>
160
168
  <param pos="0" name="os.cpe23" value="cpe:/o:cisco:pix_firewall_software:-"/>
161
169
  </fingerprint>
170
+
162
171
  <fingerprint pattern="^([^ ]+) +ESMTP CPMTA-([^ ]+)_([^ ]+)_([^ ]+)_([^ ]+) - NO UCE *$">
163
172
  <description>Critical Path (aka InScribe) Messaging Server on Windows NT4/2k, Solaris 2.6/2.7/2.8 Sparc/Intel, SGI IRIX 6.5.3 or later, or AIX </description>
164
173
  <param pos="0" name="service.vendor" value="Critical Path"/>
@@ -170,6 +179,7 @@
170
179
  <param pos="4" name="service.version.version.version"/>
171
180
  <param pos="5" name="service.version.version.version.version"/>
172
181
  </fingerprint>
182
+
173
183
  <fingerprint pattern="^CSM Internet Mail Scanner SMTP-Gateway ready?\. *$">
174
184
  <description>CSM Internet Mail Scanner SMTP Proxy</description>
175
185
  <example>CSM Internet Mail Scanner SMTP-Gateway ready.</example>
@@ -178,6 +188,7 @@
178
188
  <param pos="0" name="service.family" value="Internet Mail Scanner"/>
179
189
  <param pos="0" name="service.product" value="Internet Mail Scanner"/>
180
190
  </fingerprint>
191
+
181
192
  <fingerprint pattern="^([^ ]+) +IMS SMTP Receiver Version ([^ ]+\.[^ ]+) Ready *$">
182
193
  <description>EMWAC Internet Mail Services (http://emwac.ed.ac.uk/html/internet_toolchest/ims/ims.htm)</description>
183
194
  <example service.version="0.83" host.name="foo.bar">foo.bar IMS SMTP Receiver Version 0.83 Ready</example>
@@ -187,6 +198,7 @@
187
198
  <param pos="1" name="host.name"/>
188
199
  <param pos="2" name="service.version"/>
189
200
  </fingerprint>
201
+
190
202
  <fingerprint pattern="^([^ ]+) running Eudora Internet Mail Server (\d\.[\d.]+) *$">
191
203
  <description>Eudora Internet Mail Server</description>
192
204
  <example service.version="3.0.2" host.name="foo.bar">foo.bar running Eudora Internet Mail Server 3.0.2</example>
@@ -201,6 +213,7 @@
201
213
  <param pos="1" name="host.name"/>
202
214
  <param pos="2" name="service.version"/>
203
215
  </fingerprint>
216
+
204
217
  <fingerprint pattern="^([^ ]+) +ESMTP Server \(Microsoft Exchange Internet Mail Service (\d+\.\d+\.\d+\.\d+)\) ready *$">
205
218
  <description>Microsoft Exchange Server 5.5 and above (for sure, can't be confused with the IIS builtin SMTP service)</description>
206
219
  <example host.name="foo.bar" service.version="5.5.2653.13">foo.bar ESMTP Server (Microsoft Exchange Internet Mail Service 5.5.2653.13) ready</example>
@@ -215,6 +228,7 @@
215
228
  <param pos="0" name="os.product" value="Windows"/>
216
229
  <param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
217
230
  </fingerprint>
231
+
218
232
  <fingerprint pattern="^([^ ]+) Microsoft Exchange Internet Mail Service (\d+\.\d+\.\d+\.\d+) ready *$">
219
233
  <description>Microsoft Exchange Server 5.0 (for sure, can't be confused with the IIS builtin SMTP service)</description>
220
234
  <example host.name="foo.bar" service.version="5.0.1460.8">foo.bar Microsoft Exchange Internet Mail Service 5.0.1460.8 ready</example>
@@ -229,6 +243,7 @@
229
243
  <param pos="0" name="os.product" value="Windows"/>
230
244
  <param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
231
245
  </fingerprint>
246
+
232
247
  <fingerprint pattern="^([^ ]+) Microsoft ESMTP MAIL Service ready at .*$">
233
248
  <description>Microsoft Exchange 2007/2010 (for sure, can't be confused with the IIS builtin SMTP service)</description>
234
249
  <example>foo.bar Microsoft ESMTP MAIL Service ready at Wed, 21 Jul 2010 19:04:24 -0700</example>
@@ -242,6 +257,7 @@
242
257
  <param pos="0" name="os.product" value="Windows"/>
243
258
  <param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
244
259
  </fingerprint>
260
+
245
261
  <fingerprint pattern="^(:?[^ ]+)? ?Microsoft ESMTP MAIL Service, Version: +(10\.0\.14393\.[\d.]+) +ready +(?:at +)?(.+)$">
246
262
  <description>Microsoft IIS builtin SMTP service - Windows Server 2016</description>
247
263
  <example host.name="foo.bar" service.version="10.0.14393.2608">foo.bar Microsoft ESMTP MAIL Service, Version: 10.0.14393.2608 ready at Sun, 19 May 2019 09:04:29 -0500</example>
@@ -249,7 +265,7 @@
249
265
  <param pos="0" name="service.family" value="IIS"/>
250
266
  <param pos="0" name="service.product" value="IIS"/>
251
267
  <param pos="2" name="service.version"/>
252
- <param pos="0" name="service.cpe23" value="cpe:/a:microsoft:iis:10.0"/>
268
+ <param pos="0" name="service.cpe23" value="cpe:/a:microsoft:iis:{service.version}"/>
253
269
  <param pos="1" name="host.name"/>
254
270
  <param pos="3" name="system.time"/>
255
271
  <param pos="0" name="system.time.format" value="EEE, d MMM yyyy HH:mm:ss Z"/>
@@ -258,6 +274,7 @@
258
274
  <param pos="0" name="os.product" value="Windows Server 2016"/>
259
275
  <param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows_server_2016:-"/>
260
276
  </fingerprint>
277
+
261
278
  <fingerprint pattern="^(:?[^ ]+)? ?Microsoft ESMTP MAIL Service, Version: +(10\.0\.17763\.[\d.]+) +ready +(?:at +)?(.+)$">
262
279
  <description>Microsoft IIS builtin SMTP service - Windows Server 2019</description>
263
280
  <example host.name="foo.bar" service.version="10.0.17763.1">foo.bar Microsoft ESMTP MAIL Service, Version: 10.0.17763.1 ready at Sun, 19 May 2019 09:04:29 -0500</example>
@@ -265,7 +282,7 @@
265
282
  <param pos="0" name="service.family" value="IIS"/>
266
283
  <param pos="0" name="service.product" value="IIS"/>
267
284
  <param pos="2" name="service.version"/>
268
- <param pos="0" name="service.cpe23" value="cpe:/a:microsoft:iis:10.0"/>
285
+ <param pos="0" name="service.cpe23" value="cpe:/a:microsoft:iis:{service.version}"/>
269
286
  <param pos="1" name="host.name"/>
270
287
  <param pos="3" name="system.time"/>
271
288
  <param pos="0" name="system.time.format" value="EEE, d MMM yyyy HH:mm:ss Z"/>
@@ -274,6 +291,7 @@
274
291
  <param pos="0" name="os.product" value="Windows Server 2019"/>
275
292
  <param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows_server_2019:-"/>
276
293
  </fingerprint>
294
+
277
295
  <fingerprint pattern="^([^ ]+) Microsoft SMTP MAIL ready at (.+) Version: +(\d+\.\d+\.\d+\.\d+\.\d+) *$">
278
296
  <description>Microsoft IIS builtin SMTP service, or Microsoft Exchange Server (they are differentiated from each other in smtp-iis.clp) - variant 1</description>
279
297
  <example host.name="foo.bar" service.version="5.5.1877.197.19">foo.bar Microsoft SMTP MAIL ready at Wed, 29 Nov 2017 23:48:59 +0000 Version: 5.5.1877.197.19</example>
@@ -290,6 +308,7 @@
290
308
  <param pos="0" name="os.product" value="Windows"/>
291
309
  <param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
292
310
  </fingerprint>
311
+
293
312
  <fingerprint pattern="^(:?[^ ]+)? ?Microsoft ESMTP MAIL Service, Version: +(\d+\.\d+\.\d+\.\d+)(?: +ready)?(?: +(?:at +)?(\w\w\w, \d.+))?$">
294
313
  <description>Microsoft IIS builtin SMTP service, or Microsoft Exchange Server (they are differentiated from each other in smtp-iis.clp) - variant 2 </description>
295
314
  <example service.version="5.0.2195.5329"> Microsoft ESMTP MAIL Service, Version: 5.0.2195.5329 ready Thu, 30 Nov 2017 11:40:25 +0200</example>
@@ -310,6 +329,7 @@
310
329
  <param pos="0" name="os.product" value="Windows"/>
311
330
  <param pos="0" name="os.cpe23" value="cpe:/o:microsoft:windows:-"/>
312
331
  </fingerprint>
332
+
313
333
  <fingerprint pattern="^ESMTP Exim$">
314
334
  <description>Exim - without version string or hostname</description>
315
335
  <example>ESMTP Exim</example>
@@ -318,6 +338,7 @@
318
338
  <param pos="0" name="service.product" value="exim"/>
319
339
  <param pos="0" name="service.cpe23" value="cpe:/a:exim:exim:-"/>
320
340
  </fingerprint>
341
+
321
342
  <fingerprint pattern="^ ?([^, ]+)(?:,)? ESMTP \(?(?i:Exim) +(\d+\.[\d_.bRC-]+)\)?(?: +#\d)? ?.?((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?) *(?:We do not authorize the use of this system to transport unsolicited, and\/or bulk e-mail.)?$">
322
343
  <description>Exim - with version string and optional timestamp</description>
323
344
  <example service.version="4.89" host.name="foo.bar">foo.bar ESMTP Exim 4.89 "</example>
@@ -339,6 +360,7 @@
339
360
  <param pos="0" name="service.cpe23" value="cpe:/a:exim:exim:{service.version}"/>
340
361
  <param pos="3" name="system.time"/>
341
362
  </fingerprint>
363
+
342
364
  <fingerprint pattern="^([^, ]+)(?:,)? ESMTP (?i:Exim) +(\d+) ((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?) *$">
343
365
  <description>Exim - with digit only version string and optional timestamp</description>
344
366
  <example service.version="125302" host.name="foo.bar">foo.bar ESMTP Exim 125302 Thu, 16 Nov 2017 04:55:11 -0500 </example>
@@ -351,6 +373,7 @@
351
373
  <param pos="0" name="service.cpe23" value="cpe:/a:exim:exim:{service.version}"/>
352
374
  <param pos="3" name="system.time"/>
353
375
  </fingerprint>
376
+
354
377
  <fingerprint pattern="^([^, ]+)(?:,)? ESMTP (?i:Exim) +(\d+\.[\d_.]+)(?: +#\d)? Ubuntu ((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?) *$">
355
378
  <description>Exim - with version string and optional timestamp (Ubuntu)</description>
356
379
  <example service.version="4.82" system.time="Thu, 16 Nov 2017 11:30:44 +0300">foo.bar ESMTP Exim 4.82 Ubuntu Thu, 16 Nov 2017 11:30:44 +0300 </example>
@@ -367,6 +390,7 @@
367
390
  <param pos="0" name="service.cpe23" value="cpe:/a:exim:exim:{service.version}"/>
368
391
  <param pos="3" name="system.time"/>
369
392
  </fingerprint>
393
+
370
394
  <fingerprint pattern="^([^, ]+)(?:,)? ESMTP (?i:Exim)(?: +#\d)? *((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?) *$">
371
395
  <description>Exim - without version string and with optional timestamp</description>
372
396
  <example host.name="foo.bar">foo.bar ESMTP Exim</example>
@@ -380,6 +404,7 @@
380
404
  <param pos="1" name="host.name"/>
381
405
  <param pos="2" name="system.time"/>
382
406
  </fingerprint>
407
+
383
408
  <fingerprint pattern="^ ?ESMTP (?i:Exim) (\d+\.[\d_.]+)(?: +#\d)? ?.?((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?) *$">
384
409
  <description>Exim - without hostname</description>
385
410
  <example service.version="4.82" system.time="Thu, 16 Nov 2017 12:19:22 +0300">ESMTP Exim 4.82 Thu, 16 Nov 2017 12:19:22 +0300 </example>
@@ -393,6 +418,17 @@
393
418
  <param pos="0" name="service.cpe23" value="cpe:/a:exim:exim:{service.version}"/>
394
419
  <param pos="2" name="system.time"/>
395
420
  </fingerprint>
421
+
422
+ <fingerprint pattern="^ ?([^, ]+) Exim ESMTP Service ready$">
423
+ <description>Exim - with hostname </description>
424
+ <example host.name="foo.bar">foo.bar Exim ESMTP Service ready</example>
425
+ <param pos="0" name="service.vendor" value="exim"/>
426
+ <param pos="0" name="service.family" value="exim"/>
427
+ <param pos="0" name="service.product" value="exim"/>
428
+ <param pos="0" name="service.cpe23" value="cpe:/a:exim:exim:-"/>
429
+ <param pos="1" name="host.name"/>
430
+ </fingerprint>
431
+
396
432
  <fingerprint pattern="^([^ ]+) FTGate server ready .*$">
397
433
  <description>FTGate mail server, runs on Windows 9x/NT/2k (http://www.ftgate.com)</description>
398
434
  <example host.name="foo.bar">foo.bar FTGate server ready -attitude [C.o.r.E]</example>
@@ -401,6 +437,7 @@
401
437
  <param pos="0" name="service.product" value="FTGate"/>
402
438
  <param pos="1" name="host.name"/>
403
439
  </fingerprint>
440
+
404
441
  <fingerprint pattern="^([^ ]+) +SMTP/smap Ready\.$">
405
442
  <description>TIS FWTK and derivatives (other firewalls, like Gauntlet, are derived from TIS)</description>
406
443
  <example host.name="foo.bar">foo.bar SMTP/smap Ready.</example>
@@ -409,6 +446,7 @@
409
446
  <param pos="0" name="service.product" value="FWTK"/>
410
447
  <param pos="1" name="host.name"/>
411
448
  </fingerprint>
449
+
412
450
  <fingerprint pattern="^([^ ]+) GroupWise Internet Agent ([^ ]+\.[^ ]+\.[^ ]+) Ready \(C\).* Novell, Inc\. *$">
413
451
  <description>Novell GroupWise Internet Agent - versions 5 and higher</description>
414
452
  <example service.version="5.5.1">foo.bar GroupWise Internet Agent 5.5.1 Ready (C)1993, 1998 Novell, Inc.</example>
@@ -419,6 +457,7 @@
419
457
  <param pos="2" name="service.version"/>
420
458
  <param pos="0" name="service.cpe23" value="cpe:/a:novell:groupwise:{service.version}"/>
421
459
  </fingerprint>
460
+
422
461
  <fingerprint pattern="^([^ ]+) GroupWise Internet Agent (\d+\.[\d.]+) Copyright .*\d{4}-\d{4} Novell, Inc..* All rights reserved. Ready *$">
423
462
  <description>Novell GroupWise Internet Agent - versions 5 and higher, second variant</description>
424
463
  <example service.version="8.0.3">foo.bar GroupWise Internet Agent 8.0.3 Copyright (c) 1993-2012 Novell, Inc. All rights reserved. Ready</example>
@@ -430,6 +469,7 @@
430
469
  <param pos="2" name="service.version"/>
431
470
  <param pos="0" name="service.cpe23" value="cpe:/a:novell:groupwise:{service.version}"/>
432
471
  </fingerprint>
472
+
433
473
  <fingerprint pattern="^([^ ]+) GroupWise SMTP/MIME Daemon ([^ ]+\.[^ ]+) v([^ ]+) Ready \(C\).* Novell, Inc\. *$">
434
474
  <description>Novell GroupWise - versions below 5</description>
435
475
  <example host.name="foo.bar" service.version="4.1" service.version.version="3">foo.bar GroupWise SMTP/MIME Daemon 4.1 v3 Ready (C)1993, 1996 Novell, Inc.</example>
@@ -441,6 +481,7 @@
441
481
  <param pos="3" name="service.version.version"/>
442
482
  <param pos="0" name="service.cpe23" value="cpe:/a:novell:groupwise:{service.version}"/>
443
483
  </fingerprint>
484
+
444
485
  <fingerprint pattern="^([^ ]+) (?:ESMTP )?running IBM VM SMTP (.+)(?:; | on )(.+) *$">
445
486
  <description>IBM SMTP server for VM/ESA on IBM S/390 and IBM eserver z/Series 900.</description>
446
487
  <example service.version="Level 640" system.time="Thu, 30 Nov 2017 01:08:59 PDT">foo.bar running IBM VM SMTP Level 640 on Thu, 30 Nov 2017 01:08:59 PDT</example>
@@ -454,6 +495,7 @@
454
495
  <param pos="2" name="service.version"/>
455
496
  <param pos="3" name="system.time"/>
456
497
  </fingerprint>
498
+
457
499
  <fingerprint pattern="^([^ ]+) \(IntraStore TurboSendmail\) ESMTP Service ready *$">
458
500
  <description>
459
501
  Syntegra/CDC IntraStore TurboSendmail, part of the IntraStore server which runs on
@@ -466,6 +508,7 @@
466
508
  <param pos="0" name="service.product" value="IntraStore"/>
467
509
  <param pos="1" name="host.name"/>
468
510
  </fingerprint>
511
+
469
512
  <fingerprint pattern="^(\S+) E?SMTP Server \(JAMES E?SMTP Server ([\d\.]+)\) ready (\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d) \(.+\)$">
470
513
  <description>JAMES SMTP Server</description>
471
514
  <example host.name="foo.bar" service.version="2.3.2">foo.bar SMTP Server (JAMES SMTP Server 2.3.2) ready Tue, 19 May 2015 00:36:13 +0200 (CEST)</example>
@@ -477,6 +520,7 @@
477
520
  <param pos="3" name="system.time"/>
478
521
  <param pos="0" name="system.time.format" value="EEE, d MMM yyyy HH:mm:ss Z"/>
479
522
  </fingerprint>
523
+
480
524
  <fingerprint pattern="^(?:(\S+) +)?ESMTP MailEnable Service, Version: ([\d.]+)$">
481
525
  <description>MailEnable - Simple</description>
482
526
  <example service.version="9.53">ESMTP MailEnable Service, Version: 9.53</example>
@@ -491,7 +535,9 @@
491
535
  <param pos="2" name="service.version"/>
492
536
  <param pos="0" name="service.cpe23" value="cpe:/a:mailenable:mailenable:{service.version}"/>
493
537
  </fingerprint>
538
+
494
539
  <!-- MailEnable has an odd, three version string. Not sure about the meaning the second and third version #s. -->
540
+
495
541
  <fingerprint pattern="^(?:(\S+) +)?ESMTP MailEnable Service, Version: (?:([\d.]+))?-[\d.]*-[\d.]* (?:ready|denied access) at (\d{2}/\d{2}/\d{2} \d{2}:\d{2}:\d{2})$">
496
542
  <description>MailEnable - Complex</description>
497
543
  <example host.name="foo.bar" service.version="1.8">foo.bar ESMTP MailEnable Service, Version: 1.8-- ready at 05/20/15 08:50:22</example>
@@ -511,6 +557,7 @@
511
557
  <param pos="0" name="service.cpe23" value="cpe:/a:mailenable:mailenable:{service.version}"/>
512
558
  <param pos="3" name="system.time"/>
513
559
  </fingerprint>
560
+
514
561
  <fingerprint pattern="^([^ ]+) \(Mail-Max Version (\d+\.[\d\.]+), (.+, .+)\) ESMTP Mail Server Ready. *$">
515
562
  <description>Mail Max</description>
516
563
  <example host.name="foo.bar" service.version="4.2.4.7">foo.bar (Mail-Max Version 4.2.4.7, Wed, 31 Jan 2001 03:44:35 +0100 WST) ESMTP Mail Server Ready.</example>
@@ -523,6 +570,7 @@
523
570
  <param pos="2" name="service.version"/>
524
571
  <param pos="3" name="system.time"/>
525
572
  </fingerprint>
573
+
526
574
  <fingerprint pattern="^([^ ]+) +MailSite E?SMTP Receiver Version (\d+\.[\d.]+) Ready *$">
527
575
  <description>Rockliffe MailSite - with version (http://www.rockliffe.com)</description>
528
576
  <example host.name="foo.bar" service.version="3.4.6.0">foo.bar MailSite ESMTP Receiver Version 3.4.6.0 Ready</example>
@@ -533,6 +581,7 @@
533
581
  <param pos="1" name="host.name"/>
534
582
  <param pos="2" name="service.version"/>
535
583
  </fingerprint>
584
+
536
585
  <fingerprint pattern="^([^ ]+) +MailSite E?SMTP Receiver Ready *$">
537
586
  <description>Rockliffe MailSite - without version (http://www.rockliffe.com)</description>
538
587
  <example host.name="foo.bar">foo.bar MailSite SMTP Receiver Ready</example>
@@ -541,6 +590,7 @@
541
590
  <param pos="0" name="service.product" value="MailSite"/>
542
591
  <param pos="1" name="host.name"/>
543
592
  </fingerprint>
593
+
544
594
  <fingerprint pattern="^ ?MailSite E?SMTP Receiver Version (\d+\.[\d.]+) Ready *$">
545
595
  <description>Rockliffe MailSite - without hostname (http://www.rockliffe.com)</description>
546
596
  <example service.version="10.2.0.0"> MailSite ESMTP Receiver Version 10.2.0.0 Ready</example>
@@ -549,6 +599,7 @@
549
599
  <param pos="0" name="service.product" value="MailSite"/>
550
600
  <param pos="1" name="service.version"/>
551
601
  </fingerprint>
602
+
552
603
  <fingerprint pattern="^([^ ]+) +MAILsweeper ESMTP Receiver Version (\d\.[\d.]+) Ready *$">
553
604
  <description>Content Security MAILsweeper for SMTP (http://www.contenttechnologies.com/products/msw4smtp/default.asp)</description>
554
605
  <example service.version="4.2.1.0">foo.bar MAILsweeper ESMTP Receiver Version 4.2.1.0 Ready</example>
@@ -558,6 +609,7 @@
558
609
  <param pos="1" name="host.name"/>
559
610
  <param pos="2" name="service.version"/>
560
611
  </fingerprint>
612
+
561
613
  <fingerprint pattern="^([^ ]+) +ESMTP MDaemon ([^ ]+\.[^ ]+\.[^ ]+) UNREGISTERED; *(.+) *$">
562
614
  <description>MDaemon mail server - with timestamp, unregistered</description>
563
615
  <example service.version="4.0.5">foo.bar ESMTP MDaemon 4.0.5 UNREGISTERED; Sat, 06 Oct 2001 09:10:56 +0400</example>
@@ -576,6 +628,7 @@
576
628
  <param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
577
629
  <param pos="3" name="system.time"/>
578
630
  </fingerprint>
631
+
579
632
  <fingerprint pattern="^([^ ]+) +ESMTP MDaemon ([^ ]+\.[^ ]+\.[^ ]+); *(.+) *$">
580
633
  <description>MDaemon mail server - with timestamp</description>
581
634
  <example service.version="4.0.2">foo.bar ESMTP MDaemon 4.0.2; Sat, 06 Oct 2001 01:46:44 -0500</example>
@@ -593,6 +646,7 @@
593
646
  <param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
594
647
  <param pos="3" name="system.time"/>
595
648
  </fingerprint>
649
+
596
650
  <fingerprint pattern="^([^ ]+) +ESMTP MDaemon ([^ ]+\.[^ ]+\.[^ ]+) ready *$">
597
651
  <description>MDaemon mail server - without timestamp</description>
598
652
  <example service.version="3.5.7">foo.bar ESMTP MDaemon 3.5.7 ready</example>
@@ -608,6 +662,7 @@
608
662
  <param pos="2" name="service.version"/>
609
663
  <param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
610
664
  </fingerprint>
665
+
611
666
  <fingerprint pattern="^([^ ]+) +ESMTP service ready \[[0-9]+\] (?:using )?MDaemon v(\d+\.[\d.]+) ([^ ]+) *$">
612
667
  <description>MDaemon mail server - with version revision</description>
613
668
  <example service.version="2.84" service.version.version="R">foo.bar ESMTP service ready [1] MDaemon v2.84 R</example>
@@ -626,6 +681,7 @@
626
681
  <param pos="3" name="service.version.version"/>
627
682
  <param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
628
683
  </fingerprint>
684
+
629
685
  <fingerprint pattern="^([^ ]+) +ESMTP service ready \[[0-9]+\] (?:\()?MDaemon v([\d.]+) ([^ ]+) ([^ )]+)(?:\))? *$">
630
686
  <description>MDaemon mail server - with service pack</description>
631
687
  <example service.version="2.7" service.version.version="SP5" service.version.version.version="R">foo.bar ESMTP service ready [1] MDaemon v2.7 SP5 R</example>
@@ -644,6 +700,7 @@
644
700
  <param pos="4" name="service.version.version.version"/>
645
701
  <param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
646
702
  </fingerprint>
703
+
647
704
  <fingerprint pattern="^([^ ]+) +ESMTP service ready \[[0-9]+\] \(MDaemon v([^ ]+\.[^ ]+) ([^ ]+) ([^ ]+) ([^ ]+)\) *$">
648
705
  <description>MDaemon mail server</description>
649
706
  <example service.version="2.5" service.version.version.version="b1">foo.bar ESMTP service ready [1] (MDaemon v2.5 rB b1 32-T)</example>
@@ -662,7 +719,9 @@
662
719
  <param pos="5" name="service.version.version.version.version"/>
663
720
  <param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
664
721
  </fingerprint>
722
+
665
723
  <!-- example: 220 mail.db-list.com ESMTP MERAK 3.00.140; Tue, 24 Jul 2001 21:30:47 -0700 -->
724
+
666
725
  <fingerprint pattern="^([^ ]+) +E?SMTP (?i:MERAK) ([^ ]+\.[^ ]+\.[^ ]+); *(.+) *$">
667
726
  <description>Merak mail server - http://www.icewarp.com/merakmail/ (runs on 2000/NT/9x)</description>
668
727
  <example host.name="foo.bar" service.version="8.0.3">foo.bar SMTP Merak 8.0.3; Thu, 30 Nov 2017 20:01:41 +1000</example>
@@ -676,6 +735,7 @@
676
735
  <param pos="2" name="service.version"/>
677
736
  <param pos="3" name="system.time"/>
678
737
  </fingerprint>
738
+
679
739
  <fingerprint pattern="^MERCUR SMTP-Server \(v([^ ]+\.[^ ])0\.([^ ]+) ([^ ]+)\) for (.+) ready at (.+) *$">
680
740
  <description>Atrium's MERCUR SMTP server (http://www.atrium-software.com/pub/support_e.cfm)</description>
681
741
  <example service.version="3.3" service.version.version="09" service.version.version.version="SA-0000005" mercur.os.info="Windows NT">MERCUR SMTP-Server (v3.30.09 SA-0000005) for Windows NT ready at Thu, 30 Nov 2017 10:01:06 +0100</example>
@@ -689,6 +749,7 @@
689
749
  <param pos="4" name="mercur.os.info"/>
690
750
  <param pos="5" name="system.time"/>
691
751
  </fingerprint>
752
+
692
753
  <fingerprint pattern="^([^ ]+) Mercury ([^ ]+\.[^ ]+) ESMTP server ready.$">
693
754
  <description>Mercury NLM for Netware ( http://www.pmail.com/index.cfm )</description>
694
755
  <example service.version="1.43">foo.bar Mercury 1.43 ESMTP server ready.</example>
@@ -701,6 +762,7 @@
701
762
  <param pos="1" name="host.name"/>
702
763
  <param pos="2" name="service.version"/>
703
764
  </fingerprint>
765
+
704
766
  <fingerprint pattern="^^([^ ]+) Mercury\/32 v([^ ]+\.[^ ]+) (?:SMTP\/)?ESMTP server ready.?$">
705
767
  <description>Mercury/32 for Win9x/NT/2000 ( http://www.pmail.com/index.cfm )</description>
706
768
  <example service.version="3.01a">foo.bar Mercury/32 v3.01a SMTP/ESMTP server ready.</example>
@@ -714,6 +776,7 @@
714
776
  <param pos="1" name="host.name"/>
715
777
  <param pos="2" name="service.version"/>
716
778
  </fingerprint>
779
+
717
780
  <fingerprint pattern="^([^ ]+) SMTP NAVIEG ([^ ]+\.[^ ]+\.[^ ]+); (.+)* http.*$">
718
781
  <description>Norton Antivirus for Internet Email Gateways (becomes NAVGW in 2.1)</description>
719
782
  <example host.name="foo.bar" service.version="2.0.1">foo.bar SMTP NAVIEG 2.0.1; Sun, 29 Jul 2001 22:02:16 -0500 http://www.symantec.com</example>
@@ -725,6 +788,7 @@
725
788
  <param pos="2" name="service.version"/>
726
789
  <param pos="3" name="system.time"/>
727
790
  </fingerprint>
791
+
728
792
  <fingerprint pattern="^([^ ]+) ESMTP service \(Netscape Messaging Server ([^ ]+\.[^ ]+) Patch ([^ ]+).*$">
729
793
  <description>Netscape Messaging Server - with patch number</description>
730
794
  <example host.name="foo.bar" service.version="4.15" service.version.version="7">foo.bar ESMTP service (Netscape Messaging Server 4.15 Patch 7 (built Sep 12 2001))</example>
@@ -736,6 +800,7 @@
736
800
  <param pos="3" name="service.version.version"/>
737
801
  <param pos="0" name="service.cpe23" value="cpe:/a:netscape:messaging_server:{service.version}"/>
738
802
  </fingerprint>
803
+
739
804
  <fingerprint pattern="^([^ ]+) ESMTP server \(Netscape Messaging Server - Version ([\d.]+)\) ready (\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d) *$">
740
805
  <description>Netscape Messaging Server - w/o patch number</description>
741
806
  <example host.name="foo.bar" service.version="3.6" system.time="Thu, 30 Nov 2017 04:19:10 -0500">foo.bar ESMTP server (Netscape Messaging Server - Version 3.6) ready Thu, 30 Nov 2017 04:19:10 -0500</example>
@@ -748,6 +813,7 @@
748
813
  <param pos="0" name="service.cpe23" value="cpe:/a:netscape:messaging_server:{service.version}"/>
749
814
  <param pos="3" name="system.time"/>
750
815
  </fingerprint>
816
+
751
817
  <fingerprint pattern="^([^ ]+) Lotus SMTP MTA Service Ready *$">
752
818
  <description>Lotus Notes 4 SMTP MTA</description>
753
819
  <example host.name="foo.bar">foo.bar Lotus SMTP MTA Service Ready</example>
@@ -757,10 +823,12 @@
757
823
  <param pos="0" name="service.version" value="4"/>
758
824
  <param pos="1" name="host.name"/>
759
825
  </fingerprint>
826
+
760
827
  <!-- Branding is muddy here, IBM bought Lotus in 1995, server product wasn't
761
828
  named Domino until Dec 1996 w/ v 4.5. Seems to have started being
762
829
  called IBM Domino as of v9.0 on product and in banners.
763
830
  -->
831
+
764
832
  <fingerprint pattern="^ ?(?:([^ ]+))? *ESMTP Service \(Lotus Domino Release (\d+\.[\w.]+(?: FP\d+)?(?: HF\d+)?)(?: \(Intl\))?\) ready at (.+) *$">
765
833
  <description>Lotus Domino SMTP MTA</description>
766
834
  <example service.version="8.5">foo.bar ESMTP Service (Lotus Domino Release 8.5) ready at Thu, 30 Nov 2017 17:01:45 +0800</example>
@@ -781,6 +849,7 @@
781
849
  <param pos="0" name="service.cpe23" value="cpe:/a:ibm:lotus_domino:{service.version}"/>
782
850
  <param pos="3" name="system.time"/>
783
851
  </fingerprint>
852
+
784
853
  <fingerprint pattern="^ ?(?:([^ ]+))? *ESMTP Service \(IBM Domino Release (\d+\.[\w.]+(?: HF\d+)?)\) ready at (.+) *$">
785
854
  <description>IBM Domino SMTP MTA</description>
786
855
  <example host.name="foo.bar" service.version="9.0.1FP8 HF475">foo.bar ESMTP Service (IBM Domino Release 9.0.1FP8 HF475) ready at Thu, 30 Nov 2017 17:55:48 +0900</example>
@@ -794,6 +863,7 @@
794
863
  <param pos="2" name="service.version"/>
795
864
  <param pos="3" name="system.time"/>
796
865
  </fingerprint>
866
+
797
867
  <fingerprint pattern="^([^ ]+) ESMTP Service \(Lotus Domino Build (V?[\w.]+)\) ready at (.+) *$">
798
868
  <description>Lotus Domino (some early build)</description>
799
869
  <example notes.build.version="166.1">foo.bar ESMTP Service (Lotus Domino Build 166.1) ready at Thu, 16 Nov 2017 10:39:22 +0200</example>
@@ -805,6 +875,7 @@
805
875
  <param pos="2" name="notes.build.version"/>
806
876
  <param pos="3" name="system.time"/>
807
877
  </fingerprint>
878
+
808
879
  <fingerprint pattern="^Lotus Notes ESMTP Server X[^ ]+\.[^ ]+ on (.+) ready at (.+)\. *$">
809
880
  <description>Lotus Notes 4.x with SMTP MTA add-on</description>
810
881
  <example host.name="FooBar R45 Server/Foo Bar/US" system.time="Fri, 15 Feb 2002 09:46:19 -0800">Lotus Notes ESMTP Server X1.0 on FooBar R45 Server/Foo Bar/US ready at Fri, 15 Feb 2002 09:46:19 -0800.</example>
@@ -815,6 +886,7 @@
815
886
  <param pos="1" name="host.name"/>
816
887
  <param pos="2" name="system.time"/>
817
888
  </fingerprint>
889
+
818
890
  <fingerprint pattern="^([^ ]+) NTMail \(v(\d+\.\d+\.\d+)/([^ ]+)\) ready for ESMTP transfer *$">
819
891
  <description>NTMail (http://www.gordano.com)</description>
820
892
  <example host.name="foo.bar" service.version="7.02.3037" ntmail.id="NU1319.01.5b000000">foo.bar NTMail (v7.02.3037/NU1319.01.5b000000) ready for ESMTP transfer </example>
@@ -825,6 +897,7 @@
825
897
  <param pos="2" name="service.version"/>
826
898
  <param pos="3" name="ntmail.id"/>
827
899
  </fingerprint>
900
+
828
901
  <fingerprint pattern="^([^ ]+) WindowsNT SMTP Server v([^ ]+\.[^ ]+\.[^ ]+)/([^ ]+)/SP ESMTP ready at (.+) *$">
829
902
  <description>NTMail - versions 3.x and earlier (it was called Internet Shopper's something or other)</description>
830
903
  <example host.name="foo.bar" service.version="3.03.0018" ntmail.id="7.aavn">foo.bar WindowsNT SMTP Server v3.03.0018/7.aavn/SP ESMTP ready at Thu, 30 Nov 2017 10:15:31 +0100</example>
@@ -837,6 +910,7 @@
837
910
  <param pos="3" name="ntmail.id"/>
838
911
  <param pos="4" name="system.time"/>
839
912
  </fingerprint>
913
+
840
914
  <fingerprint pattern="^(\S+)(?: UCX)? V\S+, OpenVMS V(\S+) (\S+) ready at .*$">
841
915
  <description>Some unknown mail server on OpenVMS</description>
842
916
  <example host.name="foo.bar" os.arch="IA64" os.version="8.4">foo.bar V5.7-ECO4, OpenVMS V8.4 IA64 ready at Wed, 20 May 2015 01:22:32 +0100 (BST)</example>
@@ -851,6 +925,7 @@
851
925
  <param pos="3" name="os.arch"/>
852
926
  <param pos="0" name="os.cpe23" value="cpe:/o:hp:openvms:{os.version}"/>
853
927
  </fingerprint>
928
+
854
929
  <fingerprint pattern="^(\S+) E?SMTP PMailServer(?: \[Free Edition\])? ([\d\.]+); (\w\w\w, +\d+ \w\w\w \d\d\d\d [\d:]+)$">
855
930
  <description>A.K.I PMail</description>
856
931
  <example host.name="foo.bar" service.version="1.91">foo.bar ESMTP PMailServer [Free Edition] 1.91; Fri, 22 May 2015 02:04:56</example>
@@ -862,6 +937,7 @@
862
937
  <param pos="2" name="service.version"/>
863
938
  <param pos="3" name="system.time"/>
864
939
  </fingerprint>
940
+
865
941
  <fingerprint pattern="^([^ ]+) Postfix \(Postfix-([^ ]+)-([^ ]+)\) \(([^ ]+)\) *$">
866
942
  <description>Postfix - version + build, followed by os</description>
867
943
  <param pos="0" name="service.family" value="Postfix"/>
@@ -871,6 +947,7 @@
871
947
  <param pos="3" name="service.version.version"/>
872
948
  <param pos="4" name="postfix.os.info"/>
873
949
  </fingerprint>
950
+
874
951
  <fingerprint pattern="^([^ ]+) ESMTP Postfix \(?([\d.]+)\)?$">
875
952
  <description>Postfix - Std semantic versioning, w/ optional parens</description>
876
953
  <example service.version="3.1.4">foo.bar ESMTP Postfix (3.1.4)</example>
@@ -880,6 +957,7 @@
880
957
  <param pos="1" name="host.name"/>
881
958
  <param pos="2" name="service.version"/>
882
959
  </fingerprint>
960
+
883
961
  <fingerprint pattern="^([^ ]+) ESMTP Postfix \((?:Postfix-)?([\d.]+)-([^ ]+)\)$">
884
962
  <description>Postfix - version + build</description>
885
963
  <example service.version="2.8" service.version.version="20100306">foo.bar ESMTP Postfix (2.8-20100306)</example>
@@ -889,6 +967,7 @@
889
967
  <param pos="2" name="service.version"/>
890
968
  <param pos="3" name="service.version.version"/>
891
969
  </fingerprint>
970
+
892
971
  <fingerprint pattern="^([^ ]+) +E?SMTP Postfix \(Ubuntu\)$">
893
972
  <description>Postfix - Ubuntu</description>
894
973
  <example>foo.bar ESMTP Postfix (Ubuntu)</example>
@@ -900,6 +979,7 @@
900
979
  <param pos="0" name="os.product" value="Linux"/>
901
980
  <param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:-"/>
902
981
  </fingerprint>
982
+
903
983
  <fingerprint pattern="^([^ ]+)(?: ESMTP)? Hi, I'm a Mail-in-a-Box \(Ubuntu/Postfix; see https://mailinabox.email/\)$">
904
984
  <description>Postfix - Ubuntu, Mail-in-a-Box package</description>
905
985
  <example>foo.bar ESMTP Hi, I'm a Mail-in-a-Box (Ubuntu/Postfix; see https://mailinabox.email/)</example>
@@ -912,6 +992,7 @@
912
992
  <param pos="0" name="os.product" value="Linux"/>
913
993
  <param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:-"/>
914
994
  </fingerprint>
995
+
915
996
  <fingerprint pattern="^([^ ]+) +E?SMTP Postfix \(Debian/GNU\)$">
916
997
  <description>Postfix - Debian</description>
917
998
  <example>foo.bar ESMTP Postfix (Debian/GNU)</example>
@@ -923,6 +1004,7 @@
923
1004
  <param pos="0" name="os.product" value="Linux"/>
924
1005
  <param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:-"/>
925
1006
  </fingerprint>
1007
+
926
1008
  <fingerprint pattern="^([^ ]+) ESMTP.* Postfix *\(.+\) *$">
927
1009
  <description>Postfix - generic banner with amusing comments in parentheses</description>
928
1010
  <example>foo.bar ESMTP Postfix (lol)</example>
@@ -930,6 +1012,7 @@
930
1012
  <param pos="0" name="service.product" value="Postfix"/>
931
1013
  <param pos="1" name="host.name"/>
932
1014
  </fingerprint>
1015
+
933
1016
  <fingerprint pattern="^(?i)([^ ]+) +E?SMTP.* Postfix *$">
934
1017
  <description>Postfix - generic banner</description>
935
1018
  <example>foo.bar ESMTP Postfix</example>
@@ -938,12 +1021,14 @@
938
1021
  <param pos="0" name="service.product" value="Postfix"/>
939
1022
  <param pos="1" name="host.name"/>
940
1023
  </fingerprint>
1024
+
941
1025
  <fingerprint pattern="^ *ESMTP Postfix$">
942
1026
  <description>Postfix - banner without hostname or version</description>
943
1027
  <example>ESMTP Postfix</example>
944
1028
  <param pos="0" name="service.family" value="Postfix"/>
945
1029
  <param pos="0" name="service.product" value="Postfix"/>
946
1030
  </fingerprint>
1031
+
947
1032
  <fingerprint pattern="^(?i)([^ ]+) POSTFIX$">
948
1033
  <description>Postfix - generic w/o ESMTP</description>
949
1034
  <example host.name="foo.bar">foo.bar Postfix</example>
@@ -951,6 +1036,7 @@
951
1036
  <param pos="0" name="service.product" value="Postfix"/>
952
1037
  <param pos="1" name="host.name"/>
953
1038
  </fingerprint>
1039
+
954
1040
  <fingerprint pattern="^([^ ]+) ESMTP server \((?i:P)ost\.(?i:O)ffice v([^ ]+\.[^ ]+)(?: release)? (.+) ID# ([^ ]+)\) ready (.+) *$">
955
1041
  <description>Post.Office</description>
956
1042
  <example host.name="foo.bar" service.version="3.8.4" postoffice.build="116" postoffice.id="1001-65749U100L10S0V38" system.time="Thu, 30 Nov 2017 18:46:24 +0900">foo.bar ESMTP server (post.office v3.8.4 release 116 ID# 1001-65749U100L10S0V38) ready Thu, 30 Nov 2017 18:46:24 +0900</example>
@@ -964,12 +1050,14 @@
964
1050
  <param pos="4" name="postoffice.id"/>
965
1051
  <param pos="5" name="system.time"/>
966
1052
  </fingerprint>
1053
+
967
1054
  <fingerprint pattern="^([^ ]+) Generic SMTP handler *$">
968
1055
  <description>Raptor Firewall (low confidence)</description>
969
1056
  <example host.name="foo.bar">foo.bar Generic SMTP handler</example>
970
1057
  <param pos="0" name="service.product" value="raptor"/>
971
1058
  <param pos="1" name="host.name"/>
972
1059
  </fingerprint>
1060
+
973
1061
  <fingerprint pattern="^(\S+) SAP (\S+) E?SMTP service ready$">
974
1062
  <description>SAP SMTP Server</description>
975
1063
  <example host.name="foo.bar" service.version="8.04(53)">foo.bar SAP 8.04(53) ESMTP service ready</example>
@@ -978,12 +1066,14 @@
978
1066
  <param pos="2" name="service.version"/>
979
1067
  <param pos="1" name="host.name"/>
980
1068
  </fingerprint>
1069
+
981
1070
  <fingerprint pattern="^Sendmail ESMTP ready$">
982
1071
  <description>Sendmail - short banner w/o hostname, version, platform, or date.</description>
983
1072
  <example>Sendmail ESMTP ready</example>
984
1073
  <param pos="0" name="service.family" value="Sendmail"/>
985
1074
  <param pos="0" name="service.product" value="Sendmail"/>
986
1075
  </fingerprint>
1076
+
987
1077
  <fingerprint pattern="^([^ ]+) +ESMTP +Sendmail +([^ ]+) \(PHNE_([^ ]+)\) */ *(.+); *(.+) \(.+\)$">
988
1078
  <description>Sendmail - HP-UX with a PHNE (HP Networking patch) installed</description>
989
1079
  <example host.name="foo.bar" service.version="8.8.6" sendmail.config.version="8.7.1">foo.bar ESMTP Sendmail 8.8.6 (PHNE_14041)/8.7.1; Tue, 6 Feb 2001 10:04:32 -0300 (SAT)</example>
@@ -1000,6 +1090,7 @@
1000
1090
  <param pos="4" name="sendmail.config.version"/>
1001
1091
  <param pos="5" name="system.time"/>
1002
1092
  </fingerprint>
1093
+
1003
1094
  <fingerprint pattern="^(\S+) ESMTP Sendmail \S+ version ([\d\.]+) - Revision \S+ HP-UX([\d\.]+).*(\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ \w\w\w)$">
1004
1095
  <description>Sendmail - HP-UX</description>
1005
1096
  <example host.name="foo.bar" os.version="11.31" service.version="8.13.3">foo.bar ESMTP Sendmail @(#)Sendmail version 8.13.3 - Revision 1.004:: HP-UX11.31 - 03rd February,2010/8.11.1; Wed, 20 May 2015 23:35:38 GMT</example>
@@ -1015,6 +1106,7 @@
1015
1106
  <param pos="2" name="service.version"/>
1016
1107
  <param pos="4" name="system.time"/>
1017
1108
  </fingerprint>
1109
+
1018
1110
  <fingerprint pattern="^([^ ]+) +ESMTP +Sendmail +([^ ]+)/UW([^ ]+) ready at *(.+) \(.+\) *$">
1019
1111
  <description>Sendmail - Unixware</description>
1020
1112
  <example service.version="8.8.7">foo.bar ESMTP Sendmail 8.8.7/UW7.1.0 ready at Tue, 6 Feb 2001 16:39:30 -0300 (GMT-0300)</example>
@@ -1029,6 +1121,7 @@
1029
1121
  <param pos="3" name="os.version"/>
1030
1122
  <param pos="4" name="system.time"/>
1031
1123
  </fingerprint>
1124
+
1032
1125
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail AIX([^/]+)/UCB ([^;]+); (.+) \(.+\)$">
1033
1126
  <description>Sendmail - AIX (UCB variant)</description>
1034
1127
  <example os.version="4.2" service.version="8.7">foo.bar ESMTP Sendmail AIX4.2/UCB 8.7; Sun, 29 Jul 2001 22:34:37 -0400 (EDT)</example>
@@ -1044,6 +1137,7 @@
1044
1137
  <param pos="3" name="service.version"/>
1045
1138
  <param pos="4" name="system.time"/>
1046
1139
  </fingerprint>
1140
+
1047
1141
  <fingerprint pattern="^([^ ]+) Sendmail AIX([^/]+)/UCB ([^/]+)/([^ ]+) ready at (.+)$">
1048
1142
  <description>Sendmail - AIX (UCB/ready at variant)</description>
1049
1143
  <example>foo.bar Sendmail AIX 4.1/UCB 5.64/4.03 ready at Mon, 30 Jul 2001 00:42:21 -0500</example>
@@ -1060,6 +1154,7 @@
1060
1154
  <param pos="4" name="sendmail.config.version"/>
1061
1155
  <param pos="5" name="system.time"/>
1062
1156
  </fingerprint>
1157
+
1063
1158
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail AIX([^/]+)/([^/]+)/([^;]+); (.+)(?: \(.+\))?$">
1064
1159
  <description>Sendmail - AIX</description>
1065
1160
  <example host.name="foo.bar" os.version="4.2" service.version="8.7" sendmail.config.version="8.8">foo.bar ESMTP Sendmail AIX4.2/8.7/8.8; Sun, 29 Jul 2001 22:34:37 -0400 (EDT)</example>
@@ -1077,6 +1172,7 @@
1077
1172
  <param pos="4" name="sendmail.config.version"/>
1078
1173
  <param pos="5" name="system.time"/>
1079
1174
  </fingerprint>
1175
+
1080
1176
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/SuSE Linux ([^;]+); (.+)$">
1081
1177
  <description>Sendmail - SuSE Linux</description>
1082
1178
  <example>foo.bar ESMTP Sendmail 8.9.3/8.9.3/SuSE Linux 8.9.3-0.1; Mon, 30 Jul 2001 04:48:54 +0200</example>
@@ -1093,6 +1189,7 @@
1093
1189
  <param pos="4" name="sendmail.vendor.version"/>
1094
1190
  <param pos="5" name="system.time"/>
1095
1191
  </fingerprint>
1192
+
1096
1193
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^ ]+)\+Sun/([^ ]+); (.+)$">
1097
1194
  <description>Sendmail - Solaris with date (no time offeset variant)</description>
1098
1195
  <example>foo.bar ESMTP Sendmail 8.9.3+Sun/8.9.1; Mon, 30 Jul 2001 02:50:22 GMT</example>
@@ -1108,6 +1205,7 @@
1108
1205
  <param pos="3" name="sendmail.config.version"/>
1109
1206
  <param pos="4" name="system.time"/>
1110
1207
  </fingerprint>
1208
+
1111
1209
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^ ]+)\+Sun/([^ ]+) ready at (.+) \(.+\)$">
1112
1210
  <description>Sendmail - Solaris with date (ready variant)</description>
1113
1211
  <example>foo.bar ESMTP Sendmail 8.8.8+Sun/8.6.4 ready at Thu, 15 Nov 2000 11:40:32 -0800 (PST)</example>
@@ -1123,6 +1221,7 @@
1123
1221
  <param pos="3" name="sendmail.config.version"/>
1124
1222
  <param pos="4" name="system.time"/>
1125
1223
  </fingerprint>
1224
+
1126
1225
  <fingerprint pattern="^([^ ]+) ESMTP (?:Debian )?Sendmail ([^/]+)/([^/]+)/Debian ([^/]+); (.+) *$">
1127
1226
  <description>Sendmail - Debian</description>
1128
1227
  <example service.version="8.12.0.Beta7" sendmail.config.version="8.12.0.Beta7" sendmail.vendor.version="8.12.0.Beta7-1">foo.bar ESMTP Debian Sendmail 8.12.0.Beta7/8.12.0.Beta7/Debian 8.12.0.Beta7-1; Sun, 29 Jul 2001 18:52:20 -0800</example>
@@ -1140,6 +1239,7 @@
1140
1239
  <param pos="4" name="sendmail.vendor.version"/>
1141
1240
  <param pos="5" name="system.time"/>
1142
1241
  </fingerprint>
1242
+
1143
1243
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d\+(?:wheezy|deb7u)\d; (.+); .*$">
1144
1244
  <description>Sendmail - Debian 7.x (wheezy)</description>
1145
1245
  <example service.version="8.14.4">foo.bar ESMTP Sendmail 8.14.4/8.14.4/Debian-4+wheezy1; Thu, 30 Nov 2017 10:33:05 +0100; (No UCE/UBE) logging access from: xyz.foo.bar(OK)-xyz.foo.bar [10.0.0.1]</example>
@@ -1157,6 +1257,7 @@
1157
1257
  <param pos="3" name="sendmail.config.version"/>
1158
1258
  <param pos="4" name="system.time"/>
1159
1259
  </fingerprint>
1260
+
1160
1261
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d\+deb8u\d; (.+); .*$">
1161
1262
  <description>Sendmail - Debian 8.x (jessie)</description>
1162
1263
  <example service.version="8.14.4">foo.bar ESMTP Sendmail 8.14.4/8.14.4/Debian-8+deb8u2; Thu, 30 Nov 2017 10:25:48 +0100; (No UCE/UBE) logging access from: xyz.foo.bar(OK)-xyz.foo.bar [10.0.0.1]</example>
@@ -1173,6 +1274,7 @@
1173
1274
  <param pos="3" name="sendmail.config.version"/>
1174
1275
  <param pos="4" name="system.time"/>
1175
1276
  </fingerprint>
1277
+
1176
1278
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d\+lenny\d; (.+); .*$">
1177
1279
  <description>Sendmail - Debian 5.x (lenny)</description>
1178
1280
  <example service.version="8.14.3">foo.bar ESMTP Sendmail 8.14.3/8.14.3/Debian-5+lenny1; Thu, 30 Nov 2017 12:29:40 +0300; (No UCE/UBE) logging access from: xyz.foo.bar(OK)-xyz.foo.bar [10.0.0.1]</example>
@@ -1189,6 +1291,7 @@
1189
1291
  <param pos="3" name="sendmail.config.version"/>
1190
1292
  <param pos="4" name="system.time"/>
1191
1293
  </fingerprint>
1294
+
1192
1295
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d\+etch\d; (.+); .*$">
1193
1296
  <description>Sendmail - Debian 4.x (etch)</description>
1194
1297
  <example service.version="8.13.8" sendmail.config.version="8.13.8">foo.bar ESMTP Sendmail 8.13.8/8.13.8/Debian-3+etch1; Thu, 30 Nov 2017 10:28:23 +0100; (No UCE/UBE) logging access from: xyz.foo.bar(OK)-xyz.foo.bar [10.0.0.1]</example>
@@ -1205,6 +1308,7 @@
1205
1308
  <param pos="3" name="sendmail.config.version"/>
1206
1309
  <param pos="4" name="system.time"/>
1207
1310
  </fingerprint>
1311
+
1208
1312
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\dsarge\d; (.+); .*$">
1209
1313
  <description>Sendmail - Debian 3.1 (sarge)</description>
1210
1314
  <example service.version="8.13.4">foo.bar ESMTP Sendmail 8.13.4/8.13.4/Debian-3sarge1; Thu, 30 Nov 2017 10:55:47 +0100; (No UCE/UBE) logging access from: xyz.foo.bar(OK)-xyz.foo.bar [10.0.0.1]</example>
@@ -1221,6 +1325,7 @@
1221
1325
  <param pos="3" name="sendmail.config.version"/>
1222
1326
  <param pos="4" name="system.time"/>
1223
1327
  </fingerprint>
1328
+
1224
1329
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d(?:\.\d)?(?:build\d)?;+ (.+); .*$">
1225
1330
  <description>Sendmail - Debian patch only</description>
1226
1331
  <example service.version="8.15.2">foo.bar ESMTP Sendmail 8.15.2/8.15.2/Debian-3; Thu, 30 Nov 2017 10:55:50 +0200; (No UCE/UBE) logging access from: xyz.foo.bar(OK)-xyz.foo.bar [10.0.0.1]</example>
@@ -1238,6 +1343,7 @@
1238
1343
  <param pos="3" name="sendmail.config.version"/>
1239
1344
  <param pos="4" name="system.time"/>
1240
1345
  </fingerprint>
1346
+
1241
1347
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/[^/]+/Debian-[\d.]+ubuntu[^ ]*; (.+); .*$">
1242
1348
  <description>Sendmail - Ubuntu</description>
1243
1349
  <example service.version="8.13.5.20060308">foo.bar ESMTP Sendmail 8.13.5.20060308/8.13.5/Debian-3ubuntu1.1; Fri, 24 Jul 2009 01:41:21 -0700; (No UCE/UBE) logging access from: xyz.foo.bar(OK)-xyz.foo.bar [10.0.0.1]</example>
@@ -1253,6 +1359,7 @@
1253
1359
  <param pos="2" name="service.version"/>
1254
1360
  <param pos="3" name="system.time"/>
1255
1361
  </fingerprint>
1362
+
1256
1363
  <fingerprint pattern="^([^ ]+) (?:E?SMTP )?Sendmail SMI-([^/]+)/(SMI-SVR4) ready at (.+)$">
1257
1364
  <description>Sendmail - Solaris (SMI variant)</description>
1258
1365
  <example>foo.bar Sendmail SMI-8.6/SMI-SVR4 ready at Sun, 29 Jul 2001 22:58:46 -0400</example>
@@ -1268,6 +1375,7 @@
1268
1375
  <param pos="3" name="sendmail.config.version"/>
1269
1376
  <param pos="4" name="system.time"/>
1270
1377
  </fingerprint>
1378
+
1271
1379
  <fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^ ]+)/(linuxconf); (.+)$">
1272
1380
  <description>Sendmail - unknown platform (linuxconf variant)</description>
1273
1381
  <example>foo.bar ESMTP Sendmail 8.9.3/linuxconf; Sun, 29 Jul 2001 22:48:28 -0400</example>
@@ -1281,6 +1389,7 @@
1281
1389
  <param pos="3" name="sendmail.config.version"/>
1282
1390
  <param pos="4" name="system.time"/>
1283
1391
  </fingerprint>
1392
+
1284
1393
  <fingerprint pattern="^([^ ]+) ESMTP MetaInfo Sendmail ([^ ]+) Build ([^ ]+) \(Berkeley ([^ ]+)\)/([^;]+); (.+)$">
1285
1394
  <description>Sendmail - MetaInfo</description>
1286
1395
  <example host.name="foo.bar" service.version="8.8.6">foo.bar ESMTP MetaInfo Sendmail 2.5 Build 2630 (Berkeley 8.8.6)/8.8.4; Mon, 30 Jul</example>
@@ -1299,6 +1408,7 @@
1299
1408
  <param pos="5" name="sendmail.config.version"/>
1300
1409
  <param pos="6" name="system.time"/>
1301
1410
  </fingerprint>
1411
+
1302
1412
  <fingerprint pattern="^([^ ]+) +ESMTP .*Sendmail +([^/ ]+) */ *([^/ ]+); *((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?)(?: \(.+\))?$">
1303
1413
  <description>Sendmail - optional timezone and timestamp, w/o OS</description>
1304
1414
  <example host.name="foo.bar" service.version="8.9.3+3.4W" sendmail.config.version="8.9.3+3.4W" system.time="Tue, 30 Jan 2001 20:40:09 -0500">foo.bar ESMTP Sendmail 8.9.3+3.4W/8.9.3+3.4W; Tue, 30 Jan 2001 20:40:09 -0500 (EST)</example>
@@ -1314,6 +1424,7 @@
1314
1424
  <param pos="3" name="sendmail.config.version"/>
1315
1425
  <param pos="4" name="system.time"/>
1316
1426
  </fingerprint>
1427
+
1317
1428
  <fingerprint pattern="^([^ ]+) +ESMTP .*Sendmail +([^/ ]+) */ *([^/ ]+); *(\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ \w+)\.?$">
1318
1429
  <description>Sendmail - with timezone and timestamp, w/o timezone offset or OS</description>
1319
1430
  <example host.name="foo.bar" service.version="8.14.4" sendmail.config.version="8.14.4" system.time="Thu, 5 Apr 2018 19:30:58 GMT">foo.bar ESMTP Sendmail 8.14.4/8.14.4; Thu, 5 Apr 2018 19:30:58 GMT</example>
@@ -1324,6 +1435,7 @@
1324
1435
  <param pos="3" name="sendmail.config.version"/>
1325
1436
  <param pos="4" name="system.time"/>
1326
1437
  </fingerprint>
1438
+
1327
1439
  <fingerprint pattern="^([^ ]+) +ESMTP +Sendmail ([^ ]+) ready at *(\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)(?: \(.+\))$">
1328
1440
  <description>Sendmail - with version and date (optional timezone), w/o config version</description>
1329
1441
  <example host.name="foo.bar" service.version="8.8.8" system.time="Tue, 6 Feb 2001 14:37:14 +0100">foo.bar ESMTP Sendmail 8.8.8 ready at Tue, 6 Feb 2001 14:37:14 +0100 (CET)</example>
@@ -1334,6 +1446,7 @@
1334
1446
  <param pos="2" name="service.version"/>
1335
1447
  <param pos="3" name="system.time"/>
1336
1448
  </fingerprint>
1449
+
1337
1450
  <fingerprint pattern="^([^ ]+) +ESMTP +Sendmail ([^ /]+) - \([^\)]+\)/[^ ]+;? *(\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)(?: \(.+\)) *$">
1338
1451
  <description>Sendmail - revision variant 1</description>
1339
1452
  <example>foo.foo.bar ESMTP Sendmail 8.11.1 - (Revision 1.010)/8.9.3; Sat, 22 Jan 2011 10:08:35 -0500 (EST)</example>
@@ -1344,6 +1457,7 @@
1344
1457
  <param pos="2" name="service.version"/>
1345
1458
  <param pos="3" name="system.time"/>
1346
1459
  </fingerprint>
1460
+
1347
1461
  <fingerprint pattern="^([^ ]+) +ESMTP +Sendmail +(?:[^ ]+) +version +([^ ]+) +- +(?:[^;]+); *(\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)(?: \(.+\)) *$">
1348
1462
  <description>Sendmail - revision variant 2</description>
1349
1463
  <example>foo.foo.bar ESMTP Sendmail @(#)Sendmail version 8.13.3 - Revision 2.007 - 8 December 2008/8.8.6; Wed, 21 Jul 2010 11:17:01 -0400 (EDT)</example>
@@ -1354,6 +1468,7 @@
1354
1468
  <param pos="2" name="service.version"/>
1355
1469
  <param pos="3" name="system.time"/>
1356
1470
  </fingerprint>
1471
+
1357
1472
  <fingerprint pattern="^(?i)([^ ]+) +(?:ESMTP +)?Sendmail *(?: Ready.? ?)?(?:;|at)? ?((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?)(?: \(.+\))?$">
1358
1473
  <description>Sendmail - with date, w/o version or platform, optional status string.</description>
1359
1474
  <example host.name="foo.bar">foo.bar ESMTP Sendmail ; Thu, 30 Nov 2017 17:50:14 +0900</example>
@@ -1371,6 +1486,7 @@
1371
1486
  <param pos="2" name="system.time"/>
1372
1487
  <param pos="0" name="system.time.format" value="EEE, d MMM yyyy HH:mm:ss Z"/>
1373
1488
  </fingerprint>
1489
+
1374
1490
  <fingerprint pattern="^ESMTP Sendmail +([^/ ]+) */ *([^/ ]+); (\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)$">
1375
1491
  <description>Sendmail - with version and date, w/o hostname or platform (semicolon variant)</description>
1376
1492
  <example service.version="8.13.1" sendmail.config.version="8.13.1" system.time="Thu, 30 Nov 2017 01:58:22 -0700">ESMTP Sendmail 8.13.1/8.13.1; Thu, 30 Nov 2017 01:58:22 -0700</example>
@@ -1381,6 +1497,7 @@
1381
1497
  <param pos="2" name="sendmail.config.version"/>
1382
1498
  <param pos="3" name="system.time"/>
1383
1499
  </fingerprint>
1500
+
1384
1501
  <fingerprint pattern="^([^ ]+) +ESMTP +Sendmail ([^ /]+) \([^\)]+\) *(.+) \(.+\)$">
1385
1502
  <description>Sendmail - unknown (date in version string variant)</description>
1386
1503
  <example>mail.foo.bar ESMTP Sendmail 8.11.1 (1.1.2.11/12Jul01-1016AM) Wed, 8 Jan 2003 11:21:22 +0100 (MET)</example>
@@ -1391,7 +1508,9 @@
1391
1508
  <param pos="2" name="service.version"/>
1392
1509
  <param pos="3" name="system.time"/>
1393
1510
  </fingerprint>
1511
+
1394
1512
  <!-- *Sendmail* fingerprints after this line had NO matches in 2017.11.30 Project Sonar data set-->
1513
+
1395
1514
  <fingerprint pattern="^([^ ]+) Sendmail ([^;]+); ([^;\.]+)$">
1396
1515
  <description>Sendmail - unknown platform, variant 1</description>
1397
1516
  <param pos="0" name="service.family" value="Sendmail"/>
@@ -1401,6 +1520,7 @@
1401
1520
  <param pos="2" name="service.version"/>
1402
1521
  <param pos="3" name="system.time"/>
1403
1522
  </fingerprint>
1523
+
1404
1524
  <fingerprint pattern="^Sendmail ([^/]+)/([^/]+) ready on ([^ ]+)$">
1405
1525
  <description>Sendmail - basic with version and date</description>
1406
1526
  <param pos="0" name="service.family" value="Sendmail"/>
@@ -1409,6 +1529,7 @@
1409
1529
  <param pos="2" name="sendmail.config.version"/>
1410
1530
  <param pos="3" name="host.name"/>
1411
1531
  </fingerprint>
1532
+
1412
1533
  <fingerprint pattern="^([^ ]+) -- Server ESMTP \(Sun Internet Mail Server sims\.(\d\.[\w.]+)\)$">
1413
1534
  <description>Sun Internet Mail Server</description>
1414
1535
  <example host.name="foo.bar" service.version="4.0.2000.10.12.16.25.p8">foo.bar -- Server ESMTP (Sun Internet Mail Server sims.4.0.2000.10.12.16.25.p8)</example>
@@ -1422,6 +1543,7 @@
1422
1543
  <param pos="1" name="host.name"/>
1423
1544
  <param pos="2" name="service.version"/>
1424
1545
  </fingerprint>
1546
+
1425
1547
  <fingerprint pattern="^(?:2.0.0 )?([^ ]+) ESMTP ecelerity (\d\.[\d.]+) r\(([^)]+)\) (\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d) *$">
1426
1548
  <description>Ecelerity</description>
1427
1549
  <example host.name="foo.bar" system.time="Thu, 30 Nov 2017 05:11:00 -0500">2.0.0 foo.bar ESMTP ecelerity 4.0.0.43760 r(Platform:4.0.0.1) Thu, 30 Nov 2017 05:11:00 -0500</example>
@@ -1437,6 +1559,7 @@
1437
1559
  <param pos="3" name="service.component.version"/>
1438
1560
  <param pos="4" name="system.time"/>
1439
1561
  </fingerprint>
1562
+
1440
1563
  <fingerprint pattern="^(?i)([^ ]+) SMTP Server SLMail v?(\d\.[\d.]+) Ready ESMTP spoken here *$">
1441
1564
  <description>Seattle Labs SLMail server for Windows NT/2k (v2.7 runs on Win9x)</description>
1442
1565
  <example service.version="2.7">foo.bar Smtp Server SLMail v2.7 Ready ESMTP spoken here</example>
@@ -1448,6 +1571,7 @@
1448
1571
  <param pos="1" name="host.name"/>
1449
1572
  <param pos="2" name="service.version"/>
1450
1573
  </fingerprint>
1574
+
1451
1575
  <fingerprint pattern="^([^ ]+) +ESMTP Symantec Mail Security$">
1452
1576
  <description>Symantec Mail Security for SMTP</description>
1453
1577
  <example host.name="foo.bar">foo.bar ESMTP Symantec Mail Security</example>
@@ -1455,6 +1579,7 @@
1455
1579
  <param pos="0" name="service.product" value="Symantec Mail Security for SMTP"/>
1456
1580
  <param pos="1" name="host.name"/>
1457
1581
  </fingerprint>
1582
+
1458
1583
  <fingerprint pattern="^([^ ]+) ESMTP Symantec Messaging Gateway$">
1459
1584
  <description>Symantec Mail Gateway</description>
1460
1585
  <example host.name="foo.bar">foo.bar ESMTP Symantec Messaging Gateway</example>
@@ -1462,7 +1587,9 @@
1462
1587
  <param pos="0" name="service.product" value="Symantec Messaging Gateway"/>
1463
1588
  <param pos="1" name="host.name"/>
1464
1589
  </fingerprint>
1590
+
1465
1591
  <!-- SonicWall makes hardware, virtual appliances, and Windows software. The banner doesn't indicate which. -->
1592
+
1466
1593
  <fingerprint pattern="^(?i)([^ ]+) ESMTP SonicWALL \(([\d.]+)\)$">
1467
1594
  <description>SonicWall Email Security</description>
1468
1595
  <example host.name="foo.bar" service.version="9.0.5.2077">foo.bar ESMTP SonicWALL (9.0.5.2077)</example>
@@ -1473,6 +1600,7 @@
1473
1600
  <param pos="1" name="host.name"/>
1474
1601
  <param pos="2" name="service.version"/>
1475
1602
  </fingerprint>
1603
+
1476
1604
  <fingerprint pattern="^([^ ]+) \(PowerMTA\(TM\) v([\d.r]+)\) ESMTP service ready$">
1477
1605
  <description>PowerMTA</description>
1478
1606
  <example host.name="foo.bar" service.version="3.2r24">foo.bar (PowerMTA(TM) v3.2r24) ESMTP service ready</example>
@@ -1482,6 +1610,7 @@
1482
1610
  <param pos="1" name="host.name"/>
1483
1611
  <param pos="2" name="service.version"/>
1484
1612
  </fingerprint>
1613
+
1485
1614
  <fingerprint pattern="^([^ ]+) +VOPmail ESMTP Receiver Version (\d\.[\d.]+) Ready$">
1486
1615
  <description>VOPMail http://www.vircom.com/en/products/vopmail/vopmail.shtml</description>
1487
1616
  <example host.name="foo.bar" service.version="4.0.179.0">foo.bar VOPmail ESMTP Receiver Version 4.0.179.0 Ready</example>
@@ -1491,6 +1620,7 @@
1491
1620
  <param pos="1" name="host.name"/>
1492
1621
  <param pos="2" name="service.version"/>
1493
1622
  </fingerprint>
1623
+
1494
1624
  <fingerprint pattern="^([^ ]+) VPOP3 E?SMTP Server (?:Ready|access not allowed!)$">
1495
1625
  <description>VPOP3 Email server: http://www.pscs.co.uk/products/vpop3/index.html</description>
1496
1626
  <example>foo.bar VPOP3 ESMTP Server Ready</example>
@@ -1501,6 +1631,7 @@
1501
1631
  <param pos="0" name="service.product" value="VPOP3"/>
1502
1632
  <param pos="1" name="host.name"/>
1503
1633
  </fingerprint>
1634
+
1504
1635
  <fingerprint pattern="^([^ ]+) WebShield SMTP V([^ ]+\.[^ ]+) (:?[^ ]+)? ?Network Associates.*Ready at (.+) *$">
1505
1636
  <description>McAfee WebShield</description>
1506
1637
  <example host.name="foo.bar" service.version="4.5" service.version.version="MR1a">foo.bar WebShield SMTP V4.5 MR1a Network Associates, Inc. Ready at Thu Nov 30 09:15:32 2017</example>
@@ -1515,6 +1646,7 @@
1515
1646
  <param pos="0" name="service.cpe23" value="cpe:/a:mcafee:webshield:{service.version}"/>
1516
1647
  <param pos="4" name="system.time"/>
1517
1648
  </fingerprint>
1649
+
1518
1650
  <fingerprint pattern="^([^ ]+) McAfee WebShield ASaP v([^ ]+\.[^ ]+\.[^ ]+): (.+) *$">
1519
1651
  <description>McAfee Webshield ASaP (bundled hardware / software)</description>
1520
1652
  <example host.name="foo.bar" service.version="1.0.1" system.time="Sun, 29 Jul 2001 22:46:18 -0700">foo.bar McAfee WebShield ASaP v1.0.1: Sun, 29 Jul 2001 22:46:18 -0700</example>
@@ -1530,6 +1662,7 @@
1530
1662
  <param pos="0" name="service.cpe23" value="cpe:/a:mcafee:webshield:{service.version}"/>
1531
1663
  <param pos="3" name="system.time"/>
1532
1664
  </fingerprint>
1665
+
1533
1666
  <fingerprint pattern="^([^ ]+) McAfee VirusScreen ASaP v([^ ]+\.[^ ]+): (.+) *$">
1534
1667
  <description>McAfee VirusScreen</description>
1535
1668
  <example host.name="foo.bar" service.version="1.1" system.time="Sun, 20 Jul 2003 09:20:52 -0700">foo.bar McAfee VirusScreen ASaP v1.1: Sun, 20 Jul 2003 09:20:52 -0700</example>
@@ -1545,6 +1678,7 @@
1545
1678
  <param pos="0" name="service.cpe23" value="cpe:/a:mcafee:webshield:{service.version}"/>
1546
1679
  <param pos="3" name="system.time"/>
1547
1680
  </fingerprint>
1681
+
1548
1682
  <fingerprint pattern="^([^ ]+) ESMTP Lyris ListManager service ready$">
1549
1683
  <description>Lyris ListManager</description>
1550
1684
  <example host.name="foo.bar">foo.bar ESMTP Lyris ListManager service ready</example>
@@ -1553,6 +1687,7 @@
1553
1687
  <param pos="0" name="service.product" value="ListManager"/>
1554
1688
  <param pos="1" name="host.name"/>
1555
1689
  </fingerprint>
1690
+
1556
1691
  <fingerprint pattern="^([^ ]+) ESMTP - WinRoute Pro ([^ ]+\.[^ ]+)$">
1557
1692
  <description>WinRoute Pro, runs on 9x/NT/2k http://www.tinysoftware.com/winpro.php</description>
1558
1693
  <example host.name="foo.bar" service.version="4.2.4">foo.bar ESMTP - WinRoute Pro 4.2.4</example>
@@ -1561,6 +1696,7 @@
1561
1696
  <param pos="1" name="host.name"/>
1562
1697
  <param pos="2" name="service.version"/>
1563
1698
  </fingerprint>
1699
+
1564
1700
  <fingerprint pattern="^ESMTP - WinRoute Pro ([^ ]+\.[^ ]+) *(?: #\d)? ?.?((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?)$">
1565
1701
  <description>WinRoute Pro w/o hostname</description>
1566
1702
  <example service.version="4.2.1">ESMTP - WinRoute Pro 4.2.1 Thu, 16 Nov 2017 11:48:15 +0300</example>
@@ -1570,6 +1706,7 @@
1570
1706
  <param pos="1" name="service.version"/>
1571
1707
  <param pos="2" name="system.time"/>
1572
1708
  </fingerprint>
1709
+
1573
1710
  <fingerprint pattern="^([^ ]+) ZMailer Server (\d\.[\d.]+) #([^ ]+) ESMTP ready at (.+) *$">
1574
1711
  <description>ZMailer http://www.zmailer.org/technical.html</description>
1575
1712
  <example service.version="2.99.57" service.version.version="1">foo.bar ZMailer Server 2.99.57 #1 ESMTP ready at Thu, 16 Nov 2017 12:00:12 +0300</example>
@@ -1582,6 +1719,7 @@
1582
1719
  <param pos="3" name="service.version.version"/>
1583
1720
  <param pos="4" name="system.time"/>
1584
1721
  </fingerprint>
1722
+
1585
1723
  <fingerprint pattern="^([^ ]+) ZMailer Server (\d\.[\d.]+) #([^ ]+) ESMTP\+IDENT ready at (.+) *$">
1586
1724
  <description>ZMailer server that supports IDENT</description>
1587
1725
  <example service.version="2.99.55" service.version.version="16">foo.bar ZMailer Server 2.99.55 #16 ESMTP+IDENT ready at Thu, 16 Nov 2017 06:51:42 -0300</example>
@@ -1595,6 +1733,7 @@
1595
1733
  <param pos="3" name="service.version.version"/>
1596
1734
  <param pos="4" name="system.time"/>
1597
1735
  </fingerprint>
1736
+
1598
1737
  <fingerprint pattern="^([^ ]+) Kerio Connect (\d\.[\d.]+) (?:patch (\d) )?ESMTP ready$">
1599
1738
  <description>Kerio Connect ESMTP</description>
1600
1739
  <example host.name="foo.bar" service.version="8.0.2">foo.bar Kerio Connect 8.0.2 ESMTP ready</example>
@@ -1606,6 +1745,7 @@
1606
1745
  <param pos="2" name="service.version"/>
1607
1746
  <param pos="3" name="service.version.version"/>
1608
1747
  </fingerprint>
1748
+
1609
1749
  <fingerprint pattern="^([^ ]+) ESMTP CommuniGate Pro (\d\.[\w.]+)(?:. It is you again :-\()?$">
1610
1750
  <description>Communigate Pro</description>
1611
1751
  <example host.name="foo.bar" service.version="5.3.1">foo.bar ESMTP CommuniGate Pro 5.3.1</example>
@@ -1617,6 +1757,7 @@
1617
1757
  <param pos="1" name="host.name"/>
1618
1758
  <param pos="2" name="service.version"/>
1619
1759
  </fingerprint>
1760
+
1620
1761
  <fingerprint pattern="^(\S+) NO UCE NO UBE NO RELAY PROBES ESMTP">
1621
1762
  <description>Twisted SMTP server</description>
1622
1763
  <example host.name="foo.bar">foo.bar NO UCE NO UBE NO RELAY PROBES ESMTP</example>
@@ -1625,6 +1766,7 @@
1625
1766
  <param pos="0" name="service.product" value="ESMTP"/>
1626
1767
  <param pos="1" name="host.name"/>
1627
1768
  </fingerprint>
1769
+
1628
1770
  <fingerprint pattern="^Cellopoint E-mail Firewall v(\d\.[\d.]+) Build (\d+) ready$">
1629
1771
  <description>Cellopoint E-mail Firewall</description>
1630
1772
  <example service.version="3.9.12" service.version.version="0324">Cellopoint E-mail Firewall v3.9.12 Build 0324 ready</example>
@@ -1634,6 +1776,7 @@
1634
1776
  <param pos="1" name="service.version"/>
1635
1777
  <param pos="2" name="service.version.version"/>
1636
1778
  </fingerprint>
1779
+
1637
1780
  <fingerprint pattern="^ESMTP on WinWebMail \[(\d\.[\d.]+)\] ready\. http://www.winwebmail.com$">
1638
1781
  <description>Ma Jian WinWebMail</description>
1639
1782
  <example service.version="3.9.0.7">ESMTP on WinWebMail [3.9.0.7] ready. http://www.winwebmail.com</example>
@@ -1642,6 +1785,7 @@
1642
1785
  <param pos="0" name="service.product" value="ESMTP"/>
1643
1786
  <param pos="1" name="service.version"/>
1644
1787
  </fingerprint>
1788
+
1645
1789
  <fingerprint pattern="^([^ ]+) Service ready by David.fx \((\d+)\) ESMTP Server \(Tobit.Software, Germany\)$">
1646
1790
  <description>Tobit Software David</description>
1647
1791
  <example service.version="0486">foo.bar Service ready by David.fx (0486) ESMTP Server (Tobit.Software, Germany)</example>
@@ -1651,12 +1795,14 @@
1651
1795
  <param pos="1" name="host.name"/>
1652
1796
  <param pos="2" name="service.version"/>
1653
1797
  </fingerprint>
1798
+
1654
1799
  <fingerprint pattern="^(?i)(\S+) E?SMTP Perl">
1655
1800
  <description>Some simple PERL SMTP server</description>
1656
1801
  <example host.name="foo.bar">foo.bar ESMTP Perl</example>
1657
1802
  <param pos="0" name="service.product" value="Perl"/>
1658
1803
  <param pos="1" name="host.name"/>
1659
1804
  </fingerprint>
1805
+
1660
1806
  <fingerprint pattern="^(?i)(?:([^ ]+) )?E?SMTP(?: (?:Service )?Ready\.?)?$">
1661
1807
  <description>Non-specific banner with optional hostname</description>
1662
1808
  <example host.name="foo.bar">foo.bar ESMTP</example>
@@ -1668,4 +1814,15 @@
1668
1814
  <example>ESMTP READY</example>
1669
1815
  <param pos="1" name="host.name"/>
1670
1816
  </fingerprint>
1671
- </fingerprints>
1817
+
1818
+ <fingerprint pattern="^([^ ]+) ESMTP OpenSMTPD$">
1819
+ <description>OpenSMPTD</description>
1820
+ <example host.name="foo.bar">foo.bar ESMTP OpenSMTPD</example>
1821
+ <param pos="0" name="service.vendor" value="OpenBSD"/>
1822
+ <param pos="0" name="service.family" value="OpenSMTPD"/>
1823
+ <param pos="0" name="service.product" value="OpenSMTPD"/>
1824
+ <param pos="0" name="service.cpe23" value="cpe:/a:openbsd:opensmtpd:-"/>
1825
+ <param pos="1" name="host.name"/>
1826
+ </fingerprint>
1827
+
1828
+ </fingerprints>