summaryrefslogtreecommitdiffstats
path: root/data/CPE/aliases
blob: 53cc2c3395004859cbd6f2f9a152c8bbc43a9d96 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
#
# Collection of CPE aliases, ie different CPE entries refering to the
# same entity.  Each of these should probably be cleaned up in the CPE
# dictionary and each NVD entry.  Note that not all of these have been verified
# as duplicates, so one should be cautious before trusting the result too
# much.
#
cpe:/a:asterisk:asterisk
cpe:/a:asterisk:open_source
cpe:/a:asterisk:p_b_x
cpe:/a:digium:asterisk
cpe:/a:asterisk:opensource

cpe:/a:clamav:clamav
cpe:/a:cclamav:clamav
cpe:/a:clam_anti-virus:clamav
cpe:/a:clamavs:clamav

cpe:/a:linux:kernel
cpe:/a:kernel:linux_kernel
cpe:/o:kernel:linux
cpe:/o:linux:kernel
cpe:/o:linux:linux_kernel
cpe:/o:red_hat:linux_kernel

cpe:/a:linux:util-linux
cpe:/a:kernel:util-linux

cpe:/a:eric_raymond:fetchmail
cpe:/a:fetchmail:fetchmail

cpe:/a:x:x.org
cpe:/a:x.org:libx11
cpe:/a:x.org:x.org
cpe:/a:x.org:x11
cpe:/a:x.org:x11r6
cpe:/a:x.org:x11r7
cpe:/a:x.org:xorg-server
cpe:/a:x.org:xserver
cpe:/a:x:x.org-xserver
cpe:/a:x:x.org_x11
cpe:/a:x:x11
cpe:/a:xfree86_project:x11r6
cpe:/a:xfree86_project:xfree86
cpe:/a:xorg:x11

cpe:/a:anibal_monsalve_salaz:ssmtp
cpe:/a:ssmtp:ssmtp

cpe:/a:silc:silc_toolkit
cpe:/a:silcnet:silc_toolkit

cpe:/a:interchange_development_group:interchange
cpe:/a:icdevgroup:interchange

cpe:/a:w3:amaya
cpe:/a:w3c:amaya_web_browser
cpe:/a:w3c:amaya
cpe:/a:debian:amaya

cpe:/a:python:python
cpe:/a:python_software_foundation:python

cpe:/a:sixapart:movable_type
cpe:/a:sixapart:movabletype
cpe:/a:six_apart:movable_type
cpe:/a:movabletype:movable_type_open_source

cpe:/a:cups:cups
cpe:/a:apple:cups
cpe:/a:easy_software_products:cups

cpe:/a:xpdf:xpdf
cpe:/a:foolabs:xpdf

cpe:/a:xensource:xen
cpe:/a:citrix:xen
cpe:/a:xen:xen
cpe:/a:xen:qemu
cpe:/a:xensource_inc:xen
cpe:/o:xen:xen

cpe:/a:videolan:vlc
cpe:/a:videolan:vlc_media_player

cpe:/a:pedro_lineu_orso:sarg
cpe:/a:sarg:squid_analysis_report_generator

cpe:/a:arb_project:arb-common
cpe:/a:lehrstuhl_fur_mikrobiologie:arb

cpe:/a:ghostscript:ghostscript
cpe:/a:artifex:gpl_ghostscript
cpe:/a:aladdin_enterprises:ghostscript
cpe:/a:artifex:afpl_ghostscript

cpe:/a:gimp:gimp
cpe:/a:gnu:gimp
cpe:/a:the_gimp_team:gimp

cpe:/a:hp:linux_imaging_and_printing_project
cpe:/a:hp:hplip

cpe:/a:mit:kerberos
cpe:/a:mit:kerberos_5

cpe:/a:wireshark:wireshark
cpe:/a:ethereal_group:ethereal

cpe:/a:squid-cache:squid
cpe:/a:squid:squid
cpe:/a:national_science_foundation:squid_web_proxy_cache
cpe:/a:squid:squid_web_proxy_cache

cpe:/a:nongnu:cvs
cpe:/a:cvs:cvs

cpe:/a:perl:perl
cpe:/a:larry_wall:perl

cpe:/a:libpam-pgsql:libpam-pgsql
cpe:/a:leon_j_breedt:pam-pgsql

cpe:/a:phpbb:phpbb
cpe:/a:phpbb_group:phpbb

cpe:/a:eggheads:eggdrop
cpe:/a:eggheads:eggdrop_irc_bot

cpe:/a:exim:exim
cpe:/a:university_of_cambridge:exim

cpe:/a:libpng:libpng
cpe:/a:greg_roelofs:libpng
cpe:/a:redhat:libpng

cpe:/a:rsync:rsync
cpe:/a:andrew_tridgell:rsync
cpe:/a:samba:rsync

cpe:/a:sun:openoffice.org
cpe:/a:openoffice:openoffice.org
cpe:/a:openoffice:openoffice

cpe:/a:djangoproject:django
cpe:/a:django_project:django

