recog 2.3.22 → 3.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +2 -0
  3. data/LICENSE +1 -1
  4. data/README.md +25 -16
  5. data/Rakefile +2 -9
  6. data/lib/recog/db_manager.rb +1 -1
  7. data/lib/recog/fingerprint.rb +21 -7
  8. data/lib/recog/fingerprint_parse_error.rb +10 -0
  9. data/lib/recog/match_reporter.rb +37 -3
  10. data/lib/recog/matcher.rb +5 -10
  11. data/lib/recog/verifier.rb +4 -4
  12. data/lib/recog/verify_reporter.rb +7 -6
  13. data/lib/recog/version.rb +1 -1
  14. data/{bin → recog/bin}/recog_match +20 -7
  15. data/{xml → recog/xml}/apache_modules.xml +0 -0
  16. data/{xml → recog/xml}/apache_os.xml +61 -19
  17. data/{xml → recog/xml}/architecture.xml +15 -1
  18. data/{xml → recog/xml}/dhcp_vendor_class.xml +10 -10
  19. data/{xml → recog/xml}/dns_versionbind.xml +16 -13
  20. data/{xml → recog/xml}/favicons.xml +167 -9
  21. data/{xml → recog/xml}/fingerprints.xsd +9 -1
  22. data/{xml → recog/xml}/ftp_banners.xml +131 -141
  23. data/{xml → recog/xml}/h323_callresp.xml +2 -2
  24. data/{xml → recog/xml}/hp_pjl_id.xml +81 -81
  25. data/{xml → recog/xml}/html_title.xml +250 -9
  26. data/{xml → recog/xml}/http_cookies.xml +111 -34
  27. data/{xml → recog/xml}/http_servers.xml +483 -270
  28. data/{xml → recog/xml}/http_wwwauth.xml +83 -37
  29. data/{xml → recog/xml}/imap_banners.xml +10 -10
  30. data/{xml → recog/xml}/ldap_searchresult.xml +0 -0
  31. data/{xml → recog/xml}/mdns_device-info_txt.xml +0 -0
  32. data/{xml → recog/xml}/mdns_workstation_txt.xml +0 -0
  33. data/{xml → recog/xml}/mysql_banners.xml +0 -0
  34. data/{xml → recog/xml}/mysql_error.xml +0 -0
  35. data/{xml → recog/xml}/nntp_banners.xml +8 -5
  36. data/{xml → recog/xml}/ntp_banners.xml +33 -33
  37. data/{xml → recog/xml}/operating_system.xml +92 -77
  38. data/{xml → recog/xml}/pop_banners.xml +25 -25
  39. data/{xml → recog/xml}/rsh_resp.xml +0 -0
  40. data/{xml → recog/xml}/rtsp_servers.xml +0 -0
  41. data/{xml → recog/xml}/sip_banners.xml +16 -5
  42. data/{xml → recog/xml}/sip_user_agents.xml +122 -27
  43. data/{xml → recog/xml}/smb_native_lm.xml +5 -5
  44. data/{xml → recog/xml}/smb_native_os.xml +25 -25
  45. data/{xml → recog/xml}/smtp_banners.xml +132 -131
  46. data/{xml → recog/xml}/smtp_debug.xml +0 -0
  47. data/{xml → recog/xml}/smtp_ehlo.xml +0 -0
  48. data/{xml → recog/xml}/smtp_expn.xml +0 -0
  49. data/{xml → recog/xml}/smtp_help.xml +1 -1
  50. data/{xml → recog/xml}/smtp_mailfrom.xml +0 -0
  51. data/{xml → recog/xml}/smtp_noop.xml +0 -0
  52. data/{xml → recog/xml}/smtp_quit.xml +0 -0
  53. data/{xml → recog/xml}/smtp_rcptto.xml +0 -0
  54. data/{xml → recog/xml}/smtp_rset.xml +0 -0
  55. data/{xml → recog/xml}/smtp_turn.xml +0 -0
  56. data/{xml → recog/xml}/smtp_vrfy.xml +0 -0
  57. data/{xml → recog/xml}/snmp_sysdescr.xml +1248 -1233
  58. data/{xml → recog/xml}/snmp_sysobjid.xml +13 -2
  59. data/{xml → recog/xml}/ssh_banners.xml +9 -5
  60. data/{xml → recog/xml}/telnet_banners.xml +83 -1
  61. data/{xml → recog/xml}/tls_jarm.xml +30 -2
  62. data/{xml → recog/xml}/x11_banners.xml +3 -3
  63. data/{xml → recog/xml}/x509_issuers.xml +24 -4
  64. data/{xml → recog/xml}/x509_subjects.xml +32 -3
  65. data/recog.gemspec +9 -5
  66. data/spec/data/external_example_fingerprint/hp_printer_ex_01.txt +1 -0
  67. data/spec/data/external_example_fingerprint/hp_printer_ex_02.txt +1 -0
  68. data/spec/data/external_example_fingerprint.xml +8 -0
  69. data/spec/data/external_example_illegal_path_fingerprint.xml +7 -0
  70. data/spec/lib/recog/db_spec.rb +84 -61
  71. data/spec/lib/recog/fingerprint_spec.rb +4 -4
  72. data/spec/lib/recog/match_reporter_spec.rb +22 -8
  73. data/spec/lib/recog/verify_reporter_spec.rb +8 -8
  74. data/spec/spec_helper.rb +4 -0
  75. data.tar.gz.sig +0 -0
  76. metadata +154 -142
  77. metadata.gz.sig +0 -0
  78. data/.github/ISSUE_TEMPLATE/bug_report.md +0 -37
  79. data/.github/ISSUE_TEMPLATE/feature_request.md +0 -17
  80. data/.github/ISSUE_TEMPLATE/fingerprint_request.md +0 -27
  81. data/.github/PULL_REQUEST_TEMPLATE +0 -24
  82. data/.github/SECURITY.md +0 -35
  83. data/.github/dependabot.yml +0 -8
  84. data/.github/workflows/ci.yml +0 -26
  85. data/.github/workflows/verify.yml +0 -89
  86. data/.gitignore +0 -23
  87. data/.rspec +0 -3
  88. data/.ruby-gemset +0 -1
  89. data/.ruby-version +0 -1
  90. data/.snyk +0 -10
  91. data/.travis.yml +0 -25
  92. data/CONTRIBUTING.md +0 -276
  93. data/bin/recog_cleanup +0 -16
  94. data/bin/recog_export +0 -81
  95. data/bin/recog_standardize +0 -163
  96. data/bin/recog_verify +0 -63
  97. data/cpe-remap.yaml +0 -356
  98. data/features/data/failing_banners_fingerprints.xml +0 -20
  99. data/features/data/matching_banners_fingerprints.xml +0 -23
  100. data/features/data/multiple_banners_fingerprints.xml +0 -32
  101. data/features/data/no_tests.xml +0 -3
  102. data/features/data/sample_banner.txt +0 -2
  103. data/features/data/successful_tests.xml +0 -18
  104. data/features/data/tests_with_failures.xml +0 -20
  105. data/features/data/tests_with_warnings.xml +0 -17
  106. data/features/match.feature +0 -36
  107. data/features/support/aruba.rb +0 -3
  108. data/features/support/env.rb +0 -6
  109. data/features/verify.feature +0 -48
  110. data/identifiers/README.md +0 -70
  111. data/identifiers/fields.txt +0 -105
  112. data/identifiers/hw_device.txt +0 -84
  113. data/identifiers/hw_family.txt +0 -121
  114. data/identifiers/hw_product.txt +0 -461
  115. data/identifiers/os_architecture.txt +0 -10
  116. data/identifiers/os_device.txt +0 -75
  117. data/identifiers/os_family.txt +0 -234
  118. data/identifiers/os_product.txt +0 -350
  119. data/identifiers/service_family.txt +0 -249
  120. data/identifiers/service_product.txt +0 -764
  121. data/identifiers/vendor.txt +0 -847
  122. data/lib/recog/verifier_factory.rb +0 -13
  123. data/misc/convert_mysql_err +0 -61
  124. data/misc/order.xsl +0 -17
  125. data/requirements.txt +0 -2
  126. data/spec/lib/fingerprint_self_test_spec.rb +0 -175
  127. data/tools/dev/hooks/pre-commit +0 -21
  128. data/update_cpes.py +0 -250
