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,847 +0,0 @@
1
- 2N Telekomunikace
2
- 3CX
3
- 3Com
4
- 8x8 Inc.
5
- A.K.I Software
6
- ACME
7
- ACT Security
8
- ADB
9
- ADC
10
- ADTRAN
11
- AIOHTTP Project
12
- ALCATEL
13
- ALT
14
- ALU
15
- AMAG Technology
16
- AMI
17
- AMTDatasouth
18
- ANNKE
19
- APC
20
- ARRIS
21
- ASUS
22
- AT&T - GBCS
23
- AT&T Laboratories Cambridge
24
- AT&T Starpoint
25
- AT&T Worldworx
26
- ATEN
27
- ATG
28
- ATL Telecom Limited
29
- ATT
30
- AVM
31
- AVT
32
- AVTECH
33
- AXIS
34
- Aastra
35
- Accelerated Technology
36
- AdGuard
37
- Adaptec
38
- AdminDroid
39
- Adobe
40
- Adtran
41
- Aerohive
42
- Agere Systems
43
- Agilent
44
- AirDefense
45
- AirMagnet
46
- Aircookie
47
- Airties
48
- Akamai
49
- Algo
50
- AlienVault
51
- Allegro Software
52
- Allen-Bradley
53
- Allied Telesyn
54
- Allworx
55
- Alpha Technologies
56
- Alpha Telecom, Inc. U.S.A.
57
- Alpine
58
- Alt-N
59
- Amazon
60
- AnalogX
61
- Android Debug Database
62
- AnyBus
63
- Apache
64
- Apple
65
- Aprelium Technologies
66
- Aptinex
67
- ArGoSoft
68
- Arachni
69
- Araknis Networks
70
- Arch
71
- Arescom
72
- Array Networks
73
- Artisoft Inc.
74
- Aruba Networks
75
- Ascend
76
- Ascom
77
- Asentria
78
- Asianux
79
- Aspect Communications
80
- Aspen
81
- Asterisk
82
- Asus
83
- Atlassian
84
- Atrium Software
85
- Attachmate
86
- Attivio
87
- AudioCodes
88
- Avaya
89
- Avery Dennison
90
- Avigilon
91
- Avleen Vig
92
- Avocent
93
- Axis
94
- Axonius
95
- Axway
96
- Azul Systems
97
- BEA
98
- BT
99
- Bandura Labs
100
- Bangteng
101
- Barco
102
- Barix
103
- Barracuda
104
- Berkeley Software Design Inc.
105
- Bftpd Project
106
- Bigfoot
107
- Bird Home Automation
108
- Bitvise
109
- BlackBox
110
- Blue Coat
111
- BlueCat
112
- Boa
113
- Bobcat
114
- Bomgar
115
- Bosch
116
- Bose
117
- BrightSign
118
- British Telecommunications
119
- Broadcom
120
- Brocade
121
- Brother
122
- Buffalo
123
- C&D Technologies
124
- C-Phone Corporation
125
- CA
126
- CBT
127
- CDVI
128
- CSM
129
- Cabletron
130
- CaddyServer
131
- Calibre-Web Project
132
- Calient
133
- Calnex
134
- Cambium Networks
135
- Canon
136
- Carnegie Mellon University
137
- Castelle
138
- Caucho
139
- Celery
140
- Cellopoint
141
- CentOS
142
- CentOS WebPanel
143
- Ceph
144
- Cesanta
145
- Chainpoint
146
- Check Point
147
- Checkpoint
148
- Cherokee Project
149
- CherryPy
150
- Ciena
151
- Cintech Tele-Management
152
- Cirilium, Inc.
153
- Cisco
154
- Citrix
155
- Clarent Corporation
156
- CleanBrowsing
157
- Clearswift
158
- Cleo
159
- Clipcomm
160
- CloudFlare
161
- CloudLinux
162
- Cloudera
163
- Cobalt
164
- Cockroach Labs
165
- Codian
166
- Colin Harrison
167
- Comcast
168
- Communigate
169
- Compaq
170
- Compression Labs
171
- Compuprint
172
- Compuware
173
- Conectiva
174
- Conexant
175
- Congruency, Inc.
176
- ConnectWise
177
- Control Solutions
178
- Couchbase
179
- Cradlepoint
180
- Crestron
181
- Critical Path
182
- CrushFTP
183
- CrystalVoice Communications
184
- Cumulus
185
- CyberPower
186
- Cyberoam
187
- D J Bernstein
188
- D-Link
189
- DD-WRT
190
- DEC
191
- Dahua
192
- Dan Kaminsky
193
- Data Connection
194
- Data Domain
195
- Data General
196
- Datalogic Mobile
197
- Datamax
198
- DeTeWe - Deutsche Telephonwerke AG
199
- Debian
200
- Dell
201
- Deutsche Telekom
202
- Device42
203
- Dialogic
204
- Digi
205
- Digitronic Computersysteme GmbH
206
- Digium
207
- DirectLOGIC
208
- DocuWiki
209
- Dokuwiki
210
- Double Precision
211
- Dovecot
212
- Dr. Neuhaus Mikroelektronik
213
- DrayTek
214
- Dreamhost
215
- Dropbear SSH Project
216
- Drupal
217
- Duo
218
- EFI
219
- ELAN
220
- EMC
221
- EMWAC
222
- ERIS
223
- Eagle Eye Networks
224
- Eaton
225
- Ecelerity
226
- Eclipse
227
- Ektron
228
- Elastic
229
- Eltek
230
- EmbedThis
231
- Embedthis
232
- Emby
233
- Emerson
234
- Emulex
235
- Encode
236
- Enterasys
237
- Envoy Proxy
238
- Epson
239
- EqualLogic
240
- Equivalence (OpenH323)
241
- Ericsson
242
- Eudora
243
- Evolis
244
- ExtraHop
245
- Extreme Networks
246
- Extron
247
- F5
248
- FUHO
249
- FUJI XEROX
250
- Facebook
251
- FarSite Communications
252
- FatWire
253
- Fedora Project
254
- Ferner
255
- Ferrari Electronik GmbH
256
- Fidelis
257
- Fidelix
258
- Filezilla-Project
259
- FireEye
260
- Firefly
261
- Floosietek
262
- FlowPoint
263
- Flussonic
264
- Flyspray
265
- Folding@home
266
- Fortinet
267
- Foscam
268
- Foundry
269
- Foundry Networks
270
- FreeBSD
271
- FreePBX
272
- FreeSWITCH
273
- Freebox
274
- FreshTomato
275
- Fuji Xerox
276
- Fujitsu
277
- Fujitsu Siemens
278
- GDM
279
- GFI
280
- GNU
281
- GPT Video Systems
282
- GStreamer
283
- GarrettCom
284
- Gene6
285
- General Dynamics
286
- Genesys Telecommunications Labs Inc
287
- Genetec
288
- Genivia
289
- Genscape
290
- Gentoo
291
- Gerrit
292
- GigaBlue
293
- Gigamon
294
- Gigaset
295
- GitHub
296
- GitLab
297
- Gitea
298
- Global Technology Associates
299
- GlobalScape
300
- GoGogate
301
- Gogs
302
- Google
303
- Gordano
304
- Grafana
305
- Grandstream
306
- Graylog
307
- Greenbone
308
- Greenwave Systems
309
- Greyware Automation Products, Inc.
310
- Gude
311
- Gunicorn
312
- H3C
313
- HAProxy
314
- HP
315
- HPE
316
- Hadoop
317
- Haivision
318
- Hak5
319
- Hanwha Techwin
320
- HashiCorp
321
- Hauni Elektronik
322
- HeiTel
323
- HiSilicon
324
- Hikvision
325
- HipServ
326
- Hipcam
327
- Honeywell
328
- Huawei
329
- Huawei-3com
330
- Hubitat
331
- Hummingbird Ltd.
332
- IBHsofte
333
- IBM
334
- INDECT
335
- IQinVision
336
- ISC
337
- ISDN Communications
338
- ITO Communications
339
- Idea
340
- Ignite Realtime
341
- ImageCom
342
- Imagistics
343
- Inari Inc.
344
- Incognito
345
- Indigo Active Vision Systems
346
- Indigo Security
347
- Inductive Automation
348
- InfluxData
349
- Ingate
350
- Intel
351
- Intermec
352
- Internet Archive
353
- Inveo
354
- Ipswitch
355
- Isilon
356
- Istio
357
- JFrog
358
- Jamf
359
- Jellyfin
360
- Jenkins
361
- JetBrains
362
- Juniper
363
- Jupyter
364
- KACE
365
- Kaeser Compressors
366
- Kali
367
- Kamailio
368
- Kaptivo
369
- Keenetic
370
- Kerio
371
- Keweon
372
- Keyper
373
- Keysight
374
- Kodi
375
- Konftel
376
- Kong
377
- Konica Minolta
378
- Kubernetes
379
- Kubuntu
380
- Kyocera
381
- Kyocera Mita
382
- LANCOM Systems
383
- LANDesk
384
- LG
385
- LINX
386
- Labtam
387
- Lanier
388
- Lansweeper
389
- Lantronix
390
- Leadtek Research Inc.
391
- Lencore
392
- Lenel
393
- Lenovo
394
- Lexmark
395
- LibreNMS
396
- Liebert
397
- Lifesize
398
- LigoWave
399
- Ligowave
400
- Lime Technologies
401
- Linksys
402
- Linux
403
- LiteSpeed Technologies
404
- LiveWorks Limited
405
- Logitech
406
- Lorex
407
- Lotus
408
- Loxone
409
- Lucent
410
- Lynx Technology
411
- Lyris
412
- MBP Kommunikationssysteme GmbH
413
- MPI Technologies
414
- MPS Software
415
- MRV Communications
416
- Ma Jian
417
- Macromedia
418
- Madge
419
- MagTek
420
- Mail-Max
421
- MailEnable
422
- ManageEngine
423
- Mandriva
424
- Marconi Communications
425
- MariaDB
426
- Mbedthis Software
427
- McAfee
428
- Media5 Corporation
429
- MediaGate
430
- Mediatrix Telecom
431
- Merak
432
- Meraki
433
- Mercury Security
434
- Merit LILIN
435
- Mersive
436
- MetaInfo
437
- Metabase
438
- MiBridge Inc.
439
- Michael Tokarev
440
- MicroStrategy
441
- Microplex
442
- Microsoft
443
- MikroTik
444
- MiniUPnP Project
445
- Mirapoint
446
- Mitel
447
- Mobatek
448
- Mobotix
449
- Mocana
450
- MoinMoin
451
- Moodle
452
- Mort Bay
453
- Motion Media Technology
454
- Motorola
455
- Moxa
456
- Mozilla
457
- MultiTech
458
- Multicraft
459
- Munin
460
- NACT Telecommunications
461
- NAGRA
462
- NAS4Free
463
- NEC
464
- NFT
465
- NLnet Labs
466
- NTP
467
- NVIDIA
468
- Nagios
469
- Nanoleaf
470
- NcFTP Software
471
- Neoscale
472
- Nero
473
- Net-SNMP
474
- NetApp
475
- NetBSD
476
- NetBotz
477
- NetData
478
- NetIQ
479
- NetSarang Computer, Inc.
480
- NetWin
481
- Netgear
482
- Netia
483
- Netopia
484
- Netreon
485
- Netrix Corporation
486
- Netscape
487
- Netscape Conference
488
- Netwave
489
- Network Alchemy Limited
490
- Network Equipment Technologies
491
- Neustar
492
- Nextcloud
493
- Nokia
494
- Nokia-Siemens
495
- Nominum
496
- Nortel
497
- Norton
498
- Novell
499
- Nuuo
500
- OPNsense
501
- Objective Communications
502
- Observium
503
- Oce
504
- Octopus
505
- Oki
506
- Okidata
507
- Open Text
508
- OpenBSD
509
- OpenLDAP
510
- OpenMediaVault
511
- OpenNAC
512
- OpenResty
513
- OpenSER
514
- OpenSIPS
515
- OpenSUSE
516
- OpenStack
517
- OpenVMS
518
- OpenVPN
519
- OpenWRT
520
- OpenWall
521
- Opengear
522
- Oracle
523
- Overland
524
- Oversee
525
- PHP
526
- PIAF
527
- PLD
528
- PRTG
529
- Pagoo, Inc.
530
- PalletsProjects
531
- Palm
532
- Palo Alto Networks
533
- Panasonic
534
- Panduit
535
- Paradyne
536
- Parallels
537
- Paramiko
538
- Patton
539
- Paul Smith Computer Services
540
- Pelco
541
- Percona
542
- Perl
543
- Phacility
544
- Philips
545
- Philips Video Conferencing Systems
546
- Phoenix Contact
547
- Pi-hole
548
- PictureTel
549
- Plain Black
550
- Plex
551
- Plixer
552
- Polatis
553
- Poly
554
- Polycom
555
- Portainer
556
- Postfix
557
- Power Measurement Ltd.
558
- PowerDNS
559
- PowerWare
560
- Pragma Systems
561
- Pro Group
562
- ProFTPD Project
563
- ProSoft Technology
564
- Process Software
565
- Progress
566
- Prometheus
567
- Pronet
568
- Proxmox
569
- Psion Teklogix
570
- Pulse Secure
571
- Pure Storage
572
- PureFTPd
573
- Python Software Foundation
574
- Q-SYS
575
- QNAP
576
- QNAP Systems
577
- QPC Software
578
- Qualcomm
579
- Quintum Technologies, Inc.
580
- RADVision, Inc.
581
- RIPE
582
- RSI
583
- RStudio
584
- RabbitMQ
585
- Rapid7
586
- Raritan
587
- Raspbian
588
- RealMedia
589
- RealNetworks
590
- RealVNC Ltd.
591
- Rectifier Technologies
592
- Red Hat
593
- Redback Networks
594
- Redline
595
- Redmine
596
- Rhino Software
597
- Ricoh
598
- Ridgeway Systems and Software
599
- Rifatron
600
- Riverbed
601
- Riverstone
602
- Rockliffe
603
- Rockwell Automation
604
- Rohde & Schwarz
605
- Roku
606
- Roxen
607
- Ruby-Lang
608
- Ruckus
609
- Ruijie
610
- Rundeck
611
- S2
612
- SABnzbd
613
- SAP
614
- SATO
615
- SBLIM
616
- SCO
617
- SEH Technology
618
- SGI
619
- SMA
620
- SMA Solar Technology Ag
621
- SMC Networks
622
- SPIP
623
- SSH Communications Security
624
- STARFACE GmhH
625
- SUSE
626
- SafeNet
627
- Sage
628
- Samba
629
- Samsung
630
- Sangoma
631
- SapporoWorks
632
- Satelitech
633
- Savin
634
- Scalix
635
- Schneider Electric
636
- Schneider Rundfunkwerke AG
637
- Science Dynamics Corporation
638
- Science Logic
639
- Scientific
640
- ScriptLogic
641
- Seagate
642
- Seattle Labs
643
- SecureConnect
644
- Segger
645
- Sendmail
646
- Sequent
647
- Sercomm
648
- Serome Technology, Inc.
649
- Serv-U
650
- ServerTech
651
- Sharp
652
- ShellInABox
653
- Shelly
654
- Shenzhen Reecam Tech. Ltd.
655
- ShoreTel
656
- Siebel
657
- Siemens
658
- SiliconDust
659
- Silver Peak
660
- Siqura
661
- Slackware
662
- SmoothWall
663
- SnapServer
664
- Sofrel
665
- Softing
666
- Software House
667
- SolarWinds
668
- SonarQube
669
- SonicWall
670
- Sonos
671
- Sony
672
- Sophos
673
- Source Technologies
674
- Sphera
675
- Spiceworks
676
- Spirent Communications
677
- SpliceCom
678
- Splunk
679
- SpotterRF
680
- Squid Cache
681
- Standard Networks
682
- StarNet Communications Corp.
683
- StarVox, Inc.
684
- StartCom
685
- Steinsvik
686
- Strategic Cyber LLC
687
- StreamComm
688
- SuSE
689
- Sun
690
- Super Micro
691
- Swagger
692
- Swissvoice
693
- Sybase
694
- Symantec
695
- Symbol
696
- Symbol Technologies Inc.
697
- Symplified
698
- Synacor
699
- Syndeo Corp.
700
- Synology
701
- SysMaster Corporation
702
- Systech
703
- TIS
704
- TLD
705
- TP-LINK
706
- TRENDnet
707
- TVersity
708
- TYPO3
709
- Tableau
710
- Tandberg
711
- Taobao
712
- Tasman Networks
713
- Technicolor
714
- Tektronix
715
- Teldat H. Kruszynski, M. Cichocki Sp. J.
716
- TeleStream Technologies, Inc.
717
- TeleWare
718
- Teledyne FLIR
719
- Telliris
720
- Telxon Corporation
721
- Tenable
722
- Tencent
723
- Teradici
724
- Thekelleys
725
- Thomson
726
- TigerVNC
727
- TightVNC
728
- Tildeslash
729
- Tilgin
730
- Tintro
731
- Tinyproxy Project
732
- Tivo
733
- Tobit Software
734
- Tokutek
735
- Tor Project
736
- TornadoWeb
737
- Toshiba
738
- Traefik Labs
739
- Treck
740
- Tridium
741
- Troy
742
- Truen
743
- Trustix
744
- Turbolinux
745
- Twisted Matrix Labs
746
- TwistedMatrix
747
- UNIX
748
- Ubee
749
- Ubiquiti
750
- Ubuntu
751
- UnboundID
752
- Unica
753
- Unify
754
- Unisys
755
- UnitedLinux
756
- VBrick
757
- VMware
758
- VTEL
759
- Vaddio
760
- Valcom
761
- VanDyke Software
762
- Vanguard Managed Solutions
763
- Varnish-cache
764
- VcXsrv
765
- Vegastream
766
- Vermillion
767
- Vertical Networks, Inc.
768
- ViaVideo/PolyCom
769
- VideoServer
770
- Vignette
771
- Vine
772
- Vircom
773
- Visuality Systems
774
- Vizio
775
- VocalTec Communications, Inc.
776
- Västgöta-Data AB
777
- WFTPServer
778
- WRQ, Inc.
779
- Washington University
780
- WatchGuard
781
- WeOnlyDo
782
- WebTrends
783
- Webmin
784
- Weidmüller
785
- Westbay Engineers
786
- Westell
787
- Western Digital
788
- White Box
789
- Wifx
790
- Wildix
791
- Wind River
792
- Wowza
793
- Wowza Media Systems
794
- Wyze
795
- X.Org
796
- XAMPP
797
- XFree86
798
- XRoads
799
- Xerox
800
- Xiongmai Tech
801
- Xiph
802
- Xiph.org
803
- Xitami
804
- Xlight
805
- Xubuntu
806
- Xyplex
807
- Xytronix
808
- Yamaha
809
- Yealink
810
- Yocto
811
- Youngzsoft
812
- ZMailer
813
- ZTE
814
- Zabbix
815
- ZebraNet
816
- Zed Shaw
817
- Zyxel
818
- aCola
819
- axTLS Project
820
- cPanel
821
- cz.nic
822
- enGenius
823
- estos
824
- etherpad
825
- exim
826
- gdnsd
827
- home.pl
828
- i.LON
829
- iRobot
830
- iStar
831
- iTach
832
- iXsystems
833
- innovaphone
834
- libssh
835
- lighttpd
836
- mod_ssl
837
- mod_wsgi
838
- nginx
839
- ninenines
840
- noVNC
841
- ntop
842
- ownCloud
843
- pfSense
844
- port25
845
- qmail
846
- rPath
847
- vsFTPd Project