cpe:/a:acme:thttpd
cpe:/a:acme_labs:thttpd

cpe:/a:libgd:gd_graphics_library
cpe:/a:gd_graphics_library:gdlib
cpe:/a:thomas_boutell:graphics_draw_library

cpe:/a:pam_ssh:pam_ssh
cpe:/a:andrew_j.korty:pam_ssh

cpe:/a:moinmo:moinmoin
cpe:/a:moinmoin:moinmoin

cpe:/a:sage.mozdev:sage
cpe:/a:sage-mozdev:sage
cpe:/a:sage:sage

cpe:/a:qemu:qemu
cpe:/a:fabrice_bellard:qemu
cpe:/a:mandriva:qemu

cpe:/a:mod_security:mod_security
cpe:/a:modsecurity:modsecurity

cpe:/a:s9y:serendipity
cpe:/a:serendipity:serendipity

cpe:/a:k5n:webcalendar
cpe:/a:webcalendar:webcalendar

cpe:/a:edgewall_software:trac
cpe:/a:edgewall:trac
cpe:/a:trac:trac

cpe:/a:ktorrent:ktorrent
cpe:/a:joris_guisson:ktorrent

cpe:/a:apache:mod_jk
cpe:/a:apache:tomcat_jk_web_server_connector

cpe:/a:christos_zoulas:file
cpe:/a:file:file
cpe:/a:gentoo:file
cpe:/a:file_project:file

cpe:/a:proftpd:proftpd
cpe:/a:proftpd_project:proftpd

cpe:/a:yahoo:yui
cpe:/a:yahoo:ui_library

cpe:/a:samba:samba
cpe:/a:samba:samba_server

cpe:/a:vim:vim
cpe:/a:vim_development_group:vim

cpe:/a:imager:imager
cpe:/a:tony_cook:imager

cpe:/a:openssh:openssh
cpe:/a:openssl_project:openssl
cpe:/a:openbsd:openssh

cpe:/a:apache:subversion
cpe:/a:subversion:subversion

cpe:/a:nokia:qt
cpe:/a:trolltech:qt
cpe:/a:digia:qt

cpe:/a:ruby-lang:ruby
cpe:/a:yukihiro_matsumoto:ruby

cpe:/a:netatalk:netatalk
cpe:/a:netatalk:open_source_apple_file_share_protocol_suite

cpe:/a:zoneminder:zoneminder
cpe:/a:triornis:zoneminder

cpe:/a:mozilla:firefox
cpe:/a:mozilla:mozilla

cpe:/a:gnome:evolution
cpe:/a:ximian:evolution

cpe:/a:gnome:gdm
cpe:/a:gnome:display_manager

cpe:/a:horde:horde
cpe:/a:horde:application_framework
cpe:/a:horde:horde_application_framework

cpe:/a:debian:turba
cpe:/a:horde:turba_contact_manager
cpe:/a:horde:turba_contact_manager_h3
cpe:/a:horde:turba_h3

cpe:/a:horde:nag_h3
cpe:/a:horde:nag_task_list_manager_h3

cpe:/a:john_horne:rkhunter
cpe:/a:gentoo:rootkit_hunter

cpe:/a:cacti:cacti
cpe:/a:the_cacti_group:cacti

cpe:/a:net-snmp:net-snmp
cpe:/o:net-snmp:net_snmp
cpe:/a:ucd-snmp:ucd-snmp

cpe:/a:ntp:ntp
cpe:/a:dave_mills:ntpd

cpe:/a:bluez:bluez_utils
cpe:/o:bluez_project:bluez

cpe:/a:menalto:gallery
cpe:/a:gallery_project:gallery
cpe:/a:bharat_mediratta:gallery
cpe:/a:gallery:gallery

cpe:/a:lynx:lynx
cpe:/a:university_of_kansas:lynx

cpe:/a:university_of_washington:imap
cpe:/a:university_of_washington:uw-imap

cpe:/a:gnu:wget
cpe:/a:wget:wget
cpe:/a:gnu_wget_project:gnu_wget

cpe:/a:kernel:linux-pam
cpe:/a:pam:pam
cpe:/o:andrew_morgan:linux_pam

cpe:/a:snort:snort
cpe:/a:sourcefire:snort

cpe:/a:ntop:ntop
cpe:/a:luca_deri:ntop

cpe:/a:adobe:flash_player
cpe:/a:macromedia:flash_player
cpe:/a:macromedia:shockwave

cpe:/a:curl:curl
cpe:/a:daniel_stenberg:curl
cpe:/a:haxx:curl
cpe:/a:curl:libcurl
cpe:/a:haxx:libcurl
cpe:/a:libcurl:libcurl

cpe:/a:mortbay:jetty
cpe:/a:mortbay_jetty:jetty
cpe:/a:jetty:jetty
cpe:/a:jetty:jetty_http_server
cpe:/a:eclipse:jetty

