-
Notifications
You must be signed in to change notification settings - Fork 1
/
velocloud_lookups.ps1
2982 lines (2979 loc) · 66.3 KB
/
velocloud_lookups.ps1
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
# this list of apps shamelessly plagiarised from https://sdn.macquarieview.com/vco/enums.js
# because the stingy buggers won't provide it via their API!! >:-O
$appsLookup = @{
0= "Unclassified"
3= "Base"
4= "Unknown"
5= "Malformed"
6= "Incomplete"
7= "802.1Q"
8= "AOL Instant Messenger"
9= "AMPQ"
10= "Apollo Domain=XEROX"
11= "ARP"
12= "AppleTalk"
13= "BGP"
15= "Bittorrent Protocol"
16= "WBXML"
17= "Compression Control Protocol"
18= "Cisco Discovery Protocol"
19= "CGMP"
20= "PPP CHAP"
21= "Compression"
22= "COTP"
23= "Cstrike"
24= "Common Unix Printer System"
25= "Dailymotion"
26= "DCE/RPC"
28= "DEC Protocol"
29= "DHCP"
30= "DICT"
31= "DirectConnect (NMDC)"
32= "DNS"
33= "DTP"
34= "EBay"
35= "Edonkey"
36= "EIGRP"
37= "EPM"
42= "Established TCP Connection"
43= "Ethernet"
44= "EtherIP"
45= "FTP"
46= "FTP Data"
48= "GARP"
49= "GIOP (CORBA)"
50= "Gizmo"
51= "Google Mail"
52= "Gnutella"
53= "GoBoogy Protocol"
54= "Google"
55= "Google Earth"
56= "Google Groups"
57= "Google Maps"
58= "GRE"
59= "GPRS Tunneling Protocol"
60= "H225"
61= "H245"
65= "HP Extended LLC"
66= "Cisco HSRP"
67= "HTTP"
68= "HTTPS"
69= "Citrix ICA"
70= "ICMP"
71= "ICMPv6"
73= "Identification Protocol"
74= "IGMP"
75= "IMAP Version 4"
76= "Secure IMAP"
77= "IMP"
81= "IP"
82= "IPv6"
83= "IPCP"
84= "Internet Printing Protocol"
85= "IPsec"
86= "IPv6 Control Protocol"
87= "Novell IPX"
88= "IPXRIP"
89= "IPXSAP"
90= "Internet Relay Chat"
91= "Secure IRC"
92= "ISAKMP"
93= "Cisco ISL"
94= "Jabber"
95= "HP Printer Job Language"
96= "Kazaa (FastTrack)"
97= "Kerberos"
98= "L2TP"
99= "Line Control Protocol"
100= "LDAP"
101= "Secure LDAP"
104= "LLC"
105= "Load Balancing"
106= "LOOP"
107= "Lotus Notes"
108= "Line Printer Daemon"
109= "Link Quality Report Protocol"
110= "MS Exchange Message API"
111= "McAfee Client Update"
112= "MCS"
113= "MGCP"
114= "MIPv6"
115= "Microsoft Multimedia Streaming"
116= "MMSE"
118= "Mount"
119= "MPLS"
120= "MSN Messenger"
121= "MSN Groups"
122= "MSN Search"
123= "MSN Video"
124= "Mute Protocol"
125= "Myspace"
126= "MySQL"
127= "NARP"
128= "NBNS"
129= "Netbios"
130= "Cisco NetFlow"
131= "NFS"
132= "Network Lock Manager"
133= "NLSP"
134= "NNTP"
135= "NNTPS"
136= "NSPI"
137= "NTP"
138= "OpenFT Protocol"
139= "OSI Network Layer"
140= "OSPF"
141= "Outlook Web Access"
142= "Paltalk"
143= "Paltalk Audio Chat"
144= "PPP PAP"
145= "PIM"
147= "POP3"
148= "Secure POP3"
149= "Port Mapper"
150= "PostgresSQL"
151= "PPP"
152= "PPPoE"
153= "PPP Tunneling Protocol"
154= "Q931"
156= "QQ"
157= "Quake"
158= "RADIUS"
159= "Windows Remote Desktop Protocol"
160= "Real Data Transport"
161= "Remote Frame Buffer (VNC)"
162= "RIP1"
163= "RIP2"
164= "RIPng"
165= "Rlogin"
166= "RLP"
167= "RPC"
168= "IBM RPL"
169= "RQuota"
170= "Rsh"
171= "RStat"
172= "RSVP"
173= "Rsync"
174= "Real Time Control Protocol"
175= "Real Time Protocol"
176= "Real Time Streaming Protocol"
177= "Rusers"
178= "SAP"
179= "Skinny Client Control Protocol"
180= "SCTP"
181= "ShoutCast"
182= "SIP"
183= "Skype"
184= "SoulSeek"
185= "SMB (Windows File Server)"
186= "SMTP"
187= "Secure SMTP"
188= "SNA"
189= "SNAP"
190= "SNMP"
191= "SOAP"
192= "SOCKSv4"
193= "SOCKSv5"
194= "Nortel/SynOptics Network Management Protocol"
195= "SquirrelMail"
196= "SRVLOC"
197= "SSDP"
198= "SSH"
199= "SSL"
200= "STP"
201= "STUN"
202= "Sync"
203= "TCP SYN Flood"
204= "Syslog"
205= "Other TCP"
208= "Tabular Data Stream"
209= "Telnet"
210= "Secure Telnet"
211= "TFTP"
212= "TIBCO Rendezvous"
213= "Transparent Network Service (Oracle)"
214= "TNVIP"
215= "UCP"
216= "Other UDP"
217= "Banyan VINES"
218= "Van Jacobson Compressed"
219= "Van Jacobson Uncompressed"
220= "VMWare"
221= "VRRP"
222= "Wikipedia"
223= "WinMX"
224= "WSP"
225= "WTLS"
226= "WTP"
227= "X-Windows"
228= "X.25"
229= "XMLRPC"
230= "XNS"
231= "XOT (X25 over TCP)"
232= "Xyplex"
233= "Yahoo Groups"
234= "Yahoo Search"
236= "Yahoo Mail v2.0"
237= "Yahoo Messenger"
238= "Yahoo Messenger Conference Service"
239= "YMSG Video"
240= "Youtube"
241= "Yellow Pages Passwd"
242= "Yellow Pages Server"
243= "Yellow Pages Update"
244= "Facebook"
245= "AIM Transfer Protocol"
246= "Maktoob Mail"
247= "Google Ads"
250= "Second Life"
251= "MPEG-TS"
252= "Paltalk File Transfer"
255= "Ymsg Transfer Protocol"
256= "Cross File Transfer"
258= "MSN Mobile"
259= "Yahoo Mail Classic"
260= "Jabber File Transfer"
261= "Microsoft Office Groove"
262= "Windows Live Hotmail"
263= "Gmail Basic"
264= "SNPP"
265= "Orange Webmail"
266= "2Shared"
267= "4Shared"
268= "Bebo"
269= "EBuddy"
270= "La Poste Webmail"
271= "IMesh"
272= "Ares Protocol"
273= "Google Chat"
274= "Xunlei/Thunder"
275= "AIM Express"
276= "Yahoo Web Messenger"
278= "Pando"
279= "Zattoo"
280= "Gmail Mobile Version"
281= "Secure AIM"
283= "Ask"
285= "Tagged"
286= "Yahoo Answers"
287= "Mapquest"
288= "Expedia"
289= "Southwest"
290= "Yahoo Maps"
291= "Travelocity"
292= "Yahoo Travel"
293= "Realtor"
295= "Yahoo Biz"
296= "OfficeDepot"
297= "WordPress"
298= "Windows Live"
299= "Yahoo Geocities"
300= "Flickr"
301= "Hi5"
302= "Skyrock"
303= "Trombi"
304= "Viadeo"
305= "LinkedIn"
306= "Apple"
307= "Pogo"
308= "Yahoo Games"
309= "RuneScape"
310= "Deezer"
311= "Zimbra"
312= "WebSphere MQ"
313= "RapidShare"
314= "MegaUpload"
315= "ZShare"
316= "FileFlyer"
317= "SendSpace"
318= "Rambler"
319= "PerfSpot"
320= "Friendster"
321= "Tchatche"
322= "Netlog"
323= "Skyblog"
324= "PCAnywhere"
325= "Zimbra Webmail Standard Version"
326= "IMP Mobile Version"
327= "Live Hotmail for Mobile"
328= "Yahoo Mobile Mail (deprecated)"
329= "DIMP"
330= "Online Certificate Status Protocol"
331= "PPLive"
332= "Yahoo Mobile Mail"
333= "Yahoo Homes"
334= "Mail.ru Webmail"
335= "Windows Live Groups"
336= "OpenVPN"
337= "RTMP"
338= "Gougou Search Engine"
339= "Steam"
340= "World of Warcraft"
342= "Xbox Live"
343= "Gadu Gadu"
344= "ISDN User Part"
345= "PWE"
346= "Zelune"
347= "Vtunnel"
348= "Proxono"
349= "ProxEasy"
350= "MegaProxy"
351= "KProxy"
352= "BypassThat"
353= "Avoidr"
354= "Surrogafier"
357= "Advogato"
358= "Amie Street"
359= "ANobii"
360= "ASmallWorld"
361= "Athlinks"
362= "Mubi (formerly The Auteurs)"
363= "Avatars United"
364= "BabyCenter"
365= "Badoo"
366= "Bigadda"
367= "BigTent"
368= "Biip"
369= "BlackPlanet"
370= "Blogster"
371= "Bolt"
372= "Books iRead"
373= "Buzznet"
374= "CafeMom"
376= "Care2"
377= "Cellufun"
378= "Classmates"
379= "Cloob"
380= "College Blender"
381= "CouchSurfing"
382= "DailyBooth"
384= "Decayenne"
385= "DeviantArt"
386= "DigitalVerse"
387= "Disaboom"
388= "Dol2day"
389= "DontStayIn"
390= "Draugiem"
391= "Elftown"
392= "Epernicus"
393= "Eons"
394= "ExperienceProject"
395= "Exploroo"
396= "Faceparty"
397= "Faces"
398= "FetLife"
399= "Fillos de Galicia"
400= "FilmAffinity"
401= "FledgeWing"
402= "Flixster"
403= "Fotolog"
404= "Foursquare"
405= "FriendsReunited"
406= "Fruhstuckstreff"
407= "Fubar"
408= "GaiaOnline"
409= "GamerDNA"
410= "Gather"
411= "Gays"
412= "Geni"
413= "Gogoyoko"
414= "Goodreads"
417= "Grono"
418= "Habbo"
419= "HospitalityClub"
420= "Hyves"
421= "Ibibo"
422= "Imeem"
423= "IndabaMusic"
424= "IRC Galleria"
425= "Italki"
426= "InterNations"
427= "Itsmy"
428= "Iwiw"
429= "Jaiku"
430= "JammerDirect"
431= "Kaioo"
433= "Kiwibox"
434= "Last.Fm"
435= "LibraryThing"
436= "LifeKnot"
437= "Listography"
438= "LiveJournal"
439= "Livemocha"
440= "LunarStorm"
441= "MEETin"
442= "Meetup"
443= "MeetTheBoss"
444= "Mixi"
446= "MocoSpace"
447= "Livestream"
448= "MouthShut"
449= "Multiply"
450= "Muxlim"
451= "MyAnimeList"
452= "MyChurch"
453= "MyHeritage"
454= "MyLife"
455= "My Opera"
456= "MyYearBook"
457= "Nasza Klasa"
458= "Nettby"
459= "Nexopia"
460= "NGO Post"
461= "Ning"
462= "Odnoklassniki"
463= "OneClimate"
464= "OneWorldTV"
465= "Open Diary"
466= "Orkut"
467= "OUTeverywhere"
468= "PartnerUp"
469= "PassportStamp"
470= "Pingsta"
471= "Plaxo"
472= "Playahead"
474= "Plurk"
475= "Present"
476= "Qapacity"
477= "Quarterlife"
478= "Qzone"
479= "Ravelry"
480= "Renren"
481= "ResearchGATE"
482= "ReverbNation"
483= "Ryze"
484= "ScienceStage"
485= "SciSpace"
486= "ShareTheMusic"
487= "Shelfari"
488= "SocialVibe"
489= "Sonico"
490= "Stickam"
491= "StudiVZ"
492= "StumbleUpon"
493= "TalentTrove"
494= "Talkbiznow"
495= "Taltopia"
496= "Taringa"
497= "TeachStreet"
498= "TravBuddy"
499= "TravellersPoint"
500= "Tribe"
501= "Tuenti"
502= "Tumblr"
503= "Twitter"
504= "Vkontakte"
505= "VampireFreaks"
506= "Vox"
507= "Wakoopa"
508= "Wasabi"
509= "Wayn"
510= "WebBiographies"
511= "WeOurFamily"
512= "WerKenntWen"
513= "Windows Live Spaces"
514= "WiserEarth"
515= "Xanga"
516= "Xing"
517= "Xt3"
518= "Yahoo 360Plus Vietnam"
519= "Yammer"
520= "Yelp"
521= "Youmeo"
522= "Zoo"
523= "Yandex"
524= "Facebook Mail"
525= "T.38"
526= "TeamSpeak2"
527= "Rambler Webmail"
528= "Yandex Webmail"
529= "PriceRunner"
530= "ITunes"
532= "Grooveshark"
533= "PPStream"
534= "Spotify"
535= "Mxit"
536= "Fring"
537= "ETSI LI"
540= "XTP"
544= "Orb"
545= "TeamViewer"
546= "TVAnts"
547= "Bing"
548= "Baidu"
549= "Adobe Update Manager"
550= "Adobe Flash-Plugin Update"
553= "OoVoo"
554= "Manolito"
555= "Teredo"
556= "Firefox Update"
557= "ICall"
558= "Youtube HD"
560= "Filetopia"
561= "Java Update"
562= "Windows Update"
563= "Apple Update"
564= "Archive"
565= "Inter Asterisk eXchange"
566= "AppleJuice"
567= "Chrome Update"
568= "FreeBSD Updates"
569= "NetBSD Updates"
570= "OpenBSD Updates"
571= "RedHat Update"
572= "SopCast"
573= "Voddler"
574= "Debian/Ubuntu Update"
575= "TVUPlayer"
576= "Nokia Ovi"
577= "VeohTV"
578= "Opera Update"
579= "Icecast"
580= "UTP (Micro Transport Protocol)"
583= "Mandriva Update"
584= "0zz0"
585= "QQLive"
586= "Badongo"
587= "Mashare"
589= "F-Secure Update"
590= "Half-Life and Half-Life 2"
591= "Nintendo Wi-Fi Connection"
592= "XDMCP"
593= "BitDefender Update"
594= "Google Picasa"
595= "ESET NOD32 Antivirus Updates"
596= "Symantec Norton AntiVirus Updates"
597= "Viber"
598= "Tango"
599= "Paltalk Video"
600= "WiiConnect24"
601= "Playstation Network"
602= "Diameter"
603= "Kaspersky Update"
604= "Avira Update"
605= "Delicious Update"
606= "3PC"
607= "Active Networks"
608= "ARGUS"
609= "ARIS"
610= "BBN RCC Monitoring"
611= "BNA"
612= "Backroom SATNET Monitoring"
613= "CBT"
614= "CFTP"
615= "Chaos"
616= "Compaq Peer Protocol"
617= "CPHB"
618= "CPNX"
619= "CRTP"
620= "CRUDP"
621= "DCCP"
622= "DCN Measurement Subsystems"
623= "DDP"
624= "DDX"
625= "DFS"
626= "DGP"
627= "EMCON"
629= "Fibre Channel"
630= "FIRE"
631= "GGP"
632= "GMTP"
633= "HMP"
634= "Any Host Protocol"
635= "IATP"
636= "IFMP"
637= "IL"
638= "I_NLSP"
639= "IPComp"
640= "IPCV"
641= "IPLT"
642= "IPPC"
643= "IPX in IP"
644= "IRTP"
645= "ISO IP"
646= "ISO TP4"
647= "Kryptolan"
648= "LARP"
649= "Leaf 1"
650= "Leaf 2"
651= "MERIT INP"
652= "MFE NSP"
653= "IP Mobility"
654= "Mobile Header"
655= "MPLS in IP"
656= "MTP"
657= "MUX"
658= "NETBLT"
659= "NSFNET IGP"
660= "NVP-II"
661= "PGM"
662= "PIPE"
663= "PNNI"
664= "Any Private Encryption Scheme"
665= "PRM"
666= "PTP"
667= "PUP"
668= "PVP"
669= "QNX"
671= "IP Reserved"
672= "MIT RVD"
673= "SATNET and Backroom EXPAK"
674= "SATNET Monitoring"
675= "SCPS"
676= "SECURE_VMTP"
677= "SKIP"
678= "SM"
679= "SMP"
680= "SNP"
681= "Sprite RPC"
682= "SPS"
683= "SRP"
684= "SSCOPMCE"
685= "Stream"
686= "SUN ND"
687= "TCF"
688= "TLSP"
689= "Trunk 1"
690= "Trunk 2"
691= "TTP"
692= "UDP Lite"
694= "UTI"
695= "VISA"
696= "VMTP"
697= "WIDEBAND EXPAK"
698= "WIDEBAND Monitoring"
699= "WSN"
700= "XNET"
701= "XNS IDP"
702= "DSR"
703= "HOPOPT"
704= "IDPR"
705= "IDPR CMTP"
706= "IDRP"
707= "ISIS"
708= "SDRP"
709= "LAN"
710= "EGP"
711= "Panda Update"
712= "Trendmicro Update"
713= "DirectDownload Links"
714= "AVG Update"
715= "IP in IP"
716= "IGP"
717= "IP RDP"
718= "TP++"
719= "ESP"
720= "AH"
721= "SwIPe"
722= "IPTM"
723= "AX.25 Frames"
724= "MICP"
725= "SCC SP"
726= "ENCAP"
727= "Any 0-Hop"
728= "RSVP E2E IGNORE"
729= "MANET"
730= "HIP"
731= "Shim6"
732= "WESP"
733= "ROHC"
734= "Netflix"
735= "GPRS Tunneling Protocol version 2"
736= "BBC iPlayer"
737= "Silverlight"
738= "SMPP"
739= "HotLine"
740= "Kugou"
741= "BSS Application Part"
742= "MSRPC"
743= "UUSee"
744= "Google Analytics"
745= "Google GStatic"
746= "Ytimg"
748= "Garena"
749= "QVOD Player"
750= "HTTP Tunnel"
751= "FTP over SSL"
752= "GIOPS"
753= "QQ Transfer Protocol"
754= "ZoneAlarm Updates"
755= "IBackup"
756= "Microsoft SharePoint"
757= "Microsoft SharePoint Administration Application"
758= "ADNStream"
759= "Adobe Meeting Remote Control"
760= "ADrive"
761= "AirAIM"
762= "All Slots Casino"
763= "Babelgum"
764= "BigUpload"
765= "Blokus"
766= "Bonpoo"
767= "Box.net"
769= "BrightTalk"
770= "Campfire"
771= "Channel4"
772= "Clip2Net"
773= "Concur"
774= "CoralCDN User"
775= "DepositFiles"
776= "Diino"
777= "DivShare"
778= "Docstoc"
779= "Dropbox"
780= "Dynamic Intranet"
781= "EarthCam"
782= "ERoom.net"
783= "ESnips"
784= "Evony"
785= "Eyejot"
786= "File Host"
787= "File Dropper"
788= "Filer.cx"
789= "Files.to"
790= "FilesTube"
791= "Flumotion"
792= "Fluxiom"
793= "FlyProxy"
794= "Fog Creek"
795= "Fotki"
796= "FreeeTV"
797= "FriendVox"
798= "Gigaup"
799= "Glide"
800= "Google Cache"
801= "Google Translate"
802= "Gyao"
803= "Hangame"
804= "Hands On Video Relay Services Inc"
805= "ICQ2Go"
806= "Ifile.it"
807= "IHeartRadio"
808= "ILoveIM"
809= "IMVU"
810= "Jango"
811= "Jira"
813= "Jubii"
814= "Justin.tv"
815= "Kaixin Chat"
816= "Kino"
817= "KoolIM"
819= "LeapFILE"
820= "Libero Video"
821= "Live Mesh"
822= "MediaFire"
823= "MeeVee"
824= "Megavideo"
825= "MessengerFX"
826= "Mibbit"
827= "Mobile Me"
828= "Livestream (formerly Mogulus)"
829= "Myspace Video"
830= "Napster"
831= "Netload"
832= "NicoNico Douga"
833= "Octopz"
834= "Ooyala"
835= "Pandora"
836= "Pandora TV"
837= "Party Poker"
838= "Photobucket"
839= "Phweet"
840= "Privax"
841= "Psiphon"
842= "QQMusic"
843= "RadiusIM"
844= "Salesforce"
845= "Seeqpod"
846= "Seesmic"
847= "ShowMyPc"
848= "Shutterfly"
849= "Sky Player"
850= "SkyDrive"
851= "Socialtv"
852= "Soribada"
853= "Stagevu"
854= "StreamAudio"
855= "SVT Play"
856= "Tagoo"
857= "Taku File Bin"
858= "TeacherTube"
859= "Techinline"
860= "TidalTV"
861= "TokBox"
862= "Tudou"
863= "Tv4Play"
864= "TwitPic"
865= "UseJump"
866= "UStream"
867= "Vakaka"
868= "Veetle"
869= "Vyew"
870= "Web Crawler"
871= "Wixi"
872= "SiriusXm Radio"
873= "Yahoo Douga"
874= "Yoono"
875= "Youku"
876= "YourFileHost"
877= "YouSeeMore"
878= "Hightail"
879= "Yugma"
880= "Yuuguu"
881= "Zoho CRM"
882= "Zoho DB and Reports"
883= "Zoho IM"
884= "Zoho Meeting"
885= "Zoho People"
886= "GoToDevice"
887= "Foxy"
888= "Microsoft Office Live Meeting"
889= "GoToMeeting - online meeting service (Citrix)"
890= "WebEx"
891= "WINS"
892= "Slingbox"
893= "Bloomberg"
894= "GoToMyPC"
895= "Tor"
896= "IBM Lotus Sametime"
897= "Altiris"
898= "Microsoft Communicator"
899= "Poker Stars"
901= "Db2 protocol"
902= "Clearcase"
903= "GNUnet Protocol"
904= "Radmin"
905= "RMI over IIOP"
906= "Gmail Drive"
911= "ActiveSync"
912= "Distributed Relational Database Architecture"
913= "IIOP"
914= "DIOP"
918= "Citrix JEDI"
919= "MSRP"
920= "Sqli"
921= "Whois"
922= "RSS"
924= "Microsoft SharePoint Blog Management Application"
925= "Microsoft SharePoint Calendar Management Application"
926= "Microsoft SharePoint Document Management Application"
927= "Socks2HTTP"
928= "Informix"
929= "Adobe Connect"
931= "NetMeeting ILS"
932= "BlackBerry"
933= "NetWare Core Protocol"
934= "Time"
935= "Echo Protocol"
936= "GroupWise"
937= "SP"
938= "PP"
939= "ACSE"
940= "ISO MMS"
941= "ICCP"
942= "Flash Media Playback"
943= "Google Generic"
944= "Siebel CRM"
945= "My Yahoo"
946= "Apple Airport"
947= "Sybase"
948= "01net"
949= "10086cn"
950= "114la"
951= "115com"
952= "118114cn"
953= "123People"
954= "ABCNews"
955= "About"
956= "AccuWeather"
957= "Acer"
958= "Acrobat"
960= "AddictingGames"
961= "AdultAdWorld"
962= "AdultFriendFinder"
963= "Agame"
964= "AiAiGame"
965= "Alexa"
966= "Aljazeera"
967= "Allocine"
968= "Amazon"
969= "AmericanExpress"
970= "Answers"
971= "ArmorGames"
972= "ATT"
973= "AuFeminin"
974= "Blogger"
975= "Blogspot"
976= "BluejayFilms"
977= "Businessweek"
979= "Cam4"
980= "Camzap"
981= "CapitalOne"
982= "CartoonNetwork"
983= "Cdiscount"
984= "China.com"
985= "China.com.cn"
986= "Clubic"
987= "CNET"
988= "CNN"
989= "CNTV"
990= "Comcast"
991= "Daily Mail"
992= "Daum.net"
993= "Davidov"
995= "Digg"
996= "DIRECTV"
997= "Drupal"
998= "Fox Movies"
999= "Fox News"
1000= "Fox Sports"
1001= "Groupon"
1002= "Hardsextube"
1003= "HGTV"
1004= "HowStuffWorks"
1005= "Ikea"
1006= "Intuit"
1008= "KarosGame"
1009= "Kaspersky"
1010= "KeezMovies"
1011= "La Redoute"
1013= "Le Bon Coin"
1014= "LeTV"
1015= "Livedoor"
1016= "LiveInternet"
1017= "Mashable"
1018= "Match.com"
1019= "Monster"
1020= "Mozilla"
1021= "MTV"
1022= "MultiUpload"
1023= "Musica"
1024= "MyVideo"
1025= "MyWebSearch"
1026= "NASA"
1027= "National-Lottery"
1028= "National Geographic"
1029= "Naver"
1030= "NBA"
1031= "NFL"
1033= "Nike"
1034= "NTV"
1035= "NyDailyNews"
1036= "NYTimes"
1037= "Onlinedown"
1039= "PlayStation"
1040= "PPS.tv"
1041= "PPTV"
1042= "PriceMinister"
1043= "Redtube"
1044= "Reuters"
1045= "Reverso"
1046= "RTL"
1047= "Ryanair"
1048= "SFR"
1049= "Sky"
1050= "Skycn"
1051= "SlideShare"
1052= "Spiegel"
1053= "SportsIllustrated"
1054= "Sprint"
1055= "StayFriends"
1056= "SurveyMonkey"
1057= "TF1"
1058= "TorrentDownloads"
1059= "Torrentz"
1060= "Tu TV"
1061= "Tube8"
1062= "Tv.com"
1063= "Univision"
1064= "Uploading"
1065= "USA Today"
1066= "Videobash"
1067= "VideoSurf"
1068= "Vietbao"
1069= "Vimeo"
1070= "Washington Post"
1071= "Wat TV"
1072= "Weather"
1073= "Windows Media"
1074= "Xbox"