@@ -1,764 +0,0 @@
1
- .NET CLR
2
- .NET Remoting
3
- 11000 Series Content Service Switch
4
- 2wire
5
- 389 Directory Server
6
- 3CX Web Server
7
- 4690 FTP Server
8
- ADAudit Plus
9
- AIOHTTP
10
- AOS
11
- APIC
12
- ARRIS
13
- ASDM
14
- ASM
15
- ASP.NET
16
- Abyss Web Server X1
17
- Abyss Web Server X2
18
- Access Manager
19
- Active Directory Controller
20
- Active Intelligence Engine
21
- ActiveMQ
22
- AdGuard Home
23
- AirTunes
24
- Airflow
25
- Alteon Web Switch
26
- Android Debug Database
27
- AnswerX
28
- Antivirus for Gateways
29
- Apache Tomcat HTTP Connector
30
- AppleShare IP Mail Server
31
- Application Load Balancer
32
- Application Protection System, Enterprise
33
- Application Server Portal
34
- Application Server Web Cache
35
- Appweb
36
- Arachni
37
- Artifactory
38
- Aspen
39
- Aura Communication Manager
40
- AuthServ
41
- Authoritative Server
42
- Avahi
43
- Azure App Service on Azure Stack
44
- BIG-IP LTM
45
- BIND
46
- BRCM400
47
- Bftpd
48
- Bigfoot Email Tools
49
- BlackJumboDog
50
- BladeSystems
51
- Boa
52
- Bugzilla
53
- CCProxy
54
- CMS
55
- CMS400.NET
56
- CMailServer
57
- CODA
58
- CRM
59
- CUPS
60
- CacheServe
61
- Caddy
62
- CakePHP
63
- Calibre-Web
64
- CallPilot
65
- Celerra
66
- CentOS Directory Server
67
- CentOS Web Panel
68
- Cherokee
69
- CherryPy
70
- Chronograf
71
- ClearPass Policy Manager
72
- Cloud C2
73
- CloudFlare Load Balancer
74
- CloudFront Load Balancer
75
- Cobalt Strike Listener
76
- CockroachDB
77
- Code Review
78
- ColdFusion
79
- Collaboration Server
80
- Commerce Server
81
- Communication Broker
82
- Communigate Pro
83
- Confluence
84
- Connect
85
- ConnectUPS
86
- Consul
87
- Content Server
88
- Control
89
- CouchDB
90
- Couchbase Server
91
- Courier IMAP
92
- Courier POP
93
- Cowboy
94
- Coyote
95
- Cross Web Server
96
- CrushFTP Web Interface
97
- Cygwin X Server Project
98
- Cyrus IMAP
99
- Cyrus POP
100
- DEC eXcursion X Server
101
- DNS
102
- DNS Server
103
- DSView
104
- Dashboard
105
- Data Connection Directory
106
- Deploy
107
- Desktop
108
- Desktop Authority
109
- Desktop Central
110
- Device Manager
111
- Director
112
- Directory Server
113
- Dnsmasq
114
- DocuWiki
115
- Dokuwiki
116
- Domain Time II
117
- Domino LDAP Server
118
- Dovecot
119
- Drive
120
- Dropbear SSH
121
- Druid
122
- Dynamo
123
- E-mail Firewall
124
- E-mail Services
125
- ESMTP
126
- EWS
127
- Ecelerity Mail Server
128
- Elastic Load Balancer
129
- Elastic Load Balancing
130
- EmWeb
131
- Email Appliance
132
- Email Security
133
- Email Security Gateway
134
- Embedded SSH Server
135
- Endpoint Protection Manager
136
- Enterprise
137
- Envoy
138
- Exchange 2000 Server
139
- Exchange 2003 Server
140
- Exchange 2007 Server
141
- Exchange Server
142
- Exchange Server 5.5
143
- Express WebTools
144
- Expressway
145
- FTGate
146
- FTP
147
- FTP Daemon
148
- FTP Server
149
- FTPD
150
- FUPPES
151
- FWTK
152
- FastTrack Server
153
- Fiery Print Server
154
- FileZilla Server
155
- Firewall-1
156
- Fireware XTM
157
- Fisheye
158
- Flink
159
- Flower
160
- Flussonic Media Server
161
- Flyspray
162
- FortiVoice
163
- FortressSSH Server
164
- FreSSH
165
- FreeNAS
166
- FreeSWITCH
167
- Fusion Middleware
168
- GHost
169
- GNAT Box
170
- GStreamer RTSP Server
171
- Gateway
172
- Gerrit
173
- GitLab
174
- Gitea
175
- GlassFish Server
176
- GoAhead Webserver
177
- Gogs
178
- Google Front End
179
- Google Web Services
180
- Grafana
181
- Graylog
182
- GroupWise
183
- Gunicorn
184
- HAProxy
185
- HAProxy Stats Server
186
- HTTP
187
- HTTP Server
188
- HTTPD
189
- Hadoop Web Admin
190
- Help Desk Server
191
- Hikvision Web Server
192
- Horizon
193
- HttpProxy
194
- Hummingbird Exceed X server
195
- IBM Domino
196
- IIS
197
- IMail Server
198
- IOS
199
- IPVA
200
- ISEE
201
- Icecast
202
- Idea Web Server
203
- Ignition Gateway
204
- InfluxDB
205
- InsightVM
206
- Integrated Lights Out Manager
207
- Intel(R) Active Management Technology
208
- Intel(R) Standard Manageability
209
- Internet Directory Server
210
- Internet Graphics Server
211
- Internet Mail Scanner
212
- Internet Mail Server
213
- Internet Mail Services
214
- IntraStore
215
- JBoss AS
216
- JBoss EAP
217
- JBossWeb
218
- JC-HTTPD
219
- JC-SHTTPD
220
- JRun
221
- JServ
222
- James
223
- Jamf Pro
224
- Java System Application Server
225
- Java System Application Server Platform Edition
226
- Java System Web Proxy Server
227
- Java System Web Server
228
- Jenkins
229
- JetDirect
230
- Jetty
231
- Jira
232
- Joom!Fish
233
- KM FTPD
234
- KM-MFP-HTTP
235
- Kamailio
236
- Kangle
237
- Kerio Connect
238
- Kerio Control
239
- Kestrel web server
240
- Kibana
241
- Kiwi Syslog
242
- Knot DNS
243
- Kubernetes
244
- LDAP Agent for eDirectory
245
- LDAP Server
246
- LLBServer
247
- Lansweeper
248
- LibreNMS
249
- License Manager
250
- Licensing Manager
251
- Lightweight Directory Server
252
- ListManager
253
- LiteSpeed Web Server
254
- Lotus Domino
255
- Lotus Expeditor Server
256
- Lotus Sametime
257
- Lync Server
258
- MAILsweeper
259
- MDaemon
260
- MERCUR
261
- MOVEit DMZ
262
- Mail Security for SMTP
263
- Mail Server
264
- Mail-Max
265
- MailEnable
266
- MailSite
267
- Management Agent
268
- Management Console
269
- Management Server
270
- Management Service
271
- MariaDB
272
- Mastodon
273
- MaxScale
274
- Media Server
275
- MediaSense
276
- Mercury Mail Transport System
277
- Merlin
278
- Messaging Gateway
279
- Messaging Server
280
- MetaDirectory Server
281
- Metabase
282
- Metasploit
283
- MiniDLNA
284
- MiniUPnPd
285
- MobaXterm
286
- MoinMoin
287
- Mongoose
288
- Mongrel
289
- Monit
290
- Moodle
291
- MultiNet
292
- Multicraft
293
- Munin
294
- MySQL
295
- MySQL Proxy
296
- NGINX Ingress Controller
297
- NNTP
298
- NQ
299
- NTMail
300
- NTP
301
- Nagios Log Server
302
- Nagios Network Analyzer
303
- NcFTPd Server
304
- Nepenthes
305
- Nessus
306
- Net-DK Web Server
307
- NetCache
308
- NetData
309
- NetSarang XManager
310
- NetScaler
311
- NetScaler Gateway
312
- NetScaler Insight Center
313
- NetScaler SDX Gateway
314
- NetScreen
315
- NetTracker
316
- NetVanta
317
- NetWare Enterprise Web Server
318
- NetWare HTTP Server
319
- NetWare HTTP Stack
320
- NetWeaver AS ABAP
321
- NetWeaver Application Server
322
- NetWeaver Application Server Java
323
- NetWeaver Internet Communication Manager
324
- NetWeaver Web AS
325
- Netscaler
326
- Network Monitor
327
- Network Printer Manager
328
- Nexpose
329
- Nextcloud Server
330
- Nexus Repository Manager
331
- Niagara AX
332
- Node
333
- Notebook
334
- Nucleus SNMP Agent
335
- Nuggets Learning Server
336
- Observium
337
- Office 365 Reporter
338
- OpManager
339
- Open Directory
340
- Open Stack Platform Director
341
- OpenAdStream
342
- OpenEdge Explorer
343
- OpenFire
344
- OpenLDAP
345
- OpenManage
346
- OpenMediaVault
347
- OpenResty
348
- OpenSER
349
- OpenSIPS
350
- OpenSMTPD
351
- OpenSSH
352
- OpenText Exceed
353
- OpenVMS
354
- OpenVPN Access Server
355
- OpenView
356
- Oracle Application Server Containers
357
- Orion Platform
358
- Outlook Web Access
359
- OzymanDNS
360
- PA Firewall
361
- PBX
362
- PHP
363
- PMS
364
- PMail Server
365
- PWS
366
- Panorama Server
367
- Paramiko
368
- Percona Server
369
- Perl
370
- Phabricator
371
- Phusion Passenger
372
- Pi-hole
373
- Platform Services Controller
374
- Plesk
375
- Portainer
376
- Post.Office
377
- Postfix
378
- Power IQ
379
- PowerMTA
380
- ProFTPD
381
- ProRat
382
- Prometheus
383
- Proxy
384
- Proxygen
385
- Pulse Connect Secure
386
- Pure-FTPd
387
- QTSS
388
- QVT/Net
389
- Qpopper
390
- RT
391
- Rapid Logic
392
- RealServer
393
- RealVNC
394
- Recursor
395
- Red Hat Directory Server
396
- Redis Commander
397
- Redmine
398
- Reflection
399
- Reflection for Secure IT
400
- ReflectionX
401
- RemoteView
402
- Resin
403
- Resolver
404
- Reverse Channel Proxy
405
- RomPager
406
- RomSShell
407
- Rundeck
408
- Rundeck Enterprise
409
- S3
410
- S7/S5 OPC Server
411
- SABnzbd
412
- SAP Message Server
413
- SCO X server
414
- SIP Stack
415
- SIPPS IP Phone
416
- SLMail
417
- SMH
418
- SMTP
419
- SNMP Agent
420
- SPIP
421
- SQL Anywhere
422
- SSH
423
- SSH Secure Shell
424
- SSH Server
425
- SSH Tectia Server
426
- SSL-VPN
427
- STARFACE PBX
428
- STUN Server
429
- SWAT
430
- Sage X3 Syracuse Web Server
431
- Samba
432
- Search
433
- Secure FTP Server
434
- Secure Global Desktop
435
- Secure Tencent Gateway
436
- SecureTransport
437
- Security Center
438
- Security Directory Server
439
- Security Scanner
440
- Sendmail
441
- Sentinel Keys Server
442
- Sentinel Protection Server
443
- Serv-U
444
- Serv-U FTP Server
445
- ShellInABox
446
- SimpleDB
447
- SimpleHTTP
448
- Site Recovery Manager
449
- Skype for Business
450
- SmartDNS
451
- SmartSense Tool
452
- SmbFTPD
453
- Snowball
454
- SonarQube
455
- SpeedTouch
456
- Splunk
457
- Squeezebox
458
- Squid
459
- StarNet X-Win32
460
- Streaming Engine
461
- Stronghold
462
- Sun Directory Proxy Server
463
- Sun Directory Server
464
- Sun Java System Directory Server
465
- Sun ONE Directory Server
466
- Sunny WebBox
467
- SurgeFTP
468
- Swagger UI
469
- Sync Gateway
470
- TBS FTP Server
471
- TCP/IP
472
- TCPIP POP server
473
- TUX Web Server
474
- Tableau Server
475
- TeamCity
476
- Tengine
477
- TestCenter IQ
478
- Thin
479
- TigerVNC
480
- TinyGS
481
- Tinyproxy
482
- Tivoli Access Manager for e-business WebSEAL
483
- Tivoli Storage FlashCopy Manager
484
- Tivoli Storage Manager
485
- Tomcat
486
- Tor
487
- Tornado
488
- Traefik Proxy
489
- Transportation Management
490
- Twisted FTPD
491
- Twisted Web
492
- Twonky Media Server
493
- UNMS
494
- UnboundID Directory Proxy Server
495
- UnboundID Directory Server
496
- UniFi
497
- UniFi Video
498
- Universal Management Appliance
499
- Unraid
500
- Urchin Tracking Module
501
- Usermin
502
- VM
503
- VMS SFTP Server
504
- VOPMail
505
- VPOP3
506
- VRP
507
- VShell
508
- Varnish
509
- Vault
510
- VcXsrv
511
- View
512
- Vignette
513
- Virtual Directory Server
514
- Virtual Environment
515
- Virtualization Manager
516
- VisionFS
517
- VxWorks CIFS
518
- WEBrick
519
- WHM
520
- WLED
521
- WS_FTP
522
- WU-FTPD
523
- WeOnlyDo SSH Server
524
- Web Cache
525
- Web Client
526
- Web Jetadmin
527
- Web PN Server
528
- Web Server
529
- Web Station
530
- WebGUI
531
- WebLogic
532
- WebServer
533
- WebShield
534
- WebSphere
535
- WebSphere Load Balancer
536
- WebTrends
537
- Webmin
538
- Webserver
539
- Werkzeug
540
- WildFly
541
- WinRoute
542
- WinSSHD
543
- WinWebMail
544
- Windows CE Web Server
545
- Windows Media Player
546
- Windows Media Server
547
- Wing FTP Server
548
- Work Server
549
- X.Org X11
550
- XAMPP Server
551
- XBMC
552
- XFree86
553
- XML DB
554
- XSecurePro
555
- XSun Solaris X11 server
556
- XenServer
557
- Xming
558
- Xvnc
559
- YNQ
560
- ZMailer
561
- Zabbix
562
- Zimbra
563
- Zimbra Collaboration Suite
564
- Zing Vision
565
- Zope
566
- alphapd
567
- axTLS
568
- bashttpd
569
- bsnmpd
570
- cPanel
571
- cPanel Service Daemon
572
- djbdns
573
- dnsd
574
- eDirectory
575
- ePolicy Orchestrator
576
- emHTTPD
577
- etherpad
578
- exim
579
- flowssh
580
- gSOAP
581
- gdnsd
582
- httpd
583
- iLO
584
- iScale
585
- inetutils ftpd
586
- ipGENADevice
587
- ipUPnP
588
- libssh
589
- libupnp
590
- lighttpd
591
- micro_httpd
592
- mini_httpd
593
- mod_access
594
- mod_access_compat
595
- mod_actions
596
- mod_alias
597
- mod_allowmethods
598
- mod_asis
599
- mod_auth
600
- mod_auth_anon
601
- mod_auth_basic
602
- mod_auth_dbm
603
- mod_auth_digest
604
- mod_auth_form
605
- mod_auth_ldap
606
- mod_auth_oracle
607
- mod_auth_pgsql
608
- mod_auth_radius
609
- mod_authn_alias
610
- mod_authn_anon
611
- mod_authn_core
612
- mod_authn_dbd
613
- mod_authn_dbm
614
- mod_authn_default
615
- mod_authn_file
616
- mod_authn_socache
617
- mod_authnz_fcgi
618
- mod_authnz_ldap
619
- mod_authz_core
620
- mod_authz_dbd
621
- mod_authz_dbm
622
- mod_authz_default
623
- mod_authz_groupfile
624
- mod_authz_host
625
- mod_authz_owner
626
- mod_authz_user
627
- mod_autoindex
628
- mod_brotli
629
- mod_buffer
630
- mod_cache
631
- mod_cache_disk
632
- mod_cache_socache
633
- mod_cern_meta
634
- mod_cgi
635
- mod_cgid
636
- mod_charset_lite
637
- mod_data
638
- mod_dav
639
- mod_dav_fs
640
- mod_dav_lock
641
- mod_dav_svn
642
- mod_dbd
643
- mod_deflate
644
- mod_dialup
645
- mod_dir
646
- mod_disk_cache
647
- mod_dontdothat
648
- mod_dumpio
649
- mod_echo
650
- mod_env
651
- mod_example
652
- mod_example_hooks
653
- mod_expires
654
- mod_ext_filter
655
- mod_fcgid
656
- mod_file_cache
657
- mod_filter
658
- mod_frontpage
659
- mod_gzip
660
- mod_headers
661
- mod_heartbeat
662
- mod_heartmonitor
663
- mod_http2
664
- mod_ident
665
- mod_imagemap
666
- mod_imap
667
- mod_include
668
- mod_info
669
- mod_isapi
670
- mod_jk
671
- mod_jk2
672
- mod_lbmethod_bybusyness
673
- mod_lbmethod_byrequests
674
- mod_lbmethod_bytraffic
675
- mod_lbmethod_heartbeat
676
- mod_ldap
677
- mod_log_config
678
- mod_log_debug
679
- mod_log_forensic
680
- mod_logio
681
- mod_lua
682
- mod_macro
683
- mod_md
684
- mod_mem_cache
685
- mod_mime
686
- mod_mime_magic
687
- mod_negotiation
688
- mod_nw_ssl
689
- mod_perl
690
- mod_privileges
691
- mod_proxy
692
- mod_proxy_ajp
693
- mod_proxy_balancer
694
- mod_proxy_connect
695
- mod_proxy_express
696
- mod_proxy_fcgi
697
- mod_proxy_fdpass
698
- mod_proxy_ftp
699
- mod_proxy_hcheck
700
- mod_proxy_html
701
- mod_proxy_http
702
- mod_proxy_http2
703
- mod_proxy_scgi
704
- mod_proxy_uwsgi
705
- mod_proxy_wstunnel
706
- mod_python
707
- mod_ratelimit
708
- mod_reflector
709
- mod_remoteip
710
- mod_reqtimeout
711
- mod_request
712
- mod_rewrite
713
- mod_sed
714
- mod_session
715
- mod_session_cookie
716
- mod_session_crypto
717
- mod_session_dbd
718
- mod_setenvif
719
- mod_slotmem_plain
720
- mod_slotmem_shm
721
- mod_so
722
- mod_socache_dbm
723
- mod_socache_dc
724
- mod_socache_memcache
725
- mod_socache_shmcb
726
- mod_speling
727
- mod_ssl
728
- mod_status
729
- mod_substitute
730
- mod_suexec
731
- mod_unique_id
732
- mod_unixd
733
- mod_userdir
734
- mod_usertrack
735
- mod_version
736
- mod_vhost_alias
737
- mod_watchdog
738
- mod_wsgi
739
- mod_xml2enc
740
- nginx
741
- noVNC
742
- ntopng
743
- ownCloud Server
744
- perl
745
- pfSense
746
- qmail
747
- qpopper-mysql
748
- raptor
749
- rbldnsd
750
- sfcb
751
- sshlib
752
- thttpd
753
- tnftpd
754
- uc-httpd
755
- ucftpd
756
- unbound
757
- uvicorn
758
- vCenter
759
- vCenter Converter
760
- vmauthd
761
- vsFTPd
762
- vsFTPd Extended
763
- z/OS FTP Server
764
- zFTPServer