cpe:/a:ez:ez_publish
cpe:/a:ez_publish:ez_publish
cpe:/a:ez_systems:ez_publish

cpe:/a:gnupg:gnupg
cpe:/a:gnu:privacy_guard

cpe:/a:zoph:zoph
cpe:/a:jason_geiger:zoph

cpe:/a:dovecot:dovecot
cpe:/a:timo_sirainen:dovecot

cpe:/a:debian:shadow
cpe:/a:debian:shadow-utils

cpe:/a:thekelleys:dnsmasq
cpe:/a:dnsmasq:dnsmasq

cpe:/a:deon_george:phpldapadmin
cpe:/a:phpldapadmin:phpldapadmin

cpe:/a:bestpractical:rt
cpe:/a:best_practical_solutions:request_tracker
cpe:/a:bestpractical:request_tracker

cpe:/a:cmu:cyrus_imap_server
cpe:/a:cyrus:imapd
cpe:/a:carnegie_mellon_university:cyrus_imap_server
cpe:/a:cyrus:imap

cpe:/a:tikiwiki:tikiwiki_cms_groupware
cpe:/a:tikiwiki_project:tikiwiki
cpe:/a:tikiwiki:tikiwiki

cpe:/a:dokuwiki:dokuwiki
cpe:/a:andreas_gohr:dokuwiki

cpe:/a:isc:dhcp
cpe:/a:isc:dhcpd

cpe:/a:cakefoundation:cakephp
cpe:/a:cake_software_foundation:cakephp

cpe:/a:curtis_galloway:libexif
cpe:/a:libexif:libexif

cpe:/a:carsten_haitzler:imlib2
cpe:/a:enlightenment:imlib2

cpe:/a:imlib:imlib
cpe:/a:enlightenment:imlib

cpe:/a:mono_project:mono
cpe:/a:mono:mono

cpe:/a:georges_khaznadar:wims
cpe:/a:xiao_gang:www_interactive_mathematics_server

cpe:/a:freedesktop:dbus
cpe:/a:d-bus:d-bus
cpe:/a:d-bus_project:d-bus
cpe:/o:d-bus:inter-process_communication_system

cpe:/a:littlecms:lcms
cpe:/a:little_cms:little_cms

cpe:/a:invisible-island:xterm
cpe:/a:xterm:xterm
cpe:/a:x.org:xterm

cpe:/a:kvirc:kvirc
cpe:/a:kvirc:irc_client

cpe:/a:tigris:websvn
cpe:/a:websvn:websvn

cpe:/a:xiph.org:libvorbis
cpe:/a:libvorbis:libvorbis
cpe:/a:xiph:libvorbis

cpe:/a:ircu:ircu
cpe:/a:universal_ircd:ircu

cpe:/a:wordpress:wordpress
cpe:/a:wordpress:wordpressclassic

cpe:/a:umn:mapserver
cpe:/a:university_of_minnesota:mapserver

cpe:/a:pps.jussieu:polipo
cpe:/a:polipo:polipo

cpe:/a:mega-nerd:libsndfile
cpe:/a:gentoo:libsndfile

cpe:/a:ruby_on_rails:ruby_on_rails
cpe:/a:david_hansson:ruby_on_rails

cpe:/a:fireflymediaserver:fireflymediaserver
cpe:/a:firefly:media_server

cpe:/a:tug:tex_live
cpe:/a:tug:texlive_2007

cpe:/a:mysql:mysql
cpe:/a:mysql:mysql_server
cpe:/a:mysql:mysql_community_server
cpe:/a:oracle:mysql

cpe:/a:balabit:syslog-ng
cpe:/a:balabit:syslog-ng_open_source_edition
cpe:/o:balabit:syslog-ng

cpe:/a:raphael_assenat:libmikmod
cpe:/a:igno_saitz:libmikmod

cpe:/a:ja-sig:phpcas_client_library
cpe:/a:jasig:phpcas
cpe:/a:joachim_fritschi:phpcas

cpe:/a:salvo_tomaselli:weborf_http_server
cpe:/a:salvo_g._tomaselli:weborf

cpe:/a:redhat:jboss_enterprise_application_platform
cpe:/a:redhat:jboss_enterprise_soa_platform
cpe:/a:jboss:enterprise_application_platform

cpe:/a:iscsitarget:iscsitarget
cpe:/a:arne_redlich_%26_ross_walker:iscsitarget

cpe:/a:springsource:spring_framework
cpe:/a:apache:struts
cpe:/a:pivotal_software:spring_framework
cpe:/a:pivotal:spring_framework

cpe:/a:bogofilter:bogofilter
cpe:/o:bogofilter:email_filter

cpe:/a:mantisbt:mantisbt
cpe:/a:mantis:mantis
cpe:/a:matisbt:mantis

cpe:/a:firebird:firebird
cpe:/a:firebirdsql:firebird

cpe:/a:redhat:vsftpd
cpe:/a:beasts:vsftpd

cpe:/a:jose_luis_tallon:bacula_common
cpe:/o:bacula:bacula

