recog 2.3.8 → 2.3.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +6 -0
- data/CONTRIBUTING.md +136 -37
- data/README.md +18 -16
- data/bin/recog_cleanup +16 -0
- data/bin/recog_standardize +30 -6
- data/identifiers/README.md +9 -0
- data/identifiers/hw_device.txt +77 -0
- data/identifiers/hw_family.txt +96 -0
- data/identifiers/hw_product.txt +328 -0
- data/identifiers/os_architecture.txt +6 -6
- data/identifiers/os_device.txt +45 -3
- data/identifiers/os_family.txt +206 -41
- data/identifiers/os_product.txt +238 -17
- data/identifiers/service_family.txt +144 -57
- data/identifiers/service_product.txt +384 -83
- data/identifiers/vendor.txt +553 -68
- data/lib/recog/version.rb +1 -1
- data/requirements.txt +1 -1
- data/xml/apache_modules.xml +292 -5
- data/xml/apache_os.xml +41 -2
- data/xml/architecture.xml +11 -3
- data/xml/dns_versionbind.xml +76 -8
- data/xml/favicons.xml +1700 -0
- data/xml/ftp_banners.xml +178 -8
- data/xml/h323_callresp.xml +112 -12
- data/xml/hp_pjl_id.xml +47 -5
- data/xml/html_title.xml +1258 -25
- data/xml/http_cookies.xml +64 -9
- data/xml/http_servers.xml +667 -37
- data/xml/http_wwwauth.xml +141 -26
- data/xml/imap_banners.xml +19 -13
- data/xml/ldap_searchresult.xml +81 -9
- data/xml/mdns_device-info_txt.xml +175 -2
- data/xml/mdns_workstation_txt.xml +4 -2
- data/xml/mysql_banners.xml +134 -7
- data/xml/mysql_error.xml +113 -6
- data/xml/nntp_banners.xml +10 -2
- data/xml/ntp_banners.xml +80 -4
- data/xml/operating_system.xml +89 -3
- data/xml/pop_banners.xml +30 -31
- data/xml/rsh_resp.xml +11 -2
- data/xml/rtsp_servers.xml +22 -2
- data/xml/sip_banners.xml +35 -4
- data/xml/sip_user_agents.xml +29 -2
- data/xml/smb_native_lm.xml +10 -2
- data/xml/smb_native_os.xml +79 -2
- data/xml/smtp_banners.xml +146 -7
- data/xml/smtp_debug.xml +6 -4
- data/xml/smtp_ehlo.xml +7 -5
- data/xml/smtp_expn.xml +13 -4
- data/xml/smtp_help.xml +23 -4
- data/xml/smtp_mailfrom.xml +5 -2
- data/xml/smtp_noop.xml +6 -5
- data/xml/smtp_quit.xml +5 -4
- data/xml/smtp_rcptto.xml +5 -2
- data/xml/smtp_rset.xml +4 -4
- data/xml/smtp_turn.xml +4 -4
- data/xml/smtp_vrfy.xml +14 -4
- data/xml/snmp_sysdescr.xml +731 -24
- data/xml/snmp_sysobjid.xml +47 -2
- data/xml/ssh_banners.xml +175 -5
- data/xml/telnet_banners.xml +266 -15
- data/xml/x11_banners.xml +26 -3
- data/xml/x509_issuers.xml +30 -6
- data/xml/x509_subjects.xml +200 -31
- metadata +8 -2
data/xml/smtp_banners.xml
CHANGED
@@ -1,9 +1,8 @@
|
|
1
|
-
<?xml version=
|
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>
|
@@ -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>
|
@@ -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,7 @@
|
|
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
|
+
|
396
422
|
<fingerprint pattern="^ ?([^, ]+) Exim ESMTP Service ready$">
|
397
423
|
<description>Exim - with hostname </description>
|
398
424
|
<example host.name="foo.bar">foo.bar Exim ESMTP Service ready</example>
|
@@ -402,6 +428,7 @@
|
|
402
428
|
<param pos="0" name="service.cpe23" value="cpe:/a:exim:exim:-"/>
|
403
429
|
<param pos="1" name="host.name"/>
|
404
430
|
</fingerprint>
|
431
|
+
|
405
432
|
<fingerprint pattern="^([^ ]+) FTGate server ready .*$">
|
406
433
|
<description>FTGate mail server, runs on Windows 9x/NT/2k (http://www.ftgate.com)</description>
|
407
434
|
<example host.name="foo.bar">foo.bar FTGate server ready -attitude [C.o.r.E]</example>
|
@@ -410,6 +437,7 @@
|
|
410
437
|
<param pos="0" name="service.product" value="FTGate"/>
|
411
438
|
<param pos="1" name="host.name"/>
|
412
439
|
</fingerprint>
|
440
|
+
|
413
441
|
<fingerprint pattern="^([^ ]+) +SMTP/smap Ready\.$">
|
414
442
|
<description>TIS FWTK and derivatives (other firewalls, like Gauntlet, are derived from TIS)</description>
|
415
443
|
<example host.name="foo.bar">foo.bar SMTP/smap Ready.</example>
|
@@ -418,6 +446,7 @@
|
|
418
446
|
<param pos="0" name="service.product" value="FWTK"/>
|
419
447
|
<param pos="1" name="host.name"/>
|
420
448
|
</fingerprint>
|
449
|
+
|
421
450
|
<fingerprint pattern="^([^ ]+) GroupWise Internet Agent ([^ ]+\.[^ ]+\.[^ ]+) Ready \(C\).* Novell, Inc\. *$">
|
422
451
|
<description>Novell GroupWise Internet Agent - versions 5 and higher</description>
|
423
452
|
<example service.version="5.5.1">foo.bar GroupWise Internet Agent 5.5.1 Ready (C)1993, 1998 Novell, Inc.</example>
|
@@ -428,6 +457,7 @@
|
|
428
457
|
<param pos="2" name="service.version"/>
|
429
458
|
<param pos="0" name="service.cpe23" value="cpe:/a:novell:groupwise:{service.version}"/>
|
430
459
|
</fingerprint>
|
460
|
+
|
431
461
|
<fingerprint pattern="^([^ ]+) GroupWise Internet Agent (\d+\.[\d.]+) Copyright .*\d{4}-\d{4} Novell, Inc..* All rights reserved. Ready *$">
|
432
462
|
<description>Novell GroupWise Internet Agent - versions 5 and higher, second variant</description>
|
433
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>
|
@@ -439,6 +469,7 @@
|
|
439
469
|
<param pos="2" name="service.version"/>
|
440
470
|
<param pos="0" name="service.cpe23" value="cpe:/a:novell:groupwise:{service.version}"/>
|
441
471
|
</fingerprint>
|
472
|
+
|
442
473
|
<fingerprint pattern="^([^ ]+) GroupWise SMTP/MIME Daemon ([^ ]+\.[^ ]+) v([^ ]+) Ready \(C\).* Novell, Inc\. *$">
|
443
474
|
<description>Novell GroupWise - versions below 5</description>
|
444
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>
|
@@ -450,6 +481,7 @@
|
|
450
481
|
<param pos="3" name="service.version.version"/>
|
451
482
|
<param pos="0" name="service.cpe23" value="cpe:/a:novell:groupwise:{service.version}"/>
|
452
483
|
</fingerprint>
|
484
|
+
|
453
485
|
<fingerprint pattern="^([^ ]+) (?:ESMTP )?running IBM VM SMTP (.+)(?:; | on )(.+) *$">
|
454
486
|
<description>IBM SMTP server for VM/ESA on IBM S/390 and IBM eserver z/Series 900.</description>
|
455
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>
|
@@ -463,6 +495,7 @@
|
|
463
495
|
<param pos="2" name="service.version"/>
|
464
496
|
<param pos="3" name="system.time"/>
|
465
497
|
</fingerprint>
|
498
|
+
|
466
499
|
<fingerprint pattern="^([^ ]+) \(IntraStore TurboSendmail\) ESMTP Service ready *$">
|
467
500
|
<description>
|
468
501
|
Syntegra/CDC IntraStore TurboSendmail, part of the IntraStore server which runs on
|
@@ -475,6 +508,7 @@
|
|
475
508
|
<param pos="0" name="service.product" value="IntraStore"/>
|
476
509
|
<param pos="1" name="host.name"/>
|
477
510
|
</fingerprint>
|
511
|
+
|
478
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) \(.+\)$">
|
479
513
|
<description>JAMES SMTP Server</description>
|
480
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>
|
@@ -486,6 +520,7 @@
|
|
486
520
|
<param pos="3" name="system.time"/>
|
487
521
|
<param pos="0" name="system.time.format" value="EEE, d MMM yyyy HH:mm:ss Z"/>
|
488
522
|
</fingerprint>
|
523
|
+
|
489
524
|
<fingerprint pattern="^(?:(\S+) +)?ESMTP MailEnable Service, Version: ([\d.]+)$">
|
490
525
|
<description>MailEnable - Simple</description>
|
491
526
|
<example service.version="9.53">ESMTP MailEnable Service, Version: 9.53</example>
|
@@ -500,7 +535,9 @@
|
|
500
535
|
<param pos="2" name="service.version"/>
|
501
536
|
<param pos="0" name="service.cpe23" value="cpe:/a:mailenable:mailenable:{service.version}"/>
|
502
537
|
</fingerprint>
|
538
|
+
|
503
539
|
<!-- MailEnable has an odd, three version string. Not sure about the meaning the second and third version #s. -->
|
540
|
+
|
504
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})$">
|
505
542
|
<description>MailEnable - Complex</description>
|
506
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>
|
@@ -520,6 +557,7 @@
|
|
520
557
|
<param pos="0" name="service.cpe23" value="cpe:/a:mailenable:mailenable:{service.version}"/>
|
521
558
|
<param pos="3" name="system.time"/>
|
522
559
|
</fingerprint>
|
560
|
+
|
523
561
|
<fingerprint pattern="^([^ ]+) \(Mail-Max Version (\d+\.[\d\.]+), (.+, .+)\) ESMTP Mail Server Ready. *$">
|
524
562
|
<description>Mail Max</description>
|
525
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>
|
@@ -532,6 +570,7 @@
|
|
532
570
|
<param pos="2" name="service.version"/>
|
533
571
|
<param pos="3" name="system.time"/>
|
534
572
|
</fingerprint>
|
573
|
+
|
535
574
|
<fingerprint pattern="^([^ ]+) +MailSite E?SMTP Receiver Version (\d+\.[\d.]+) Ready *$">
|
536
575
|
<description>Rockliffe MailSite - with version (http://www.rockliffe.com)</description>
|
537
576
|
<example host.name="foo.bar" service.version="3.4.6.0">foo.bar MailSite ESMTP Receiver Version 3.4.6.0 Ready</example>
|
@@ -542,6 +581,7 @@
|
|
542
581
|
<param pos="1" name="host.name"/>
|
543
582
|
<param pos="2" name="service.version"/>
|
544
583
|
</fingerprint>
|
584
|
+
|
545
585
|
<fingerprint pattern="^([^ ]+) +MailSite E?SMTP Receiver Ready *$">
|
546
586
|
<description>Rockliffe MailSite - without version (http://www.rockliffe.com)</description>
|
547
587
|
<example host.name="foo.bar">foo.bar MailSite SMTP Receiver Ready</example>
|
@@ -550,6 +590,7 @@
|
|
550
590
|
<param pos="0" name="service.product" value="MailSite"/>
|
551
591
|
<param pos="1" name="host.name"/>
|
552
592
|
</fingerprint>
|
593
|
+
|
553
594
|
<fingerprint pattern="^ ?MailSite E?SMTP Receiver Version (\d+\.[\d.]+) Ready *$">
|
554
595
|
<description>Rockliffe MailSite - without hostname (http://www.rockliffe.com)</description>
|
555
596
|
<example service.version="10.2.0.0"> MailSite ESMTP Receiver Version 10.2.0.0 Ready</example>
|
@@ -558,6 +599,7 @@
|
|
558
599
|
<param pos="0" name="service.product" value="MailSite"/>
|
559
600
|
<param pos="1" name="service.version"/>
|
560
601
|
</fingerprint>
|
602
|
+
|
561
603
|
<fingerprint pattern="^([^ ]+) +MAILsweeper ESMTP Receiver Version (\d\.[\d.]+) Ready *$">
|
562
604
|
<description>Content Security MAILsweeper for SMTP (http://www.contenttechnologies.com/products/msw4smtp/default.asp)</description>
|
563
605
|
<example service.version="4.2.1.0">foo.bar MAILsweeper ESMTP Receiver Version 4.2.1.0 Ready</example>
|
@@ -567,6 +609,7 @@
|
|
567
609
|
<param pos="1" name="host.name"/>
|
568
610
|
<param pos="2" name="service.version"/>
|
569
611
|
</fingerprint>
|
612
|
+
|
570
613
|
<fingerprint pattern="^([^ ]+) +ESMTP MDaemon ([^ ]+\.[^ ]+\.[^ ]+) UNREGISTERED; *(.+) *$">
|
571
614
|
<description>MDaemon mail server - with timestamp, unregistered</description>
|
572
615
|
<example service.version="4.0.5">foo.bar ESMTP MDaemon 4.0.5 UNREGISTERED; Sat, 06 Oct 2001 09:10:56 +0400</example>
|
@@ -585,6 +628,7 @@
|
|
585
628
|
<param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
|
586
629
|
<param pos="3" name="system.time"/>
|
587
630
|
</fingerprint>
|
631
|
+
|
588
632
|
<fingerprint pattern="^([^ ]+) +ESMTP MDaemon ([^ ]+\.[^ ]+\.[^ ]+); *(.+) *$">
|
589
633
|
<description>MDaemon mail server - with timestamp</description>
|
590
634
|
<example service.version="4.0.2">foo.bar ESMTP MDaemon 4.0.2; Sat, 06 Oct 2001 01:46:44 -0500</example>
|
@@ -602,6 +646,7 @@
|
|
602
646
|
<param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
|
603
647
|
<param pos="3" name="system.time"/>
|
604
648
|
</fingerprint>
|
649
|
+
|
605
650
|
<fingerprint pattern="^([^ ]+) +ESMTP MDaemon ([^ ]+\.[^ ]+\.[^ ]+) ready *$">
|
606
651
|
<description>MDaemon mail server - without timestamp</description>
|
607
652
|
<example service.version="3.5.7">foo.bar ESMTP MDaemon 3.5.7 ready</example>
|
@@ -617,6 +662,7 @@
|
|
617
662
|
<param pos="2" name="service.version"/>
|
618
663
|
<param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
|
619
664
|
</fingerprint>
|
665
|
+
|
620
666
|
<fingerprint pattern="^([^ ]+) +ESMTP service ready \[[0-9]+\] (?:using )?MDaemon v(\d+\.[\d.]+) ([^ ]+) *$">
|
621
667
|
<description>MDaemon mail server - with version revision</description>
|
622
668
|
<example service.version="2.84" service.version.version="R">foo.bar ESMTP service ready [1] MDaemon v2.84 R</example>
|
@@ -635,6 +681,7 @@
|
|
635
681
|
<param pos="3" name="service.version.version"/>
|
636
682
|
<param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
|
637
683
|
</fingerprint>
|
684
|
+
|
638
685
|
<fingerprint pattern="^([^ ]+) +ESMTP service ready \[[0-9]+\] (?:\()?MDaemon v([\d.]+) ([^ ]+) ([^ )]+)(?:\))? *$">
|
639
686
|
<description>MDaemon mail server - with service pack</description>
|
640
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>
|
@@ -653,6 +700,7 @@
|
|
653
700
|
<param pos="4" name="service.version.version.version"/>
|
654
701
|
<param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
|
655
702
|
</fingerprint>
|
703
|
+
|
656
704
|
<fingerprint pattern="^([^ ]+) +ESMTP service ready \[[0-9]+\] \(MDaemon v([^ ]+\.[^ ]+) ([^ ]+) ([^ ]+) ([^ ]+)\) *$">
|
657
705
|
<description>MDaemon mail server</description>
|
658
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>
|
@@ -671,7 +719,9 @@
|
|
671
719
|
<param pos="5" name="service.version.version.version.version"/>
|
672
720
|
<param pos="0" name="service.cpe23" value="cpe:/a:altn:mdaemon:{service.version}"/>
|
673
721
|
</fingerprint>
|
722
|
+
|
674
723
|
<!-- example: 220 mail.db-list.com ESMTP MERAK 3.00.140; Tue, 24 Jul 2001 21:30:47 -0700 -->
|
724
|
+
|
675
725
|
<fingerprint pattern="^([^ ]+) +E?SMTP (?i:MERAK) ([^ ]+\.[^ ]+\.[^ ]+); *(.+) *$">
|
676
726
|
<description>Merak mail server - http://www.icewarp.com/merakmail/ (runs on 2000/NT/9x)</description>
|
677
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>
|
@@ -685,6 +735,7 @@
|
|
685
735
|
<param pos="2" name="service.version"/>
|
686
736
|
<param pos="3" name="system.time"/>
|
687
737
|
</fingerprint>
|
738
|
+
|
688
739
|
<fingerprint pattern="^MERCUR SMTP-Server \(v([^ ]+\.[^ ])0\.([^ ]+) ([^ ]+)\) for (.+) ready at (.+) *$">
|
689
740
|
<description>Atrium's MERCUR SMTP server (http://www.atrium-software.com/pub/support_e.cfm)</description>
|
690
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>
|
@@ -698,6 +749,7 @@
|
|
698
749
|
<param pos="4" name="mercur.os.info"/>
|
699
750
|
<param pos="5" name="system.time"/>
|
700
751
|
</fingerprint>
|
752
|
+
|
701
753
|
<fingerprint pattern="^([^ ]+) Mercury ([^ ]+\.[^ ]+) ESMTP server ready.$">
|
702
754
|
<description>Mercury NLM for Netware ( http://www.pmail.com/index.cfm )</description>
|
703
755
|
<example service.version="1.43">foo.bar Mercury 1.43 ESMTP server ready.</example>
|
@@ -710,6 +762,7 @@
|
|
710
762
|
<param pos="1" name="host.name"/>
|
711
763
|
<param pos="2" name="service.version"/>
|
712
764
|
</fingerprint>
|
765
|
+
|
713
766
|
<fingerprint pattern="^^([^ ]+) Mercury\/32 v([^ ]+\.[^ ]+) (?:SMTP\/)?ESMTP server ready.?$">
|
714
767
|
<description>Mercury/32 for Win9x/NT/2000 ( http://www.pmail.com/index.cfm )</description>
|
715
768
|
<example service.version="3.01a">foo.bar Mercury/32 v3.01a SMTP/ESMTP server ready.</example>
|
@@ -723,6 +776,7 @@
|
|
723
776
|
<param pos="1" name="host.name"/>
|
724
777
|
<param pos="2" name="service.version"/>
|
725
778
|
</fingerprint>
|
779
|
+
|
726
780
|
<fingerprint pattern="^([^ ]+) SMTP NAVIEG ([^ ]+\.[^ ]+\.[^ ]+); (.+)* http.*$">
|
727
781
|
<description>Norton Antivirus for Internet Email Gateways (becomes NAVGW in 2.1)</description>
|
728
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>
|
@@ -734,6 +788,7 @@
|
|
734
788
|
<param pos="2" name="service.version"/>
|
735
789
|
<param pos="3" name="system.time"/>
|
736
790
|
</fingerprint>
|
791
|
+
|
737
792
|
<fingerprint pattern="^([^ ]+) ESMTP service \(Netscape Messaging Server ([^ ]+\.[^ ]+) Patch ([^ ]+).*$">
|
738
793
|
<description>Netscape Messaging Server - with patch number</description>
|
739
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>
|
@@ -745,6 +800,7 @@
|
|
745
800
|
<param pos="3" name="service.version.version"/>
|
746
801
|
<param pos="0" name="service.cpe23" value="cpe:/a:netscape:messaging_server:{service.version}"/>
|
747
802
|
</fingerprint>
|
803
|
+
|
748
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) *$">
|
749
805
|
<description>Netscape Messaging Server - w/o patch number</description>
|
750
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>
|
@@ -757,6 +813,7 @@
|
|
757
813
|
<param pos="0" name="service.cpe23" value="cpe:/a:netscape:messaging_server:{service.version}"/>
|
758
814
|
<param pos="3" name="system.time"/>
|
759
815
|
</fingerprint>
|
816
|
+
|
760
817
|
<fingerprint pattern="^([^ ]+) Lotus SMTP MTA Service Ready *$">
|
761
818
|
<description>Lotus Notes 4 SMTP MTA</description>
|
762
819
|
<example host.name="foo.bar">foo.bar Lotus SMTP MTA Service Ready</example>
|
@@ -766,10 +823,12 @@
|
|
766
823
|
<param pos="0" name="service.version" value="4"/>
|
767
824
|
<param pos="1" name="host.name"/>
|
768
825
|
</fingerprint>
|
826
|
+
|
769
827
|
<!-- Branding is muddy here, IBM bought Lotus in 1995, server product wasn't
|
770
828
|
named Domino until Dec 1996 w/ v 4.5. Seems to have started being
|
771
829
|
called IBM Domino as of v9.0 on product and in banners.
|
772
830
|
-->
|
831
|
+
|
773
832
|
<fingerprint pattern="^ ?(?:([^ ]+))? *ESMTP Service \(Lotus Domino Release (\d+\.[\w.]+(?: FP\d+)?(?: HF\d+)?)(?: \(Intl\))?\) ready at (.+) *$">
|
774
833
|
<description>Lotus Domino SMTP MTA</description>
|
775
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>
|
@@ -790,6 +849,7 @@
|
|
790
849
|
<param pos="0" name="service.cpe23" value="cpe:/a:ibm:lotus_domino:{service.version}"/>
|
791
850
|
<param pos="3" name="system.time"/>
|
792
851
|
</fingerprint>
|
852
|
+
|
793
853
|
<fingerprint pattern="^ ?(?:([^ ]+))? *ESMTP Service \(IBM Domino Release (\d+\.[\w.]+(?: HF\d+)?)\) ready at (.+) *$">
|
794
854
|
<description>IBM Domino SMTP MTA</description>
|
795
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>
|
@@ -803,6 +863,7 @@
|
|
803
863
|
<param pos="2" name="service.version"/>
|
804
864
|
<param pos="3" name="system.time"/>
|
805
865
|
</fingerprint>
|
866
|
+
|
806
867
|
<fingerprint pattern="^([^ ]+) ESMTP Service \(Lotus Domino Build (V?[\w.]+)\) ready at (.+) *$">
|
807
868
|
<description>Lotus Domino (some early build)</description>
|
808
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>
|
@@ -814,6 +875,7 @@
|
|
814
875
|
<param pos="2" name="notes.build.version"/>
|
815
876
|
<param pos="3" name="system.time"/>
|
816
877
|
</fingerprint>
|
878
|
+
|
817
879
|
<fingerprint pattern="^Lotus Notes ESMTP Server X[^ ]+\.[^ ]+ on (.+) ready at (.+)\. *$">
|
818
880
|
<description>Lotus Notes 4.x with SMTP MTA add-on</description>
|
819
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>
|
@@ -824,6 +886,7 @@
|
|
824
886
|
<param pos="1" name="host.name"/>
|
825
887
|
<param pos="2" name="system.time"/>
|
826
888
|
</fingerprint>
|
889
|
+
|
827
890
|
<fingerprint pattern="^([^ ]+) NTMail \(v(\d+\.\d+\.\d+)/([^ ]+)\) ready for ESMTP transfer *$">
|
828
891
|
<description>NTMail (http://www.gordano.com)</description>
|
829
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>
|
@@ -834,6 +897,7 @@
|
|
834
897
|
<param pos="2" name="service.version"/>
|
835
898
|
<param pos="3" name="ntmail.id"/>
|
836
899
|
</fingerprint>
|
900
|
+
|
837
901
|
<fingerprint pattern="^([^ ]+) WindowsNT SMTP Server v([^ ]+\.[^ ]+\.[^ ]+)/([^ ]+)/SP ESMTP ready at (.+) *$">
|
838
902
|
<description>NTMail - versions 3.x and earlier (it was called Internet Shopper's something or other)</description>
|
839
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>
|
@@ -846,6 +910,7 @@
|
|
846
910
|
<param pos="3" name="ntmail.id"/>
|
847
911
|
<param pos="4" name="system.time"/>
|
848
912
|
</fingerprint>
|
913
|
+
|
849
914
|
<fingerprint pattern="^(\S+)(?: UCX)? V\S+, OpenVMS V(\S+) (\S+) ready at .*$">
|
850
915
|
<description>Some unknown mail server on OpenVMS</description>
|
851
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>
|
@@ -860,6 +925,7 @@
|
|
860
925
|
<param pos="3" name="os.arch"/>
|
861
926
|
<param pos="0" name="os.cpe23" value="cpe:/o:hp:openvms:{os.version}"/>
|
862
927
|
</fingerprint>
|
928
|
+
|
863
929
|
<fingerprint pattern="^(\S+) E?SMTP PMailServer(?: \[Free Edition\])? ([\d\.]+); (\w\w\w, +\d+ \w\w\w \d\d\d\d [\d:]+)$">
|
864
930
|
<description>A.K.I PMail</description>
|
865
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>
|
@@ -871,6 +937,7 @@
|
|
871
937
|
<param pos="2" name="service.version"/>
|
872
938
|
<param pos="3" name="system.time"/>
|
873
939
|
</fingerprint>
|
940
|
+
|
874
941
|
<fingerprint pattern="^([^ ]+) Postfix \(Postfix-([^ ]+)-([^ ]+)\) \(([^ ]+)\) *$">
|
875
942
|
<description>Postfix - version + build, followed by os</description>
|
876
943
|
<param pos="0" name="service.family" value="Postfix"/>
|
@@ -880,6 +947,7 @@
|
|
880
947
|
<param pos="3" name="service.version.version"/>
|
881
948
|
<param pos="4" name="postfix.os.info"/>
|
882
949
|
</fingerprint>
|
950
|
+
|
883
951
|
<fingerprint pattern="^([^ ]+) ESMTP Postfix \(?([\d.]+)\)?$">
|
884
952
|
<description>Postfix - Std semantic versioning, w/ optional parens</description>
|
885
953
|
<example service.version="3.1.4">foo.bar ESMTP Postfix (3.1.4)</example>
|
@@ -889,6 +957,7 @@
|
|
889
957
|
<param pos="1" name="host.name"/>
|
890
958
|
<param pos="2" name="service.version"/>
|
891
959
|
</fingerprint>
|
960
|
+
|
892
961
|
<fingerprint pattern="^([^ ]+) ESMTP Postfix \((?:Postfix-)?([\d.]+)-([^ ]+)\)$">
|
893
962
|
<description>Postfix - version + build</description>
|
894
963
|
<example service.version="2.8" service.version.version="20100306">foo.bar ESMTP Postfix (2.8-20100306)</example>
|
@@ -898,6 +967,7 @@
|
|
898
967
|
<param pos="2" name="service.version"/>
|
899
968
|
<param pos="3" name="service.version.version"/>
|
900
969
|
</fingerprint>
|
970
|
+
|
901
971
|
<fingerprint pattern="^([^ ]+) +E?SMTP Postfix \(Ubuntu\)$">
|
902
972
|
<description>Postfix - Ubuntu</description>
|
903
973
|
<example>foo.bar ESMTP Postfix (Ubuntu)</example>
|
@@ -909,6 +979,7 @@
|
|
909
979
|
<param pos="0" name="os.product" value="Linux"/>
|
910
980
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:-"/>
|
911
981
|
</fingerprint>
|
982
|
+
|
912
983
|
<fingerprint pattern="^([^ ]+)(?: ESMTP)? Hi, I'm a Mail-in-a-Box \(Ubuntu/Postfix; see https://mailinabox.email/\)$">
|
913
984
|
<description>Postfix - Ubuntu, Mail-in-a-Box package</description>
|
914
985
|
<example>foo.bar ESMTP Hi, I'm a Mail-in-a-Box (Ubuntu/Postfix; see https://mailinabox.email/)</example>
|
@@ -921,6 +992,7 @@
|
|
921
992
|
<param pos="0" name="os.product" value="Linux"/>
|
922
993
|
<param pos="0" name="os.cpe23" value="cpe:/o:canonical:ubuntu_linux:-"/>
|
923
994
|
</fingerprint>
|
995
|
+
|
924
996
|
<fingerprint pattern="^([^ ]+) +E?SMTP Postfix \(Debian/GNU\)$">
|
925
997
|
<description>Postfix - Debian</description>
|
926
998
|
<example>foo.bar ESMTP Postfix (Debian/GNU)</example>
|
@@ -932,6 +1004,7 @@
|
|
932
1004
|
<param pos="0" name="os.product" value="Linux"/>
|
933
1005
|
<param pos="0" name="os.cpe23" value="cpe:/o:debian:debian_linux:-"/>
|
934
1006
|
</fingerprint>
|
1007
|
+
|
935
1008
|
<fingerprint pattern="^([^ ]+) ESMTP.* Postfix *\(.+\) *$">
|
936
1009
|
<description>Postfix - generic banner with amusing comments in parentheses</description>
|
937
1010
|
<example>foo.bar ESMTP Postfix (lol)</example>
|
@@ -939,6 +1012,7 @@
|
|
939
1012
|
<param pos="0" name="service.product" value="Postfix"/>
|
940
1013
|
<param pos="1" name="host.name"/>
|
941
1014
|
</fingerprint>
|
1015
|
+
|
942
1016
|
<fingerprint pattern="^(?i)([^ ]+) +E?SMTP.* Postfix *$">
|
943
1017
|
<description>Postfix - generic banner</description>
|
944
1018
|
<example>foo.bar ESMTP Postfix</example>
|
@@ -947,12 +1021,14 @@
|
|
947
1021
|
<param pos="0" name="service.product" value="Postfix"/>
|
948
1022
|
<param pos="1" name="host.name"/>
|
949
1023
|
</fingerprint>
|
1024
|
+
|
950
1025
|
<fingerprint pattern="^ *ESMTP Postfix$">
|
951
1026
|
<description>Postfix - banner without hostname or version</description>
|
952
1027
|
<example>ESMTP Postfix</example>
|
953
1028
|
<param pos="0" name="service.family" value="Postfix"/>
|
954
1029
|
<param pos="0" name="service.product" value="Postfix"/>
|
955
1030
|
</fingerprint>
|
1031
|
+
|
956
1032
|
<fingerprint pattern="^(?i)([^ ]+) POSTFIX$">
|
957
1033
|
<description>Postfix - generic w/o ESMTP</description>
|
958
1034
|
<example host.name="foo.bar">foo.bar Postfix</example>
|
@@ -960,6 +1036,7 @@
|
|
960
1036
|
<param pos="0" name="service.product" value="Postfix"/>
|
961
1037
|
<param pos="1" name="host.name"/>
|
962
1038
|
</fingerprint>
|
1039
|
+
|
963
1040
|
<fingerprint pattern="^([^ ]+) ESMTP server \((?i:P)ost\.(?i:O)ffice v([^ ]+\.[^ ]+)(?: release)? (.+) ID# ([^ ]+)\) ready (.+) *$">
|
964
1041
|
<description>Post.Office</description>
|
965
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>
|
@@ -973,12 +1050,14 @@
|
|
973
1050
|
<param pos="4" name="postoffice.id"/>
|
974
1051
|
<param pos="5" name="system.time"/>
|
975
1052
|
</fingerprint>
|
1053
|
+
|
976
1054
|
<fingerprint pattern="^([^ ]+) Generic SMTP handler *$">
|
977
1055
|
<description>Raptor Firewall (low confidence)</description>
|
978
1056
|
<example host.name="foo.bar">foo.bar Generic SMTP handler</example>
|
979
1057
|
<param pos="0" name="service.product" value="raptor"/>
|
980
1058
|
<param pos="1" name="host.name"/>
|
981
1059
|
</fingerprint>
|
1060
|
+
|
982
1061
|
<fingerprint pattern="^(\S+) SAP (\S+) E?SMTP service ready$">
|
983
1062
|
<description>SAP SMTP Server</description>
|
984
1063
|
<example host.name="foo.bar" service.version="8.04(53)">foo.bar SAP 8.04(53) ESMTP service ready</example>
|
@@ -987,12 +1066,14 @@
|
|
987
1066
|
<param pos="2" name="service.version"/>
|
988
1067
|
<param pos="1" name="host.name"/>
|
989
1068
|
</fingerprint>
|
1069
|
+
|
990
1070
|
<fingerprint pattern="^Sendmail ESMTP ready$">
|
991
1071
|
<description>Sendmail - short banner w/o hostname, version, platform, or date.</description>
|
992
1072
|
<example>Sendmail ESMTP ready</example>
|
993
1073
|
<param pos="0" name="service.family" value="Sendmail"/>
|
994
1074
|
<param pos="0" name="service.product" value="Sendmail"/>
|
995
1075
|
</fingerprint>
|
1076
|
+
|
996
1077
|
<fingerprint pattern="^([^ ]+) +ESMTP +Sendmail +([^ ]+) \(PHNE_([^ ]+)\) */ *(.+); *(.+) \(.+\)$">
|
997
1078
|
<description>Sendmail - HP-UX with a PHNE (HP Networking patch) installed</description>
|
998
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>
|
@@ -1009,6 +1090,7 @@
|
|
1009
1090
|
<param pos="4" name="sendmail.config.version"/>
|
1010
1091
|
<param pos="5" name="system.time"/>
|
1011
1092
|
</fingerprint>
|
1093
|
+
|
1012
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)$">
|
1013
1095
|
<description>Sendmail - HP-UX</description>
|
1014
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>
|
@@ -1024,6 +1106,7 @@
|
|
1024
1106
|
<param pos="2" name="service.version"/>
|
1025
1107
|
<param pos="4" name="system.time"/>
|
1026
1108
|
</fingerprint>
|
1109
|
+
|
1027
1110
|
<fingerprint pattern="^([^ ]+) +ESMTP +Sendmail +([^ ]+)/UW([^ ]+) ready at *(.+) \(.+\) *$">
|
1028
1111
|
<description>Sendmail - Unixware</description>
|
1029
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>
|
@@ -1038,6 +1121,7 @@
|
|
1038
1121
|
<param pos="3" name="os.version"/>
|
1039
1122
|
<param pos="4" name="system.time"/>
|
1040
1123
|
</fingerprint>
|
1124
|
+
|
1041
1125
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail AIX([^/]+)/UCB ([^;]+); (.+) \(.+\)$">
|
1042
1126
|
<description>Sendmail - AIX (UCB variant)</description>
|
1043
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>
|
@@ -1053,6 +1137,7 @@
|
|
1053
1137
|
<param pos="3" name="service.version"/>
|
1054
1138
|
<param pos="4" name="system.time"/>
|
1055
1139
|
</fingerprint>
|
1140
|
+
|
1056
1141
|
<fingerprint pattern="^([^ ]+) Sendmail AIX([^/]+)/UCB ([^/]+)/([^ ]+) ready at (.+)$">
|
1057
1142
|
<description>Sendmail - AIX (UCB/ready at variant)</description>
|
1058
1143
|
<example>foo.bar Sendmail AIX 4.1/UCB 5.64/4.03 ready at Mon, 30 Jul 2001 00:42:21 -0500</example>
|
@@ -1069,6 +1154,7 @@
|
|
1069
1154
|
<param pos="4" name="sendmail.config.version"/>
|
1070
1155
|
<param pos="5" name="system.time"/>
|
1071
1156
|
</fingerprint>
|
1157
|
+
|
1072
1158
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail AIX([^/]+)/([^/]+)/([^;]+); (.+)(?: \(.+\))?$">
|
1073
1159
|
<description>Sendmail - AIX</description>
|
1074
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>
|
@@ -1086,6 +1172,7 @@
|
|
1086
1172
|
<param pos="4" name="sendmail.config.version"/>
|
1087
1173
|
<param pos="5" name="system.time"/>
|
1088
1174
|
</fingerprint>
|
1175
|
+
|
1089
1176
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/SuSE Linux ([^;]+); (.+)$">
|
1090
1177
|
<description>Sendmail - SuSE Linux</description>
|
1091
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>
|
@@ -1102,6 +1189,7 @@
|
|
1102
1189
|
<param pos="4" name="sendmail.vendor.version"/>
|
1103
1190
|
<param pos="5" name="system.time"/>
|
1104
1191
|
</fingerprint>
|
1192
|
+
|
1105
1193
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^ ]+)\+Sun/([^ ]+); (.+)$">
|
1106
1194
|
<description>Sendmail - Solaris with date (no time offeset variant)</description>
|
1107
1195
|
<example>foo.bar ESMTP Sendmail 8.9.3+Sun/8.9.1; Mon, 30 Jul 2001 02:50:22 GMT</example>
|
@@ -1117,6 +1205,7 @@
|
|
1117
1205
|
<param pos="3" name="sendmail.config.version"/>
|
1118
1206
|
<param pos="4" name="system.time"/>
|
1119
1207
|
</fingerprint>
|
1208
|
+
|
1120
1209
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^ ]+)\+Sun/([^ ]+) ready at (.+) \(.+\)$">
|
1121
1210
|
<description>Sendmail - Solaris with date (ready variant)</description>
|
1122
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>
|
@@ -1132,6 +1221,7 @@
|
|
1132
1221
|
<param pos="3" name="sendmail.config.version"/>
|
1133
1222
|
<param pos="4" name="system.time"/>
|
1134
1223
|
</fingerprint>
|
1224
|
+
|
1135
1225
|
<fingerprint pattern="^([^ ]+) ESMTP (?:Debian )?Sendmail ([^/]+)/([^/]+)/Debian ([^/]+); (.+) *$">
|
1136
1226
|
<description>Sendmail - Debian</description>
|
1137
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>
|
@@ -1149,6 +1239,7 @@
|
|
1149
1239
|
<param pos="4" name="sendmail.vendor.version"/>
|
1150
1240
|
<param pos="5" name="system.time"/>
|
1151
1241
|
</fingerprint>
|
1242
|
+
|
1152
1243
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d\+(?:wheezy|deb7u)\d; (.+); .*$">
|
1153
1244
|
<description>Sendmail - Debian 7.x (wheezy)</description>
|
1154
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>
|
@@ -1166,6 +1257,7 @@
|
|
1166
1257
|
<param pos="3" name="sendmail.config.version"/>
|
1167
1258
|
<param pos="4" name="system.time"/>
|
1168
1259
|
</fingerprint>
|
1260
|
+
|
1169
1261
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d\+deb8u\d; (.+); .*$">
|
1170
1262
|
<description>Sendmail - Debian 8.x (jessie)</description>
|
1171
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>
|
@@ -1182,6 +1274,7 @@
|
|
1182
1274
|
<param pos="3" name="sendmail.config.version"/>
|
1183
1275
|
<param pos="4" name="system.time"/>
|
1184
1276
|
</fingerprint>
|
1277
|
+
|
1185
1278
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d\+lenny\d; (.+); .*$">
|
1186
1279
|
<description>Sendmail - Debian 5.x (lenny)</description>
|
1187
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>
|
@@ -1198,6 +1291,7 @@
|
|
1198
1291
|
<param pos="3" name="sendmail.config.version"/>
|
1199
1292
|
<param pos="4" name="system.time"/>
|
1200
1293
|
</fingerprint>
|
1294
|
+
|
1201
1295
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d\+etch\d; (.+); .*$">
|
1202
1296
|
<description>Sendmail - Debian 4.x (etch)</description>
|
1203
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>
|
@@ -1214,6 +1308,7 @@
|
|
1214
1308
|
<param pos="3" name="sendmail.config.version"/>
|
1215
1309
|
<param pos="4" name="system.time"/>
|
1216
1310
|
</fingerprint>
|
1311
|
+
|
1217
1312
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\dsarge\d; (.+); .*$">
|
1218
1313
|
<description>Sendmail - Debian 3.1 (sarge)</description>
|
1219
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>
|
@@ -1230,6 +1325,7 @@
|
|
1230
1325
|
<param pos="3" name="sendmail.config.version"/>
|
1231
1326
|
<param pos="4" name="system.time"/>
|
1232
1327
|
</fingerprint>
|
1328
|
+
|
1233
1329
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/([^/]+)/Debian-\d(?:\.\d)?(?:build\d)?;+ (.+); .*$">
|
1234
1330
|
<description>Sendmail - Debian patch only</description>
|
1235
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>
|
@@ -1247,6 +1343,7 @@
|
|
1247
1343
|
<param pos="3" name="sendmail.config.version"/>
|
1248
1344
|
<param pos="4" name="system.time"/>
|
1249
1345
|
</fingerprint>
|
1346
|
+
|
1250
1347
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^/]+)/[^/]+/Debian-[\d.]+ubuntu[^ ]*; (.+); .*$">
|
1251
1348
|
<description>Sendmail - Ubuntu</description>
|
1252
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>
|
@@ -1262,6 +1359,7 @@
|
|
1262
1359
|
<param pos="2" name="service.version"/>
|
1263
1360
|
<param pos="3" name="system.time"/>
|
1264
1361
|
</fingerprint>
|
1362
|
+
|
1265
1363
|
<fingerprint pattern="^([^ ]+) (?:E?SMTP )?Sendmail SMI-([^/]+)/(SMI-SVR4) ready at (.+)$">
|
1266
1364
|
<description>Sendmail - Solaris (SMI variant)</description>
|
1267
1365
|
<example>foo.bar Sendmail SMI-8.6/SMI-SVR4 ready at Sun, 29 Jul 2001 22:58:46 -0400</example>
|
@@ -1277,6 +1375,7 @@
|
|
1277
1375
|
<param pos="3" name="sendmail.config.version"/>
|
1278
1376
|
<param pos="4" name="system.time"/>
|
1279
1377
|
</fingerprint>
|
1378
|
+
|
1280
1379
|
<fingerprint pattern="^([^ ]+) ESMTP Sendmail ([^ ]+)/(linuxconf); (.+)$">
|
1281
1380
|
<description>Sendmail - unknown platform (linuxconf variant)</description>
|
1282
1381
|
<example>foo.bar ESMTP Sendmail 8.9.3/linuxconf; Sun, 29 Jul 2001 22:48:28 -0400</example>
|
@@ -1290,6 +1389,7 @@
|
|
1290
1389
|
<param pos="3" name="sendmail.config.version"/>
|
1291
1390
|
<param pos="4" name="system.time"/>
|
1292
1391
|
</fingerprint>
|
1392
|
+
|
1293
1393
|
<fingerprint pattern="^([^ ]+) ESMTP MetaInfo Sendmail ([^ ]+) Build ([^ ]+) \(Berkeley ([^ ]+)\)/([^;]+); (.+)$">
|
1294
1394
|
<description>Sendmail - MetaInfo</description>
|
1295
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>
|
@@ -1308,6 +1408,7 @@
|
|
1308
1408
|
<param pos="5" name="sendmail.config.version"/>
|
1309
1409
|
<param pos="6" name="system.time"/>
|
1310
1410
|
</fingerprint>
|
1411
|
+
|
1311
1412
|
<fingerprint pattern="^([^ ]+) +ESMTP .*Sendmail +([^/ ]+) */ *([^/ ]+); *((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?)(?: \(.+\))?$">
|
1312
1413
|
<description>Sendmail - optional timezone and timestamp, w/o OS</description>
|
1313
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>
|
@@ -1323,6 +1424,7 @@
|
|
1323
1424
|
<param pos="3" name="sendmail.config.version"/>
|
1324
1425
|
<param pos="4" name="system.time"/>
|
1325
1426
|
</fingerprint>
|
1427
|
+
|
1326
1428
|
<fingerprint pattern="^([^ ]+) +ESMTP .*Sendmail +([^/ ]+) */ *([^/ ]+); *(\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ \w+)\.?$">
|
1327
1429
|
<description>Sendmail - with timezone and timestamp, w/o timezone offset or OS</description>
|
1328
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>
|
@@ -1333,6 +1435,7 @@
|
|
1333
1435
|
<param pos="3" name="sendmail.config.version"/>
|
1334
1436
|
<param pos="4" name="system.time"/>
|
1335
1437
|
</fingerprint>
|
1438
|
+
|
1336
1439
|
<fingerprint pattern="^([^ ]+) +ESMTP +Sendmail ([^ ]+) ready at *(\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)(?: \(.+\))$">
|
1337
1440
|
<description>Sendmail - with version and date (optional timezone), w/o config version</description>
|
1338
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>
|
@@ -1343,6 +1446,7 @@
|
|
1343
1446
|
<param pos="2" name="service.version"/>
|
1344
1447
|
<param pos="3" name="system.time"/>
|
1345
1448
|
</fingerprint>
|
1449
|
+
|
1346
1450
|
<fingerprint pattern="^([^ ]+) +ESMTP +Sendmail ([^ /]+) - \([^\)]+\)/[^ ]+;? *(\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)(?: \(.+\)) *$">
|
1347
1451
|
<description>Sendmail - revision variant 1</description>
|
1348
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>
|
@@ -1353,6 +1457,7 @@
|
|
1353
1457
|
<param pos="2" name="service.version"/>
|
1354
1458
|
<param pos="3" name="system.time"/>
|
1355
1459
|
</fingerprint>
|
1460
|
+
|
1356
1461
|
<fingerprint pattern="^([^ ]+) +ESMTP +Sendmail +(?:[^ ]+) +version +([^ ]+) +- +(?:[^;]+); *(\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)(?: \(.+\)) *$">
|
1357
1462
|
<description>Sendmail - revision variant 2</description>
|
1358
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>
|
@@ -1363,6 +1468,7 @@
|
|
1363
1468
|
<param pos="2" name="service.version"/>
|
1364
1469
|
<param pos="3" name="system.time"/>
|
1365
1470
|
</fingerprint>
|
1471
|
+
|
1366
1472
|
<fingerprint pattern="^(?i)([^ ]+) +(?:ESMTP +)?Sendmail *(?: Ready.? ?)?(?:;|at)? ?((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?)(?: \(.+\))?$">
|
1367
1473
|
<description>Sendmail - with date, w/o version or platform, optional status string.</description>
|
1368
1474
|
<example host.name="foo.bar">foo.bar ESMTP Sendmail ; Thu, 30 Nov 2017 17:50:14 +0900</example>
|
@@ -1380,6 +1486,7 @@
|
|
1380
1486
|
<param pos="2" name="system.time"/>
|
1381
1487
|
<param pos="0" name="system.time.format" value="EEE, d MMM yyyy HH:mm:ss Z"/>
|
1382
1488
|
</fingerprint>
|
1489
|
+
|
1383
1490
|
<fingerprint pattern="^ESMTP Sendmail +([^/ ]+) */ *([^/ ]+); (\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)$">
|
1384
1491
|
<description>Sendmail - with version and date, w/o hostname or platform (semicolon variant)</description>
|
1385
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>
|
@@ -1390,6 +1497,7 @@
|
|
1390
1497
|
<param pos="2" name="sendmail.config.version"/>
|
1391
1498
|
<param pos="3" name="system.time"/>
|
1392
1499
|
</fingerprint>
|
1500
|
+
|
1393
1501
|
<fingerprint pattern="^([^ ]+) +ESMTP +Sendmail ([^ /]+) \([^\)]+\) *(.+) \(.+\)$">
|
1394
1502
|
<description>Sendmail - unknown (date in version string variant)</description>
|
1395
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>
|
@@ -1400,7 +1508,9 @@
|
|
1400
1508
|
<param pos="2" name="service.version"/>
|
1401
1509
|
<param pos="3" name="system.time"/>
|
1402
1510
|
</fingerprint>
|
1511
|
+
|
1403
1512
|
<!-- *Sendmail* fingerprints after this line had NO matches in 2017.11.30 Project Sonar data set-->
|
1513
|
+
|
1404
1514
|
<fingerprint pattern="^([^ ]+) Sendmail ([^;]+); ([^;\.]+)$">
|
1405
1515
|
<description>Sendmail - unknown platform, variant 1</description>
|
1406
1516
|
<param pos="0" name="service.family" value="Sendmail"/>
|
@@ -1410,6 +1520,7 @@
|
|
1410
1520
|
<param pos="2" name="service.version"/>
|
1411
1521
|
<param pos="3" name="system.time"/>
|
1412
1522
|
</fingerprint>
|
1523
|
+
|
1413
1524
|
<fingerprint pattern="^Sendmail ([^/]+)/([^/]+) ready on ([^ ]+)$">
|
1414
1525
|
<description>Sendmail - basic with version and date</description>
|
1415
1526
|
<param pos="0" name="service.family" value="Sendmail"/>
|
@@ -1418,6 +1529,7 @@
|
|
1418
1529
|
<param pos="2" name="sendmail.config.version"/>
|
1419
1530
|
<param pos="3" name="host.name"/>
|
1420
1531
|
</fingerprint>
|
1532
|
+
|
1421
1533
|
<fingerprint pattern="^([^ ]+) -- Server ESMTP \(Sun Internet Mail Server sims\.(\d\.[\w.]+)\)$">
|
1422
1534
|
<description>Sun Internet Mail Server</description>
|
1423
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>
|
@@ -1431,6 +1543,7 @@
|
|
1431
1543
|
<param pos="1" name="host.name"/>
|
1432
1544
|
<param pos="2" name="service.version"/>
|
1433
1545
|
</fingerprint>
|
1546
|
+
|
1434
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) *$">
|
1435
1548
|
<description>Ecelerity</description>
|
1436
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>
|
@@ -1446,6 +1559,7 @@
|
|
1446
1559
|
<param pos="3" name="service.component.version"/>
|
1447
1560
|
<param pos="4" name="system.time"/>
|
1448
1561
|
</fingerprint>
|
1562
|
+
|
1449
1563
|
<fingerprint pattern="^(?i)([^ ]+) SMTP Server SLMail v?(\d\.[\d.]+) Ready ESMTP spoken here *$">
|
1450
1564
|
<description>Seattle Labs SLMail server for Windows NT/2k (v2.7 runs on Win9x)</description>
|
1451
1565
|
<example service.version="2.7">foo.bar Smtp Server SLMail v2.7 Ready ESMTP spoken here</example>
|
@@ -1457,6 +1571,7 @@
|
|
1457
1571
|
<param pos="1" name="host.name"/>
|
1458
1572
|
<param pos="2" name="service.version"/>
|
1459
1573
|
</fingerprint>
|
1574
|
+
|
1460
1575
|
<fingerprint pattern="^([^ ]+) +ESMTP Symantec Mail Security$">
|
1461
1576
|
<description>Symantec Mail Security for SMTP</description>
|
1462
1577
|
<example host.name="foo.bar">foo.bar ESMTP Symantec Mail Security</example>
|
@@ -1464,6 +1579,7 @@
|
|
1464
1579
|
<param pos="0" name="service.product" value="Symantec Mail Security for SMTP"/>
|
1465
1580
|
<param pos="1" name="host.name"/>
|
1466
1581
|
</fingerprint>
|
1582
|
+
|
1467
1583
|
<fingerprint pattern="^([^ ]+) ESMTP Symantec Messaging Gateway$">
|
1468
1584
|
<description>Symantec Mail Gateway</description>
|
1469
1585
|
<example host.name="foo.bar">foo.bar ESMTP Symantec Messaging Gateway</example>
|
@@ -1471,7 +1587,9 @@
|
|
1471
1587
|
<param pos="0" name="service.product" value="Symantec Messaging Gateway"/>
|
1472
1588
|
<param pos="1" name="host.name"/>
|
1473
1589
|
</fingerprint>
|
1590
|
+
|
1474
1591
|
<!-- SonicWall makes hardware, virtual appliances, and Windows software. The banner doesn't indicate which. -->
|
1592
|
+
|
1475
1593
|
<fingerprint pattern="^(?i)([^ ]+) ESMTP SonicWALL \(([\d.]+)\)$">
|
1476
1594
|
<description>SonicWall Email Security</description>
|
1477
1595
|
<example host.name="foo.bar" service.version="9.0.5.2077">foo.bar ESMTP SonicWALL (9.0.5.2077)</example>
|
@@ -1482,6 +1600,7 @@
|
|
1482
1600
|
<param pos="1" name="host.name"/>
|
1483
1601
|
<param pos="2" name="service.version"/>
|
1484
1602
|
</fingerprint>
|
1603
|
+
|
1485
1604
|
<fingerprint pattern="^([^ ]+) \(PowerMTA\(TM\) v([\d.r]+)\) ESMTP service ready$">
|
1486
1605
|
<description>PowerMTA</description>
|
1487
1606
|
<example host.name="foo.bar" service.version="3.2r24">foo.bar (PowerMTA(TM) v3.2r24) ESMTP service ready</example>
|
@@ -1491,6 +1610,7 @@
|
|
1491
1610
|
<param pos="1" name="host.name"/>
|
1492
1611
|
<param pos="2" name="service.version"/>
|
1493
1612
|
</fingerprint>
|
1613
|
+
|
1494
1614
|
<fingerprint pattern="^([^ ]+) +VOPmail ESMTP Receiver Version (\d\.[\d.]+) Ready$">
|
1495
1615
|
<description>VOPMail http://www.vircom.com/en/products/vopmail/vopmail.shtml</description>
|
1496
1616
|
<example host.name="foo.bar" service.version="4.0.179.0">foo.bar VOPmail ESMTP Receiver Version 4.0.179.0 Ready</example>
|
@@ -1500,6 +1620,7 @@
|
|
1500
1620
|
<param pos="1" name="host.name"/>
|
1501
1621
|
<param pos="2" name="service.version"/>
|
1502
1622
|
</fingerprint>
|
1623
|
+
|
1503
1624
|
<fingerprint pattern="^([^ ]+) VPOP3 E?SMTP Server (?:Ready|access not allowed!)$">
|
1504
1625
|
<description>VPOP3 Email server: http://www.pscs.co.uk/products/vpop3/index.html</description>
|
1505
1626
|
<example>foo.bar VPOP3 ESMTP Server Ready</example>
|
@@ -1510,6 +1631,7 @@
|
|
1510
1631
|
<param pos="0" name="service.product" value="VPOP3"/>
|
1511
1632
|
<param pos="1" name="host.name"/>
|
1512
1633
|
</fingerprint>
|
1634
|
+
|
1513
1635
|
<fingerprint pattern="^([^ ]+) WebShield SMTP V([^ ]+\.[^ ]+) (:?[^ ]+)? ?Network Associates.*Ready at (.+) *$">
|
1514
1636
|
<description>McAfee WebShield</description>
|
1515
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>
|
@@ -1524,6 +1646,7 @@
|
|
1524
1646
|
<param pos="0" name="service.cpe23" value="cpe:/a:mcafee:webshield:{service.version}"/>
|
1525
1647
|
<param pos="4" name="system.time"/>
|
1526
1648
|
</fingerprint>
|
1649
|
+
|
1527
1650
|
<fingerprint pattern="^([^ ]+) McAfee WebShield ASaP v([^ ]+\.[^ ]+\.[^ ]+): (.+) *$">
|
1528
1651
|
<description>McAfee Webshield ASaP (bundled hardware / software)</description>
|
1529
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>
|
@@ -1539,6 +1662,7 @@
|
|
1539
1662
|
<param pos="0" name="service.cpe23" value="cpe:/a:mcafee:webshield:{service.version}"/>
|
1540
1663
|
<param pos="3" name="system.time"/>
|
1541
1664
|
</fingerprint>
|
1665
|
+
|
1542
1666
|
<fingerprint pattern="^([^ ]+) McAfee VirusScreen ASaP v([^ ]+\.[^ ]+): (.+) *$">
|
1543
1667
|
<description>McAfee VirusScreen</description>
|
1544
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>
|
@@ -1554,6 +1678,7 @@
|
|
1554
1678
|
<param pos="0" name="service.cpe23" value="cpe:/a:mcafee:webshield:{service.version}"/>
|
1555
1679
|
<param pos="3" name="system.time"/>
|
1556
1680
|
</fingerprint>
|
1681
|
+
|
1557
1682
|
<fingerprint pattern="^([^ ]+) ESMTP Lyris ListManager service ready$">
|
1558
1683
|
<description>Lyris ListManager</description>
|
1559
1684
|
<example host.name="foo.bar">foo.bar ESMTP Lyris ListManager service ready</example>
|
@@ -1562,6 +1687,7 @@
|
|
1562
1687
|
<param pos="0" name="service.product" value="ListManager"/>
|
1563
1688
|
<param pos="1" name="host.name"/>
|
1564
1689
|
</fingerprint>
|
1690
|
+
|
1565
1691
|
<fingerprint pattern="^([^ ]+) ESMTP - WinRoute Pro ([^ ]+\.[^ ]+)$">
|
1566
1692
|
<description>WinRoute Pro, runs on 9x/NT/2k http://www.tinysoftware.com/winpro.php</description>
|
1567
1693
|
<example host.name="foo.bar" service.version="4.2.4">foo.bar ESMTP - WinRoute Pro 4.2.4</example>
|
@@ -1570,6 +1696,7 @@
|
|
1570
1696
|
<param pos="1" name="host.name"/>
|
1571
1697
|
<param pos="2" name="service.version"/>
|
1572
1698
|
</fingerprint>
|
1699
|
+
|
1573
1700
|
<fingerprint pattern="^ESMTP - WinRoute Pro ([^ ]+\.[^ ]+) *(?: #\d)? ?.?((?:\w\w\w, \d+ \w\w\w \d\d\d\d [\d:]+ [-+]\d\d\d\d)?)$">
|
1574
1701
|
<description>WinRoute Pro w/o hostname</description>
|
1575
1702
|
<example service.version="4.2.1">ESMTP - WinRoute Pro 4.2.1 Thu, 16 Nov 2017 11:48:15 +0300</example>
|
@@ -1579,6 +1706,7 @@
|
|
1579
1706
|
<param pos="1" name="service.version"/>
|
1580
1707
|
<param pos="2" name="system.time"/>
|
1581
1708
|
</fingerprint>
|
1709
|
+
|
1582
1710
|
<fingerprint pattern="^([^ ]+) ZMailer Server (\d\.[\d.]+) #([^ ]+) ESMTP ready at (.+) *$">
|
1583
1711
|
<description>ZMailer http://www.zmailer.org/technical.html</description>
|
1584
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>
|
@@ -1591,6 +1719,7 @@
|
|
1591
1719
|
<param pos="3" name="service.version.version"/>
|
1592
1720
|
<param pos="4" name="system.time"/>
|
1593
1721
|
</fingerprint>
|
1722
|
+
|
1594
1723
|
<fingerprint pattern="^([^ ]+) ZMailer Server (\d\.[\d.]+) #([^ ]+) ESMTP\+IDENT ready at (.+) *$">
|
1595
1724
|
<description>ZMailer server that supports IDENT</description>
|
1596
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>
|
@@ -1604,6 +1733,7 @@
|
|
1604
1733
|
<param pos="3" name="service.version.version"/>
|
1605
1734
|
<param pos="4" name="system.time"/>
|
1606
1735
|
</fingerprint>
|
1736
|
+
|
1607
1737
|
<fingerprint pattern="^([^ ]+) Kerio Connect (\d\.[\d.]+) (?:patch (\d) )?ESMTP ready$">
|
1608
1738
|
<description>Kerio Connect ESMTP</description>
|
1609
1739
|
<example host.name="foo.bar" service.version="8.0.2">foo.bar Kerio Connect 8.0.2 ESMTP ready</example>
|
@@ -1615,6 +1745,7 @@
|
|
1615
1745
|
<param pos="2" name="service.version"/>
|
1616
1746
|
<param pos="3" name="service.version.version"/>
|
1617
1747
|
</fingerprint>
|
1748
|
+
|
1618
1749
|
<fingerprint pattern="^([^ ]+) ESMTP CommuniGate Pro (\d\.[\w.]+)(?:. It is you again :-\()?$">
|
1619
1750
|
<description>Communigate Pro</description>
|
1620
1751
|
<example host.name="foo.bar" service.version="5.3.1">foo.bar ESMTP CommuniGate Pro 5.3.1</example>
|
@@ -1626,6 +1757,7 @@
|
|
1626
1757
|
<param pos="1" name="host.name"/>
|
1627
1758
|
<param pos="2" name="service.version"/>
|
1628
1759
|
</fingerprint>
|
1760
|
+
|
1629
1761
|
<fingerprint pattern="^(\S+) NO UCE NO UBE NO RELAY PROBES ESMTP">
|
1630
1762
|
<description>Twisted SMTP server</description>
|
1631
1763
|
<example host.name="foo.bar">foo.bar NO UCE NO UBE NO RELAY PROBES ESMTP</example>
|
@@ -1634,6 +1766,7 @@
|
|
1634
1766
|
<param pos="0" name="service.product" value="ESMTP"/>
|
1635
1767
|
<param pos="1" name="host.name"/>
|
1636
1768
|
</fingerprint>
|
1769
|
+
|
1637
1770
|
<fingerprint pattern="^Cellopoint E-mail Firewall v(\d\.[\d.]+) Build (\d+) ready$">
|
1638
1771
|
<description>Cellopoint E-mail Firewall</description>
|
1639
1772
|
<example service.version="3.9.12" service.version.version="0324">Cellopoint E-mail Firewall v3.9.12 Build 0324 ready</example>
|
@@ -1643,6 +1776,7 @@
|
|
1643
1776
|
<param pos="1" name="service.version"/>
|
1644
1777
|
<param pos="2" name="service.version.version"/>
|
1645
1778
|
</fingerprint>
|
1779
|
+
|
1646
1780
|
<fingerprint pattern="^ESMTP on WinWebMail \[(\d\.[\d.]+)\] ready\. http://www.winwebmail.com$">
|
1647
1781
|
<description>Ma Jian WinWebMail</description>
|
1648
1782
|
<example service.version="3.9.0.7">ESMTP on WinWebMail [3.9.0.7] ready. http://www.winwebmail.com</example>
|
@@ -1651,6 +1785,7 @@
|
|
1651
1785
|
<param pos="0" name="service.product" value="ESMTP"/>
|
1652
1786
|
<param pos="1" name="service.version"/>
|
1653
1787
|
</fingerprint>
|
1788
|
+
|
1654
1789
|
<fingerprint pattern="^([^ ]+) Service ready by David.fx \((\d+)\) ESMTP Server \(Tobit.Software, Germany\)$">
|
1655
1790
|
<description>Tobit Software David</description>
|
1656
1791
|
<example service.version="0486">foo.bar Service ready by David.fx (0486) ESMTP Server (Tobit.Software, Germany)</example>
|
@@ -1660,12 +1795,14 @@
|
|
1660
1795
|
<param pos="1" name="host.name"/>
|
1661
1796
|
<param pos="2" name="service.version"/>
|
1662
1797
|
</fingerprint>
|
1798
|
+
|
1663
1799
|
<fingerprint pattern="^(?i)(\S+) E?SMTP Perl">
|
1664
1800
|
<description>Some simple PERL SMTP server</description>
|
1665
1801
|
<example host.name="foo.bar">foo.bar ESMTP Perl</example>
|
1666
1802
|
<param pos="0" name="service.product" value="Perl"/>
|
1667
1803
|
<param pos="1" name="host.name"/>
|
1668
1804
|
</fingerprint>
|
1805
|
+
|
1669
1806
|
<fingerprint pattern="^(?i)(?:([^ ]+) )?E?SMTP(?: (?:Service )?Ready\.?)?$">
|
1670
1807
|
<description>Non-specific banner with optional hostname</description>
|
1671
1808
|
<example host.name="foo.bar">foo.bar ESMTP</example>
|
@@ -1677,6 +1814,7 @@
|
|
1677
1814
|
<example>ESMTP READY</example>
|
1678
1815
|
<param pos="1" name="host.name"/>
|
1679
1816
|
</fingerprint>
|
1817
|
+
|
1680
1818
|
<fingerprint pattern="^([^ ]+) ESMTP OpenSMTPD$">
|
1681
1819
|
<description>OpenSMPTD</description>
|
1682
1820
|
<example host.name="foo.bar">foo.bar ESMTP OpenSMTPD</example>
|
@@ -1686,4 +1824,5 @@
|
|
1686
1824
|
<param pos="0" name="service.cpe23" value="cpe:/a:openbsd:opensmtpd:-"/>
|
1687
1825
|
<param pos="1" name="host.name"/>
|
1688
1826
|
</fingerprint>
|
1689
|
-
|
1827
|
+
|
1828
|
+
</fingerprints>
|