-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvuln_banners.txt
1857 lines (1856 loc) · 49.7 KB
/
vuln_banners.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
3Com 3CDaemon FTP Server Version 2.0
Ability Server 2.34
CCProxy Telnet Service Ready
ESMTP TABS Mail Server for Windows NT
FreeFloat Ftp Server (Version 1.00)
IMAP4rev1 MDaemon 9.6.4 ready
MailEnable Service, Version: 0-1.54
NetDecision-HTTP-Server 1.0
PSO Proxy 0.9
SAMBAR
Sami FTP Server 2.0.2
Spipe 1.0
TelSrv 1.5
WDaemon 6.8.5
WinGate 6.1.1
Xitami
YahooPOPs! Simple Mail Transfer Service Ready
AdobeARMservice
XAMPP v3.2.2
Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.6.14
Secure Shell Login
Simple Mail Transfer
RSFTP
NSW User System FE
MSG ICP
MSG Authentication
Display Support Protocol
Route Access Protocol
MPM FLAGS Protocol
Message Processing Module [recv]
Digital Audit Daemon
Login Host Protocol (TACACS)
Remote Mail Checking Protocol
IMP Logical Address Maintenance
XNS Time Protocol
XNS Clearinghouse
ISI Graphics Language
XNS Authentication
XNS Mail
TACACS-Database Service
Oracle SQL*NET
DHCP/Bootstrap Protocol Server
DHCP/Bootstrap Protocol Client
Trivial File Transfer
Distributed External Object Store
World Wide Web HTTP
XFER Utility
HOSTS2 Name Server
MIT ML Device
Common Trace Facility
Kerberos (v5)
SU/MIT Telnet Gateway
DNSIX Securit Attribute Token Map
MIT Dover Spooler
Network Printing Protocol
Device Control Protocol
Tivoli Object Dispatcher
BSD supdupd(8)
DIXIE Protocol Specification
Swift Remote Virtural File Protocol
Metagram Relay
Com CDaemon FTP Server Version 1
Ability Server
FreeFloat Ftp Server (Version 1)
IMAPrev MDaemon
MailEnable Service
NetDecision-HTTP-Server
PSO Proxy
Sami FTP Server
Spipe
TelSrv
WDaemon
WinGate
XAMPP v1.0
HOSTS Name Server
Kerberos (v)
BSD supdupd()
hostnames NIC Host Name Server
tsap ISO-TSAP Class
Genesis Point-to-Point Trans Net, or x ISO Email
ACR-NEMA Digital Imag. & Comm.
Eudora compatible PW changer
SNA Gateway Access Server
PostOffice V.
portmapper, rpcbind
McIDAS Data Transmission Protocol
Audio News Multicast
Simple File Transfer Protocol
ANSA REX Notify
UUCP Path Service
SQL Services
Network News Transfer Protocol
Network Time Protocol
ANSA REX Trader
Locus PC-Interface Net Map Ser
Locus PC-Interface Conn Server
GSS X License Verification
Password Generator Protocol
cisco FNATIVE
cisco SYSMAINT
Statistics Service
Microsoft RPC services
PROFILE Naming System
NETBIOS Name Service
NETBIOS Datagram Service
NETBIOS Session Service
EMFIS Control Service
Britton-Lee IDM
Interim Mail Access Protocol v
NewS window system
CRONUS-SUPPORT
AED Emulation Service
KNET/VM Command/Message Protocol
PCMail Server
snmp-trap
CMIP Manager
X Display Mgr. Control Proto
Border Gateway Protocol
Intergraph
Unisys Audit SITP
Queued File Transport
Gateway Access Control Protocol
Prospero Directory Service
OSU Network Monitoring System
Spider Remote Monitoring Protocol
Internet Relay Chat
DNSIX Session Mgt Module Audit Redir
SNMP Unix Multiplexer
IBM System Resource Controller
AppleTalk Routing Maintenance
AppleTalk Name Binding
AppleTalk Echo
AppleTalk Unused
AppleTalk Zone Information
Trivial Authenticated Mail Protocol
wais, ANSI Z.
Texas Instruments C/G Terminal
ATEXSSTR
Access Technology License Server
dBASE Unix
Unisys ARPs
Interactive Mail Access Protocol v
Berkeley rlogind with SPX auth
Berkeley rshd with SPX auth
Certificate Distribution Center
FW management console for communication w/modules and also secure electronic transaction (set) port
also yak winsock personal chat
efficient short remote operations
iiop name service over tls/ssl
Tobit David Service Layer
Tobit David Replica
novastor backup
appleshare ip webadmin
RTSPS
Texar Security Port
Zebra server
MATIP Type A
MATIP Type B or bhoetty also safetp
DTAG, or bhoedap
Legent Corporation (now Computer Associates Intl.)
TIA/EIA/IS- modem server
hp performance data alarm manager
Unidata LDM Version
Lightweight Directory Access Protocol
SynOptics SNMP Relay Port
SynOptics Port Broker Port
Multi Protocol Trans. Net.
ISO-TSAP Class
Workstation Solutions
Uninterruptible Power Supply
Genie Protocol
Interactive Mail Support Protocol
Prospero Resource Manager Sys. Man.
DECLadebug Remote Debug Protocol
Remote MT Protocol
Trap Convention Port
Meeting maker
IBM Operations Planning and Control Start
Server Location
secure http (SSL)
Simple Network Paging Protocol
SMB directly over IP
AS Server Mapper
Cray Network Semaphore server
Cray SFS config server
apple quick time
smtp protocol over TLS/SSL (was ssmtp)
Air Soft Power Burst
saft Simple Asynchronous File Transfer
Transport Independent Convergence for FNA
FirstClass Protocol
timeserver
newdate
Customer IXChange
rpc
uucpd
Kerberos (v/v)
krcmd Kerberos (v/v)
Kerberos encrypted remote shell -kfall
AFP over TCP
Real Time Stream Control Protocol
rfs, rfs_server, Brunhoff remote filesystem
rmonitord
plan file service
Microsoft shuttle
Microsoft rome
demon
udemon
Philips Video-Conferencing
FileMaker, Inc. - HTTP Alternate
HTTP RPC Ep Map
SCO Web Server Manager
Aeolon Core Protocol
Sun IPC server
Reliable Syslog Service
XML-RPC over BEEP
CommonTime Mnotes PDA Synchronization
TUNNEL
SOAP over BEEP
Cray Unified Resource Manager
Sender-Initiated/Unsolicited File Transfer
HMMP Indication
HMMP Operation
SSLshell
Internet Configuration Manager
SCO System Administration Server
DEI-ICDA
Compaq EVM
SCO WebServer Manager
Collaborator
DMTF out-of-band web services management protocol
Crypto Admin
Apple Mac Xserver admin
Apple IMAP mail admin
PassGo Tivoli
Qmail Quick Mail Queueing
Com AMP
RDA
Internet Printing Protocol
Service Status update (Sterling Software)
RLZ DBase
LDAP over SSL
ESRO-EMSDP V.
SANity
PSSC
Label Distribution
DHCP Failover
Registry Registrar Protocol (RRP)
Cadview-d - streaming d models over the internet
IEEE MMS
HELLO_PORT
RepCmd
AODV
TINC
SPMP
RMC
TenFold
MacOS Server Admin
HAP
PFTP
PureNoise
Sun DR
Id Software Doom
MeComm
MeRegister
VACDSM-SWS
VPPS-QUA
CIMPLEX
ACAP server of Communigate (www.stalker.com)
DCTP
VPPS Via
Virtual Presence Protocol
GNU Generation Foundation NCP
XFR
CORBA IIOP SSL
MDC Port Mapper
Hardware Control Protocol Wismar
ApplianceWare managment protocol
nmap NMAP
vatp Velazquez Application Transfer Protocol
resvc The Microsoft Exchange Server Routing Service
hyperwave-isp Hyperwave-ISP
ha-cluster
ieee-mms-ssl IEEE-MMS-SSL
rushd RUSHD
uuidgen UUIDGEN
olsr OLSR
accessnetwork Access Network
epp Extensible Provisioning Protocol
lmp Link Management Protocol (LMP)
iris-beep IRIS over BEEP
unknown
elcsd errlog copy/server daemon
agentx AgentX
silc Secure Internet Live Conferencing -- http://silcnet.org
borland-dsj Borland DSJ
entrustmanager EntrustManager - NorTel DES auth network see
entrust-ash Entrust Administration Service Handler
cisco-tdp Cisco TDP
tbrpf TBRPF
iris-xpc IRIS over XPC
iris-xpcs IRIS over XPCS
iris-lwz IRIS-LWZ
omfs OpenMosix File System
IBM NetView DM/ Server/Client
IBM NetView DM/ send
IBM NetView DM/ receive
netcp NETscout Control Protocol
netgw
netrcs Network based Rev. Cont. Sys.
flexlm Flexible License Manager
fujitsu-dev Fujitsu Device Control
ris-cm Russell Info Sci Calendar Manager
kerberos-adm Kerberos admin/changepw
kerberos kdc Kerberos (v)
kerberos_master Kerberos `kadmin' (v)
qrh
rrh
krb_prop kerberos/v server propagation
nlogin
con
krbupdate kreg Kerberos (v) registration
kpasswd kpwd Kerberos (v) "passwd"
quotad
cycleserv
omserv
webster
phonebook phone
vid
cadlock
rtip
submit
rpasswd
entomb
wpages
multiling-http Multiling HTTP
wpgs
hp-collector hp performance data collector
hp-managed-node hp performance data managed node
spamassassin Apache SpamAssassin spamd
controlit Remotely possible
mdbs_daemon
ccproxy-http CCProxy HTTP/Gopher/FTP (over HTTP) proxy
FCP
itm-mcell-s
pkix--ca-ra PKIX- CA/RA
netconf-ssh NETCONF over SSH
netconf-beep NETCONF over BEEP
netconfsoaphttp NETCONF for SOAP over HTTPS
netconfsoapbeep NETCONF for SOAP over BEEP
dhcp-failover dhcp-failover
iSCSI
OWAMP-Control
Two-way Active Measurement Protocol (TWAMP) Control
SUP server
rsync Rsync server ( http://rsync.samba.org )
iclcnet-locate ICL coNETion locate server
iclcnet_svinfo ICL coNETion server info
accessbuilder or Audio CD Database
sun-manageconsole Solaris Management Console Java listener (Solaris & )
omginitialrefs OMG Initial Refs
samba-swat Samba SWAT tool. Also used by ISS RealSecure.
iss-realsecure ISS RealSecure Sensor
iss-console-mgr ISS Console Manager
kink Kerberized Internet Negotiation of Keys (KINK)
xact-backup
apex-mesh APEX relay-relay service
apex-edge APEX endpoint-relay service
oftep-rpc Often RPC.statd (on Redhat Linux)
rndc RNDC is used by BIND (& probably other NS)
securenetpro-sensor
ftps-data ftp protocol, data, over TLS/SSL
ftps ftp protocol, control, over TLS/SSL
nas Netnews Administration System
telnets telnet protocol over TLS/SSL
imaps imap protocol over TLS/SSL
ircs irc protocol over TLS/SSL
pops POP protocol over TLS/SSL
xtreelic XTREE License Server
maitrd
busboy
garcon
windows-icfw Windows Internet Connection Firewall or Internet Locator Server for NetMeeting.
UFS-aware server
exp RFC-style Experiment (*) [RFC]
netvenuechat Nortel NetVenue Notification, Chat, Intercom
kdm K Display Manager (KDE version of xdm)
NFS-or-IIS IIS, NFS, or listener RFS remote_file_sharing
LSA-or-nterm nterm remote_login network_terminal
IIS
ms-lsa
iad BBN IAD
netinfo Netinfo is apparently on many OS X boxes.
zincite-a Zincite.A backdoor
multidropper A Multidropper Adware, or PhoneFree
nsstp Nebula Secure Segment Transfer Protocol
ams AMS
mtqp Message Tracking Query Protocol
sbl Streamlined Blackhole
netsaint Netsaint status daemon
danf-ak AK Product
afrog Subnet Roaming
boinc BOINC Client Control or Microsoft IIS
dcutility Dev Consortium Utility
fpitp Fingerprint Image Transfer Protocol
wfremotertm WebFilter Remote Monitor
neod Sun's NEO Object Request Broker
td-postman Tobit David Postman VPMN
java-or-OTGfileshare JEE nameserver, also OTG, also called Disk/Application extender. Could also be MiniCommand backdoor OTGlicenseserv
optima-vnet
ddt Dynamic DNS tools
remote-as Remote Assistant (RA)
brvread BRVREAD
ansyslmd
vfo VFO
startron STARTRON
nim
nimreg
polestar
kiosk KIOSK
veracity
kyoceranetdev KyoceraNetDev
jstel JSTEL
syscomlan SYSCOMLAN
fpo-fns
instl_boots Installation Bootstrap Proto. Serv.
instl_bootc Installation Bootstrap Proto. Cli.
cognex-insight
gmrupdateserv GMRUpdateSERV
bsquare-voip BSQUARE-VOIP
cardax CARDAX
bridgecontrol Bridge Control
warmspotMgmt Warmspot Management Protocol
rdrmshc RDRMSHC
sns_credit Shared Network Services (SNS) for Canadian credit card authorizations
imgames IMGames
avocent-proxy Avocent Proxy Protocol
asprovatalk ASPROVATalk
socks
pvuniwien PVUNIWIEN
amt-esd-prot AMT-ESD-PROT
ansoft-lm- Anasoft License Manager
webobjects Web Objects
cplscrambler-lg CPL Scrambler Logging
cplscrambler-in CPL Scrambler Internal
cplscrambler-al CPL Scrambler Alarm Log
ff-annunc FF Annunciation
ff-fms FF Fieldbus Message Specification
ff-sm FF System Management
obrpd Open Business Reporting Protocol
proofd PROOFD
rootd ROOTD
nicelink NICELink
cnrprotocol Common Name Resolution Protocol
sunclustermgr Sun Cluster Manager
rmiactivation RMI Activation
rmiregistry RMI Registry
mctp MCTP
pt-discover PT-DISCOVER
adobeserver- ADOBE SERVER
xaudio Xaserver # X Audio Server
xrl XRL
ftranhc FTRANHC
isoipsigport- ISOIPSIGPORT-
ratio-adp
kpop Pop with Kerberos
nfsd-status Cluster status info
lmsocialserver LM Social Server
msql mini-sql server
ltp-deepspace Licklider Transmission Protocol
mini-sql Mini SQL
ardus-cntl ARDUS Control
ardus-mtrns ARDUS Multicast Transfer
sacred SACRED
bnetgame Battle.net Chat/Game Protocol
rmpp Datalode RMPP
availant-mgr
murray Murray
hpvmmcontrol HP VMM Control
hpvmmagent HP VMM Agent
hpvmmdata HP VMM Agent
supfiledbg SUP debugging
saphostctrl SAPHostControl over SOAP/HTTP
casp CAC App Service Protocol
caspssl CAC App Service Protocol Encripted
kvm-via-ip KVM-via-IP Management Service
aplx MicroAPL APLX
omnivision OmniVision Communication Service
hhb-gateway HHB Gateway Control
trim TRIM Workgroup Service
encrypted_admin encrypted admin requests
ccex ClearCommerce Engine .x ( www.clearcommerce.com)
mxomss User Message Service
imyx Infomatryx Exchange
fuscript Fusion Script
x-icue X iCue Show Control
capioverlan CAPIoverLAN
elfiq-repl Elfiq Replication Service
bvtsonar BVT Sonar Service
blaze Blaze File Server
unizensus Unizensus Login Server
winpoplanmess Winpopup LAN Messenger
c-acse ANSI C. Port
resacommunity Community Service
iascontrol-oms iasControl OMS
iascontrol Oracle iASControl
lsnr Oracle DB listener
oracle-oms Oracle OMS
health-trap Health Trap
sddp SmartDialer Data Protocol
qsm-proxy QSM Proxy Service
qsm-gui QSM GUI Service
qsm-remote QSM RemoteExec
cisco-ipsla Cisco IP SLAs Control Protocol
vchat VChat Conference Service
tripwire TRIPWIRE
d-cinema-rrp D-Cinema Request-Response
fnet-remote-ui FlashNet Remote Admin
dossier Dossier Server
indigo-server Indigo Home Server
skkserv SKK (kanji input)
bn Backup To Neighbor
mc-client Millicent Client Proxy
accelenet AcceleNet Control
llsurfup-http LL Surfup HTTP
llsurfup-https LL Surfup HTTPS
catchpole Catchpole port
mysql-cluster MySQL Cluster Manager
alias Alias Service
hp-webadmin HP Web Admin
commlinx-avl CommLinx GPS / AVL System
gpfs General Parallel File System
caids-sensor caids sensors channel
openvpn OpenVPN
rsf- RSF- clustering
netmagic Network Magic
cajo-discovery cajo reference discovery
dmidi DMIDI
scol SCOL
nucleus-sand Nucleus Sand Database Server
ssslog-mgr Log Request Listener
metasage MetaSage
seagull-ais SEAGULL AIS
ipcd IPCD
eoss EOSS
groove-dpp Groove DPP
lupa
mpc-lifenet MPC LIFENET
fasttrack Kazaa File Sharing
scanstat- scanSTAT .
etebac ETEBAC
hpss-ndapi HPSS NonDCE Gateway
aeroflight-ads AeroFlight ADs
quicktime Apple Darwin and QuickTime Streaming Administration Servers
sweetware-apps SweetWARE Apps
nerv SNI R&D network
tgp TrulyGlobal Protocol
florence FLORENCE
zented ZENworks Tiered Electronic Distribution
univ-appserver Universal App Server
hotline
bvcontrol
nmsd NMSD
instantia Instantia
nessus Nessus or remote message server
serialgateway SerialGateway
isbconference
visionpyramid VisionPyramid
hermes
mesavistaco Mesa Vista Co
swldy-sias
servergraph
opennl-voice Open Network Library Voice
mpshrsv
qnts-orb QNTS-ORB
prat PRAT
propel-msgsys PROPEL-MSGSYS
ssserver Sun StorEdge Configuration Service
excw eXcW
cspmlockmgr CSPMLockMgr
ivmanager
miva-mqs mqs
dellwebadmin- Dell Web Admin
emperion Emperion
routematch RouteMatch Com
winjaserver WinJaServer
seagulllms SEAGULLLMS
dproxy
sdproxy
hp-sci
hhostcallsc H Host Call Secure
ci-software- CI-Software-
sftsrv
pe-mike
re-conn-proto RE-Conn-Proto
pacmand Pacmand
odsi Optical Domain Service Interconnect (ODSI)
jtag-server JTAG server
husky Husky
rxmon
pdps Photoscript Distributed Printing System
els E.L.S., Event Listener Service
exbit-escp Exbit-ESCP
vrts-ipcserver
krbgatekeeper
amx-icsp AMX-ICSP
pip PIP
novation Novation
delta-mcp
ultrex Ultrex
ewall EWALL
streetperfect StreetPerfect
intersan
writesrv
ischat Instant Service Chat
waste Nullsoft WASTE encrypted PP app
kjtsiteserver
naap NAAP
alta-ana-lm Alta Analytics License Manager
bbn-mmc multi media conferencing
bbn-mmx multi media conferencing
sbook Registration Network Protocol
editbench Registration Network Protocol
equationbuilder Digital Tool Works (MIT)
lotusnotes Lotus Note
relief Relief Consulting
rightbrain RightBrain Software
intuitive-edge Intuitive Edge
cuillamartin CuillaMartin Company
pegboard Electronic PegBoard
connlcli
ftsrv
mimer
linx
timeflies
ndm-requester Network DataMover Requester
ndm-server Network DataMover Server
adapt-sna Network Software Associates
netware-csp Novell NetWare Comm Service Platform
dcs
screencast
gv-us GlobalView to Unix Shell
us-gv Unix Shell to GlobalView
fc-cli Fujitsu Config Protocol
fc-ser Fujitsu Config Protocol
chromagrafx
molly EPI Software Systems
ibm-pps IBM Person to Person Software
dbreporter Integrity Solutions
apple-licman Apple Network License Manager
gwha GW Hannaway Network License Manager
os-licman Objective Solutions License Manager
atex_elmd Atex Publishing License Manager
checksum CheckSum License Manager
cadsi-lm Computer Aided Design Software Inc LM
objective-dbc Objective Solutions DataBase Cache
iclpv-dm Document Manager
iclpv-sc Storage Controller
iclpv-sas Storage Access Server
iclpv-nls Network Log Server
iclpv-nlc Network Log Client
iclpv-wsm PC Workstation Manager software
dvl-activemail DVL Active Mail
audio-activmail Audio Active Mail
video-activmail Video Active Mail
cadkey-licman Cadkey License Manager
cadkey-tablet Cadkey Tablet Daemon
goldleaf-licman Goldleaf License Manager
prm-sm-np Prospero Resource Manager
prm-nm-np Prospero Resource Manager
igi-lm Infinite Graphics License Manager
ibm-res IBM Remote Execution Starter
dbsa-lm DBSA License Manager
sophia-lm Sophia License Manager
here-lm Here License Manager
hiq HiQ License Manager
af AudioFile
innosys
innosys-acl
ibm-mqseries IBM MQSeries
novell-lu. Novell LU.
timbuktu-srv Timbuktu Service Port
autodesk-lm Autodesk License Manager
essbase Essbase Arbor Software
hybrid Hybrid Encryption Protocol
sas- Satellite-data Acquisition System
mloadd mloadd monitoring tool
nms Hypercom NMS
tpdu Hypercom TPDU
blueberry-lm Blueberry Software License Manager
ms-sql-s Microsoft-SQL-Server
ms-sql-m Microsoft-SQL-Monitor
ibm-cics
tabula
eicon-server Eicon Security Agent/Server
eicon-x Eicon X/SNA Gateway
eicon-slp Eicon Service Location Protocol
cadis- Cadis License Management
ies-lm Integrated Engineering Software
marcam-lm Marcam License Management
proxima-lm Proxima License Manager
ora-lm Optical Research Associates License Manager
oc-lm OpenConnect License Manager
peport
infoman IBM Information Management
genie-lm Genie License Manager
interhdl_elmd interHDL License Manager
esl-lm ESL License Manager
dca
valisys-lm Valisys License Manager
nrcabq-lm Nichols Research Corp.
proshare Proshare Notebook Application
ibm_wrless_lan IBM Wireless LAN
world-lm World License Manager
msl_lmd MSL License Manager
pipes Pipes Platform
oceansoft-lm Ocean Software License Manager
csdmbase
aal-lm Active Analysis Limited License Manager
uaiact Universal Analytics
csdm
openmath
telefinder
taligent-lm Taligent License Manager
clvm-cfg
dberegister
pacerforum
miteksys-lm Miteksys License Manager
afs AFS License Manager
confluent Confluent License Manager
nms_topo_serv
docstor
anynetgateway
stone-design-
netmap_lm
citrix-ica
cvc
liberty-lm
rfx-lm
watcom-sql
fhc Federico Heinz Consultora
vlsi-lm VLSI License Manager
shivadiscovery Shiva
imtc-mcs Databeam
funkproxy Funk Software, Inc.
symplex
diagmond
robcad-lm Robcad, Ltd. License Manager
mvx-lm Midland Valley Exploration Ltd. Lic. Man.
l-l
fujitsu-dtc Fujitsu Systems Business of America, Inc
ifor-protocol
vpad Virtual Places Audio data
vpac Virtual Places Audio control
vpvd Virtual Places Video data
vpvc Virtual Places Video control
oracle Oracle Database
rna-lm Ricardo North America License Manager
cichild-lm
ingreslock ingres
orasrv oracle or Prospero Directory Service non-priv
pdap-np Prospero Data Access Prot non-priv
tlisrv oracle
mciautoreg
support prmsd gnatsd # cygnus bug tracker
rap-listen
miroconnect
virtual-places Virtual Places Software
ampr-info
sdsc-lm
ds-lm
intellistor-lm Intellistor License Manager
rds
gridgen-elmd
simba-cs
aspeclmd
vistium-share
laplink
axon-lm Axon License Manager
shivahose Shiva Hose
m-image-lm Image Storage license manager M Company
hecmtl-db
pciarray
veritas_pbx VERITAS Private Branch Exchange
xingmpeg
webhost
asci-val ASCI-RemoteSHADOW
winddlb WinDD
corelvideo CORELVIDEO
ets
tn-tl-r
simbaexpress
tn-tl-fd
commonspace
sixtrak
picknfs
issd
slp Salutation Manager (Salutation Protocol)
stt
netbill-auth NetBill Authorization Server
faxportwinport
ontime
pammratc PAMMRATC
edb-server EDB Server
ismc ISP shared management control
invision InVision
sightline SightLine
rsvp-encap- RSVP-ENCAPSULATION-
pptconference
registrar resource monitoring service
conferencetalk ConferenceTalk
H./Q. Interactive media
caicci
hks-lm HKS License Manager
pptp Point-to-point tunnelling protocol
roketz
privatechat PrivateChat
sslp Simple Socket Library's PortMaster
lofr-lm Leap of Faith Research License Manager
wms Windows media service
landesk-rc LANDesk Remote Control
ea EA
ibm-dt-
netrisk NETRISK
ansys-lm ANSYS-License manager
msmq Microsoft Message Queuing
enl-name ENL-Name
musiconline Musiconline
fhsp Fujitsu Hot Standby Protocol
oracle-vp Oracle-VP
scientia-sdb Scientia-SDB
radius RADIUS
unisys-lm Unisys Natural Language License Manager
direcpc-video DirecPC Video
pcm PCM Agent (AutoSecure Policy Compliance Manager
ardusmul ARDUS Multicast
netopia-vo
privateark PrivateArk
lecroy-vicp LeCroy VICP
mysql-cm-agent MySQL Cluster Manager Agent
msnp MSN Messenger
paradym-
canocentral Cano Central
westell-stats westell stats
upnp Universal PnP
fjicl-tep-a Fujitsu ICL Terminal Emulator Program A
mtp Starlight Networks Multimedia Transport Protocol
rhp-iibp
elm-momentum Elm-Momentum
can-nds IBM Tivole Directory Service - NDS
xiip XIIP
videte-cipc Videte CIPC Port
rtmp Macromedia FlasComm Server
sentinelsrm SentinelSRM
abr-api ABR-API (diskbridge)
dxadmind CA Administration Daemon
netop-school NetOp School
intersys-cache Cache
dlsrap Data Link Switching Remote Access Protocol
drp DRP
tcoflashagent TCO Flash Agent
tcoregagent TCO Reg Agent
ppq ppQ
bigbrother Big Brother monitoring server - www.bb.com
licensedaemon cisco license management
tr-rsrb-p cisco RSRB Priority port
stun-p cisco STUN Priority port
snmp-tcp-port cisco SNMP TCP port
stun-port cisco serial tunnel port
perf-port cisco perf port
tr-rsrb-port cisco Remote SRB port
gdp-port cisco Gateway Discovery Protocol
x-svc-port cisco X. service (XOT)
tcp-id-port cisco identification port
cisco-sccp cisco SCCP (Skinny Client Control Protocol)
dc or nfr web queries
globe
finger GNU finger (cfingerd)
mailbox
deslogin encrypted symmetric telnet/login
invokator
dectalk
conf
news
search Or nfr
raid-cc raid
nfs networked file system
knetd
icg-swp ICG SWP Port
dnet-keyproxy A closed-source client for solving the RSA cryptographic challenge. This is the keyblock proxy port.
dlsrpn Data Link Switch Read Port Number
dlswpn Data Link Switch Write Port Number
advocentkvm Advocent KVM Server
event-port HTTP Event Port
ah-esp-encap AH and ESP Encapsulated in UDP packet
autodesk-nlm Autodesk NLM (FLEXlm)
kme-trap-port KME PRINTER TRAP PORT
infowave Infowave Mobility Server
radsec Secure Radius Service
gnunet GNUnet
eli ELI - Event Logging Integration
nbx-ser NBX SER
nbx-dir NBX DIR
h-annex-g H.. Annex G
amiganetfs Amiga Network Filesystem
rtcm-sc
zephyr-clt Zephyr serv-hm connection
zephyr-hm Zephyr hostmanager
eklogin Kerberos (v) encrypted rlogin
ekshell Kerberos (v) encrypted rshell
msmq-mgmt Microsoft Message Queuing (IANA calls this bintec-admin)
rkinit Kerberos (v) remote initialization
kx X over kerberos
kip IP over kerberos
kdm Key Distribution Manager
gsigatekeeper GSIGATEKEEPER
kauth Remote kauth
ccproxy-ftp CCProxy FTP Proxy
elatelink ELATELINK
pktcable-cops PktCable-COPS
avenue AVENUE
gris Grid Resource Information Server
tdmoip TDM OVER IP
lv-ffx Live Vault Fast Object Transfer
veritas-ucl Veritas Universal Communication Layer
dynamicd DYNAMICD
apc- APC
apc-agent American Power Conversion
eyetv EyeTV Server Port
vmrdp Microsoft RDP for virtual machines
ssmc Sepehr System Management Control
tivoconnect TiVoConnect Beacon
tvbus TvBus Messaging
mnp-exchange MNP data exchange
ici ICI
ats Advanced Training System Program
b-runtime b Runtime Protocol
EtherNet/IP- EtherNet/IP I/O
efi-mg Easy Flexible Internet/Multiplayer Games
ivs-video IVS Video default
ivsd IVS Daemon
remote-collab
dif-port Distributed Framework Port
dtv-chan-req DTV Channel Request
comotionmaster CoMotion Master Server
comotionback CoMotion Backup Server
apxapi- Audio Precision Apx API Port
mikey MIKEY
starschool starSchool
mmcals Secure Meeting Maker Scheduling
lnvpoller LNVPOLLER
netml NETML
eapsp EPSON Advanced Printer Share Protocol
mib-streaming Sonus Element Management Services
cvmmon CVMMON
compaqdiag Compaq remote diagnostic/management
binderysupport Bindery Support
attachmate-uts Attachmate UTS
pehelp
wanscaler WANScaler Communication Service
iapp IAPP (Inter Access Point Protocol)
d-nfsd
ansysli ANSYS Licensing Interconnect
idcp IDCP
tscchat TSCCHAT
ace-proxy ACE Proxy
wrs_registry WRS Registry
qip-login
worldwire Compaq WorldWire Port
lanmessenger LanMessenger
compaq-https Compaq HTTPS
ms-olap
ms-olap MS OLAP
com-net-mgmt COM Net Management
ms-olap SQL Server Downlevel OLAP Client Support
fmpro-fdal FileMaker, Inc. - Data Access Layer
cvspserver CVS network server
cas
fjitsuappmgr Fujitsu App Manager
venus
venus-se
codasrv
codasrv-se
optilogic OptiLogic
topx TOP/X
msp MSP
sybasedbsynch SybaseDBSynch
ratl RATL
altav-remmgt
lsi-raid-mgmt LSI RAID Management
c C
groove GROOVE
rtsserv Resource Tracking system server
rtsclient Resource Tracking system client
ppcontrol PowerPlay Control
windb WinDb
ms-v-worlds MS V-Worlds
ito-e-gui ITO-E GUI
ovtopmd OVTOPMD