cpe:/a:fuse:fuse
cpe:/a:miklos_szeredi:fuse
cpe:/a:debian:fuse

cpe:/a:exiv2:exiv2
cpe:/a:andreas_huggel:exiv2

cpe:/a:alvaro:alvaros_messenger
cpe:/a:amsn:amsn

cpe:/a:will_estes:flex
cpe:/a:will_estes_and_john_millaway:flex

cpe:/a:elog:elog
cpe:/a:stefan_ritt:elog_web_logbook
cpe:/a:elog:elogd

cpe:/a:carnegie_mellon_university:cyrus-sasl
cpe:/a:cyrus:sasl

cpe:/a:cherokee-project:cherokee
cpe:/a:cherokee:cherokee_httpd
cpe:/a:cherokee:cherokee

cpe:/a:gnu:gzip
cpe:/a:gzip:gzip

cpe:/a:rpm:rpm
cpe:/a:rpm:package_manager

cpe:/a:twibright:links
cpe:/a:links:links

cpe:/a:apache:http_server
cpe:/a:debian:apache
cpe:/a:apache_software_foundation:apache_http_server

cpe:/a:linux:util-linux
cpe:/a:andries_brouwer:util-linux

cpe:/a:gnu:libtool
cpe:/a:gnu:libtool-ltdl

cpe:/a:gnu:gnash
cpe:/a:gnu:flash_player

cpe:/a:redhat:cluster_suite
cpe:/a:redhat:cman
cpe:/a:gentoo:cman

cpe:/a:drupal:drupal
cpe:/a:drupal:project

cpe:/a:roundcube:roundcube_webmail
cpe:/a:roundcube_webmail_project:roundcube_webmail
cpe:/a:roundcube:webmail

cpe:/a:openssl:openssl
cpe:/a:openssl_project:openssl

cpe:/a:graphicsmagick:graphicsmagick
cpe:/a:imagemagick:graphicsmagick
cpe:/a:imagemagick:imagemagick

cpe:/a:argyllcms:argyllcms
cpe:/a:argyllcms:cms

cpe:/a:linux-ha:heartbeat
cpe:/a:high_availability_linux_project:heartbeat

cpe:/a:heimdal:heimdal
cpe:/a:kth:heimdal

cpe:/a:tetex:tetex
cpe:/a:tug:tetex
cpe:/a:debian:tetex-bin

cpe:/a:redhat:lha
cpe:/a:tsugio_okamoto:lha

cpe:/a:apache:tomcat
cpe:/a:apache_software_foundation:tomcat
cpe:/a:apache_tomcat:apache_tomcat

cpe:/a:chetcpasswd:chetcpasswd
cpe:/a:pedro_lineu_orso:chetcpasswd

cpe:/a:sleuth_kit:the_sleuth_kith
cpe:/a:the_sleuth_kit:the_sleuth_kit
cpe:/a:brian_carrier:the_slueth_kit

cpe:/a:konversation:konversation
cpe:/a:berlios:konversation

cpe:/a:sun:virtualbox
cpe:/a:virtualox:virtualox
cpe:/a:sun:xvm_virtualbox
cpe:/a:oracle:vm_virtualbox

cpe:/a:mailscanner:mailscanner
cpe:/a:debian:mailscanner

cpe:/a:pam_mount:pam_mount
cpe:/a:bkleineidam:libpam_mount

cpe:/a:cosmin_truta:optipng
cpe:/a:optipng:optipng

cpe:/a:gnu:enscript
cpe:/a:gnu:escript

cpe:/a:tvdr:vdr
cpe:/a:cadsoft:vdr

cpe:/a:scilab:scilab
cpe:/a:scilab:scilab-bin

cpe:/a:fwbuilder:firewall_builder
cpe:/a:firewallbuilder:fwbuilder

cpe:/a:rob_flynn:gaim
cpe:/a:pidgin:pidgin

cpe:/a:xine:xine-lib
cpe:/a:xinehq:xine_lib

cpe:/a:cuteflow-bin:cuteflow_bin
cpe:/a:emedia_office_gmbh:cuteflow

cpe:/a:lighttpd:lighttpd
cpe:/a:light_httpd:light_httpd

cpe:/a:xwine:xwine
cpe:/a:freshmeat:xwine

cpe:/a:gnu:mailman
cpe:/a:mailman:mailman

cpe:/a:freedesktop:xdg-utils
cpe:/a:gentoo:xdg-utils

cpe:/a:nlnet_labs:net_dns
cpe:/a:net_dns:net_dns

cpe:/a:slashcode.com:slash
cpe:/a:open_source_development_network:slashcode

cpe:/a:webmin:webmin
cpe:/a:gentoo:webmin

cpe:/a:spamassassin:spamassassin
cpe:/a:apache:spamassassin

cpe:/a:tcpdump:tcpdump
cpe:/a:lbl:tcpdump

cpe:/a:horde:mnemo_h3
cpe:/a:horde:mnemo

cpe:/a:hylafax:hylafax
cpe:/a:ifax_solutions:hylafax

cpe:/a:gnu:gv
cpe:/a:gv:gv

cpe:/a:matt_kimball_and_roger_wolff:mtr
cpe:/a:mtr:mtr

cpe:/a:jun_furuse:camlimages
cpe:/a:gallium.inria:camimages

cpe:/a:joe_shaw:libsoup
cpe:/a:libsoup:libsoup
cpe:/a:gnome:libsoup

cpe:/a:sql-ledger:sql-ledger
cpe:/a:dws_systems_inc.:sql-ledger

cpe:/a:hiki:hiki
cpe:/a:hiki_wiki:hiki_wiki

cpe:/a:centericq:centericq
cpe:/a:konst:centericq

cpe:/a:pam-mysql:pam-mysql
cpe:/a:pam_mysql:pam_mysql

cpe:/a:base:basic_analysis_and_security_engine
cpe:/a:kevin_johnson:basic_analysis_and_security_engine
cpe:/a:basic_analysis_and_security_engine:base
cpe:/a:secureideas:basic_analysis_and_security_engine
cpe:/a:secureideas:base

cpe:/a:webdav:neon
cpe:/a:neon:neon
cpe:/a:neon:neon_client_library

cpe:/a:opera:opera_browser
cpe:/a:opera:opera
cpe:/a:opera_software:opera_web_browser

cpe:/a:realvnc:realvnc
cpe:/a:vnc:realvnc

cpe:/a:nvidia:binary_graphics_driver
cpe:/a:nvidia:video_driver
cpe:/a:nvidia:gpu_driver

cpe:/a:usermin:usermin
cpe:/a:webmin:usermin

cpe:/a:john_lim:adodb
cpe:/a:john_lim:adodb_date_library

cpe:/a:double_precision_incorporated:courier_mta
cpe:/a:double_precision_incorporated:courier_mail_server

cpe:/a:ibm:tivoli_storage_manager
cpe:/a:ibm:tivoli_storage_manager_client

cpe:/a:id_software:quake_ii_server
cpe:/a:id_software:quake_ii_server_linux

cpe:/a:chmlib:chmlib
cpe:/a:jed_wing:chm_lib

cpe:/a:marc_lehmann:rxvt-unicode
cpe:/a:rxvt-unicode:rxvt-unicode

cpe:/a:andy_lo-a-foe:alsaplayer
cpe:/a:alsaplayer:alsaplayer

cpe:/a:ekiga:ekiga
cpe:/a:gnome:ekiga

cpe:/a:jam_warehouse:knowledgetree_open_source
cpe:/a:knowledgetree:knowledgetree
cpe:/a:knowledgetree:open_source
cpe:/a:knowledgetree_document_management:knowledgetree_document_management

cpe:/a:qualcomm:qpopper
cpe:/a:debian:qpopper

cpe:/a:gnu:lsh
cpe:/a:lysator:lsh

cpe:/a:nginx:nginx
cpe:/a:igor_sysoev:nginx

cpe:/a:overkill:overkill
cpe:/a:0verkill:0verkill

cpe:/a:university_of_minnesota:gopher
cpe:/a:university_of_minnesota:gopherd

cpe:/a:mplayer:mplayer
cpe:/a:mplayer:unix_mplayer

cpe:/a:dest-unreach:socat
cpe:/a:socat:socat

cpe:/a:reportbug-ng:reportbug
cpe:/a:debian:reportbug

cpe:/a:yaws:yaws
cpe:/a:yaws:webserver

cpe:/a:ben_webb:dopewars
cpe:/a:dopewars:dopewars

cpe:/a:linley_henzell:crawl
cpe:/a:linley_henzell:dungeon_crawl

cpe:/a:nufw:nufw
cpe:/a:nufw:nufw_firewall

cpe:/a:rob_landley:busybox
cpe:/a:busybox:busybox

cpe:/a:joey_hess:bsdgames
cpe:/a:bsd-games:tetris-bsd

cpe:/a:fbi:fbi
cpe:/a:fbida:fbida

cpe:/a:francis_james_franklin:libwmf
cpe:/a:wvware:libwmf

cpe:/a:beagle:beagle
cpe:/a:beagle-project:beagle

cpe:/a:webkit:webkit
cpe:/a:apple:webkit

cpe:/a:oracle:jdk
cpe:/a:oracle:openjdk
cpe:/a:sun:java_virtual_machine
cpe:/a:sun:jdk
cpe:/a:sun:openjdk

cpe:/a:oracle:jre
cpe:/a:sun:jre

cpe:/a:x.org:libxfont
cpe:/a:x:libxfont

cpe:/a:quagga:quagga_routing_software_suite
cpe:/a:quagga:quagga

cpe:/a:free_software_foundation_inc.:libtasn1
cpe:/a:gnu:libtasn1

cpe:/a:bip.t1r:bip
cpe:/a:duckcorp:bip

cpe:/a:freedesktop:policykit
cpe:/a:redhat:policykit

cpe:/a:pureftpd:pureftpd
cpe:/a:pureftpd:pure-ftpd

cpe:/a:gplhost:dtc-common
cpe:/a:gplhost:domain_technologie_control

cpe:/a:tim_hockin:acpid
cpe:/a:tedfelix:acpid

cpe:/a:oprofile:oprofile
cpe:/a:maynard_johnson:oprofile

cpe:/a:nlnet_labs:unbound
cpe:/a:nlnetlabs:unbound
cpe:/a:unbound:unbound

cpe:/a:libvirt:libvirt
cpe:/a:redhat:libvirt

cpe:/a:cluster_resources:torque_resource_manager
cpe:/a:clusterresources:torque_resource_manager

cpe:/a:puppet:puppet
cpe:/a:puppetlabs:puppet

cpe:/a:quassel:quassel_core
cpe:/a:quassel-irc:quassel

cpe:/a:e2fsprogs_project:e2fsprogs
cpe:/a:ext2_filesystems_utilities:e2fsprogs

cpe:/a:marco_d%27itri:ppp
cpe:/a:samba:ppp

cpe:/a:gnome:networkmanager
cpe:/a:networkmanager_project:networkmanager

cpe:/a:dracut_project:dracut
cpe:/a:fedoraproject:dracut

cpe:/a:network_block_device:nbd
cpe:/a:wouter_verhelst:nbd

cpe:/a:internet2:xmltooling
cpe:/a:xmltooling_project:xmltooling

cpe:/a:w3m:w3m
cpe:/a:w3m_project:w3m

cpe:/a:libgd:gd_graphics_library
cpe:/a:libgd:libgd

cpe:/a:freebsd:libarchive
cpe:/a:libarchive:libarchive

cpe:/a:bluez_project:bluez
cpe:/a:bluez:bluez

cpe:/a:openstack:nova
cpe:/a:openstack:compute_%28nova%29
cpe:/a:openstack:compute

cpe:/a:will_estes:flex
cpe:/a:flex_project:flex

cpe:/a:gnome:gdkpixbuf
cpe:/a:gnome:gdk-pixbuf

cpe:/a:ruby_on_rails:ruby_on_rails
cpe:/a:rubyonrails:ruby_on_rails

cpe:/a:powerdns:powerdns
cpe:/a:powerdns:authoritative_server
cpe:/a:powerdns:authoritative

cpe:/a:powerdns:recursor
cpe:/a:powerdns:powerdns_recursor).

cpe:/a:ecryptfs:ecryptfs_utils
cpe:/a:ecryptfs:ecryptfs-utils

cpe:/a:openstack:glance
cpe:/a:openstack:image_registry_and_delivery_service_%28glance%29

cpe:/a:james_clark:expat
cpe:/a:libexpat:expat

cpe:/a:cloudbees:jenkins
cpe:/a:jenkins:jenkins

cpe:/a:e-merge:unace
cpe:/a:winace:unace

cpe:/a:libgsf:libgsf
cpe:/a:gnome:libgsf

cpe:/a:oracle:sun_glassfish_enterprise_server
cpe:/a:oracle:glassfish_server

cpe:/a:libksba_library:libksba_library
cpe:/a:libksba_project:libskba

cpe:/a:symphony-cms:symphony_cms
cpe:/a:sensiolabs:symfony

cpe:/a:john_lim:adodb
cpe:/a:adodb_project:adodb

cpe:/a:gnome:eog
cpe:/a:gnome:eye_of_gnome

cpe:/a:rasterbar_software:libtorrent
cpe:/a:arvidn:libtorrent

cpe:/a:libtiff:libtiff
cpe:/a:libtiff_project:libtiff

cpe:/a:cosmin_truta:optipng
cpe:/a:optipng_project:optipng

cpe:/a:libungif:libungif
cpe:/a:giflib_project:giflib

cpe:/a:matt_johnston:dropbear_ssh_server
cpe:/a:dropbear_ssh_project:dropbear_ssh

cpe:/a:putty:putty
cpe:/a:simon_tatham:putty

cpe:/a:7-zip:7-zip
cpe:/a:7-zip:7zip
cpe:/a:7-zip:p7zip

cpe:/a:git:git
cpe:/a:git-scm:git
cpe:/a:git_project:git

cpe:/a:mozilla:nss
cpe:/a:mozilla:network_security_services

cpe:/a:pcre:pcre
cpe:/a:pcre:perl_compatible_regular_expression_library

cpe:/a:tryton:trytond
cpe:/a:tryton:tryton

cpe:/a:poppler:poppler
cpe:/a:freedesktop:poppler

cpe:/a:varnish.projects.linpro:varnish
cpe:/a:varnish-cache:varnish

cpe:/a:claws_mail:claws_mail_tools
cpe:/a:claws-mail:claws-mail

cpe:/a:phpmailer:phpmailer
cpe:/a:phpmailer_project:phpmailer

cpe:/a:cakefoundation:cakephp
cpe:/a:cakephp:cakephp

cpe:/a:gnu:grub_2
cpe:/a:gnu:grub2

cpe:/a:hostapd:hostapd
cpe:/a:w1.fi:hostapd

cpe:/a:xscreensaver:xscreensaver
cpe:/a:xscreensaver_project:xscreensaver

cpe:/a:bouncycastle:bouncy-castle-crypto-package
cpe:/a:bouncycastle:bouncy_castle_crypto_package

cpe:/a:gnome:gnome_display_manager
cpe:/a:gnome:gdm

cpe:/a:gnu:screen
cpe:/a:gnu:gnu_screen

cpe:/a:niels_provos:libevent
cpe:/a:libevent_project:libevent

cpe:/a:todd_miller:sudo
cpe:/a:sudo_project:sudo

cpe:/a:freedesktop:policykit
cpe:/a:polkit_project:polkit

cpe:/a:inria:ocaml
cpe:/a:ocaml:ocaml

cpe:/a:linuxprinting.org:foomatic-filters
cpe:/a:linuxfoundation:foomatic-filters

cpe:/a:latex2rtf:latex2rtf
cpe:/a:latex2rtf_project:latex2rtf

cpe:/a:wpa_supplicant:wpa_supplicant
cpe:/a:w1.fi:wpa_supplicant

cpe:/a:horde:horde_groupware
cpe:/a:horde:groupware

cpe:/a:puppetlabs:mcollective
cpe:/a:puppetlabs:marionette-collective

cpe:/a:miniupnp_project:miniupnp
cpe:/a:miniupnp_project:miniupnpd

cpe:/a:email-address_project:email-address
cpe:/a:email%3a%3aaddress_module_project:email%3a%3aaddress

cpe:/a:phusionpassenger:phusion_passenger
cpe:/a:phusion:passenger

cpe:/a:python_imaging_project:python_imaging
cpe:/a:pythonware:python_imaging_library

cpe:/a:gtk:gtk%2B
cpe:/a:gtk:gtk%2b

cpe:/a:phpmyid:phpmyid
cpe:/a:siege:phpmyid

cpe:/a:gnustep:gnustep_base
cpe:/a:gnustep:base

cpe:/a:michael_dehaan:cobbler
cpe:/a:cobblerd:cobbler

cpe:/a:ipython:notebook
cpe:/a:ipython:ipython_notebook

cpe:/a:light_speed_gaming:mumble
cpe:/a:mumble:mumble

cpe:/a:debian:dpkg
cpe:/a:debian:dpkg-dev

cpe:/a:wojtek_kaniewsk:libgadu
cpe:/a:libgadu:libgadu

cpe:/a:fckeditor:fckeditor
cpe:/a:ckeditor:fckeditor

cpe:/a:ocsinventory-ng:ocs_inventory_ng
cpe:/a:ocsinventory-ng:ocsinventory_ng

cpe:/a:tor:tor
cpe:/a:torproject:tor

cpe:/a:nodejs:node.js
cpe:/a:nodejs:nodejs

cpe:/a:roman_marxer:ganeti
cpe:/a:ganeti_project:ganeti

cpe:/a:roundup:roundup
cpe:/a:roundup-tracker:roundup

cpe:/a:bash:bash
cpe:/a:gnu:bash

cpe:/a:ettercap:ettercap
cpe:/a:ettercap_project:ettercap

cpe:/a:antiword:antiword
cpe:/a:antiword_project:antiword

cpe:/a:zenoss:zenoss
cpe:/a:zenoss:zenoss_core

cpe:/a:redhat:tcpdump
cpe:/a:tcpdump:tcpdump

cpe:/a:ettercap:ettercap
cpe:/a:ettercap_project:ettercap

cpe:/a:apport:apport
cpe:/a:apport_project:apport

cpe:/a:rubyforge:rubygems
cpe:/a:rubygems:rubygems

cpe:/a:pacemaker%2fcorosync_configuration_system_project:pacemaker%2fcorosync_configuration_system
cpe:/a:fedora:pacemaker_configuration_system

cpe:/a:fuse:fuse
cpe:/a:fuse_project:fuse

cpe:/a:internet2:shibboleth-sp
cpe:/a:shibboleth:service_provider

cpe:/a:cryptopp:crypto%2b%2b
cpe:/a:cryptopp:crypto%2b%2b_library

cpe:/a:apache:xerces-c
cpe:/a:apache:xerces-c%2b%2b
cpe:/a:apache:xerces-c%5c%2b%5c%2b

cpe:/a:mozilla:firefox
cpe:/a:mozilla:firefox_esr

cpe:/a:redhat:spice-gtk
cpe:/a:freedesktop:spice-gtk

cpe:/a:vmware:vmware_player
cpe:/a:vmware:vmware_player_2

cpe:/a:tinc:tinc
cpe:/a:tinc-vpn:tinc

cpe:/a:joomla:joomla%21
cpe:/a:joomla:joomla

cpe:/a:mambo:mambo
cpe:/a:mambo-foundation:mambo

cpe:/a:washington_university:wu-ftpd
cpe:/a:university_of_washington:wu-ftpd

cpe:/a:eterm:eterm
cpe:/a:michael_jennings:eterm

cpe:/a:jan_kybic:bitmap_viewer
cpe:/a:bmv:bmv

cpe:/a:tutos:tutos
cpe:/a:gero_kohnert:tutos

cpe:/a:pan:pan
cpe:/a:charles_kerr:pan

cpe:/a:jef_moine:abcm2ps
cpe:/a:moinejf:abcm2ps

cpe:/a:dillo:dillo
cpe:/a:dillo:dillo_web_browser

cpe:/a:tvdr:vdr
cpe:/a:vdr:vdr

cpe:/a:tikiwiki:tikiwiki_cms_groupware
cpe:/a:tiki:tikiwiki_cms%2fgroupware

cpe:/a:andy_armstrong:cgi-simple
cpe:/a:andy_armstrong:cgi.pm

cpe:/a:dompdf:dompdf
cpe:/a:digitaljunkies:dompdf

cpe:/a:gnu:patch
cpe:/a:gnu:gnu_patch

cpe:/a:gnome:evince
cpe:/a:redhat:evince

cpe:/a:nfs:nfs-utils
cpe:/a:linux-nfs:nfs-utils

cpe:/a:csound:csound
cpe:/a:csounds:csound

cpe:/a:wicd:wicd
cpe:/a:david_paleino:wicd

cpe:/a:bitcoin:bitcoind
cpe:/a:bitcoin:bitcoin-qt

cpe:/a:rubyforge:rack
cpe:/a:rack_project:rack

cpe:/a:k5n:webcalendar
cpe:/a:craig_knudsen:webcalendar

cpe:/a:nagios:remote_plugin_executor
cpe:/a:nagios:remote_plug_in_executor

cpe:/a:x.org:libxrandr
cpe:/a:x:libxrandr

cpe:/a:x.org:libxi
cpe:/a:x:libxi

cpe:/a:x.org:libxfixes
cpe:/a:x:libxfixes

cpe:/a:x.org:libxvmc
cpe:/a:x:libxvmc

cpe:/a:x.org:libxv
cpe:/a:x:libxv

cpe:/a:x.org:libxtst
cpe:/a:x:libxtst

cpe:/a:x.org:xdm
cpe:/a:x:x_display_manager

cpe:/a:berlios:gps_daemon
cpe:/a:gpsd_project:gpsd

cpe:/o:kde:kdelibs
cpe:/a:kde:kdelibs

cpe:/a:npm:npm
cpe:/a:npmjs:node_packaged_modules

cpe:/a:carnegie_mellon_university:cyrus-sasl
cpe:/a:cmu:cyrus-sasl

cpe:/a:littlecms:lcms
cpe:/a:littlecms:little_cms_color_engine

cpe:/a:nullmailer:nullmailer
cpe:/a:gentoo:nullmailer

cpe:/a:restlet:restlet_framework
cpe:/a:restlet:restlet

cpe:/a:systemd_project:systemd
cpe:/a:ubuntu_developers:systemd

cpe:/a:ngircd:ngircd
cpe:/a:barton:ngircd

cpe:/a:curveriderhq:elgg
cpe:/a:elgg:elgg

cpe:/a:oftc:oftc-hybrid
cpe:/a:ircd-hybrid:ircd-hybrid

cpe:/a:freedesktop:telepathy_gabble
cpe:/a:simon_mcvittie:telepathy_gabble

cpe:/a:python:pip
cpe:/a:pip-installer:pip

cpe:/a:menalto:gallery
cpe:/a:galleryproject:gallery

cpe:/a:eucalyptus:eucalyptus
cpe:/o:eucalyptus:eustore

cpe:/a:yard_radius:yard_radius
cpe:/a:yard_radius_project:yard_radius

# Dummy entries to hide noise
#cpe:/a:webkit:webkit
#cpe:/a:google:chrome
#cpe:/a:apple:safari

# Dummy entries to hide noise
#cpe:/a:mozilla:libxul
#cpe:/a:mozilla:firefox
#cpe:/a:mozilla:thunderbird
#cpe:/a:mozilla:seamonkey
#cpe:/a:mozilla:mozilla

# Dummy entries to hide noise
#cpe:/a:kvm_qumranet:kvm
#cpe:/a:qemu:qemu
#cpe:/a:xensource:xen
#cpe:/o:xen:xen

# Dummy entries to hide noise
#cpe:/a:vmware:ace
#cpe:/a:vmware:esx
#cpe:/a:vmware:esxi
#cpe:/a:vmware:player
#cpe:/a:vmware:server
#cpe:/a:vmware:vmware_server
#cpe:/a:vmware:vmware_workstation
#cpe:/a:vmware:workstation

© 2014-2024 Faster IT GmbH | imprint | privacy policy