summaryrefslogtreecommitdiffstats
path: root/data/CPE/list
blob: 0ccd4d451e1cb6f753c8b766be67189c1e8e611d (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
acidbase
acl
acon
acpid
activeldap
adns
advi
aegis
afuse
ajaxterm
alien-arena
alpine
am-utils
amarok
amaya
ampache
amsn
amule
aolserver4
apache2;cpe:/a:apache:http_server
apache;cpe:/a:apache:http_server
apertium
apport
apr
apr-util;cpe:/a:apache:apr-util
apt
apt-listchanges
aptlinex
aptoncd
arb
ardour
argyll
aria2
arora
arts
asterisk-addons
asterisk;cpe:/a:digium:asterisk
atmailopen
audacity
audiofile
audiolink
audit
auth2db
automake1.10;cpe:/a:gnu:automake
automake1.7;cpe:/a:gnu:automake
automake1.9;cpe:/a:gnu:automake
automake;cpe:/a:gnu:automake
avahi
aview
awstats
axis
axis2c
axyl
ayttm
babel
backintime
backuppc
bacula
banshee
bareftp
barnowl
base-files
bash;cpe:/a:bash:bash
beanstalkd
belpic
bind9;cpe:/a:isc:bind
bind;cpe:/a:isc:bind
binutils
bip
bitlbee
bk2site
blender
blosxom
bluez-libs
bluez-utils
boa
bochs
bogofilter
boinc
boost
bozohttpd
bristol
brltty
bugzilla;cpe:/a:mozilla:bugzilla
buildbot
bulmages
busybox
byacc
bzip2
cabextract
cableswig
cacti;cpe:/a:cacti:cacti
cadaver
cairo
cakephp
camlimages
camserv
caudium
cbrpager
ccid
cdcontrol
cdrw-taper
cecilia
centerim
cgiwrap
changetrack
checkinstall
cherokee
cherrypy3
chm2pdf
chora2
chromium-browser;cpe:/a:google:chrome
chrony
citadel
clamav;cpe:/a:clamav:clamav
classpath
cluster-agents
cmake
cmus
cobbler
coccinelle
coin3
collectd
comix
compiz-fusion-plugins-main
condor
convirt
coreutils
couchdb
courier-authlib
cowbell
cpio
crip
cron
crossfire-maps
cscope
csound
ctn
ctorrent
cups;cpe:/a:cups:cups
cupsys;cpe:/a:cups:cups
curl
cuteflow
cvs
cvsnt
cyrus-imapd-2.2
cyrus-sasl2
cyrus-sasl2-heimdal
dash
dbus-glib;cpe:/a:freedesktop:dbus-glib
dbus;cpe:/a:freedesktop:dbus
deliver
deluge-torrent
destar
devil
devscripts
dhcp
dhcp3
dhis-server
dia
digitaldj
dillo
dist
djbdns
dkim-milter
dns2tcp
dnsmasq
dnspython
dnssec-tools
docvert
dojo
dokuwiki
dopewars
dotlrn
dovecot;cpe:/a:dovecot:dovecot
dpkg-cross
dpkg;cpe:/a:debian:dpkg
dracut
dropbox
drupal;cpe:/a:drupal:drupal
drupal-4.7;cpe:/a:drupal:drupal
drupal5;cpe:/a:drupal:drupal
drupal6;cpe:/a:drupal:drupal
drupal6-mod-cck
drupal6-mod-views
dstat
dtc
dvipng
eaccelerator-src
ebug-http
eclipse
ecryptfs-utils
ed
eggdrop
eglibc
egroupware;cpe:/a:egroupware:egroupware
ejabberd
ekg
elgg
elinks
elog
emacs-jabber
emacs21;cpe:/a:gnu:emacs
emacs22;cpe:/a:gnu:emacs
emacs23;cpe:/a:gnu:emacs
emacspeak
ember
emesene
encfs
enscript
eog
epiphany-browser
erlang
eterm
ethereal
eucalyptus
evince;cpe:/a:redhat:evince
evolution;cpe:/a:gnome:evolution
evolution-data-server
ewiki
exaile
exim4;cpe:/a:exim:exim
exiv2
expat
ezpublish
faad2
fail2ban
fastjar;cpe:/a:matthias_klose:fastjar
fckeditor
fcron
festival
feta
fetchmail
ffmpeg-debian;cpe:/a:ffmpeg:ffmpeg
ffmpeg;cpe:/a:ffmpeg:ffmpeg
file
firebird2
firebird2.0
firebird2.1
firefox-sage
firehol
flamethrower
flashplugin-nonfree
flatpress
flex
flyspray
fml
fontforge
foswiki
freebsd-sendpr
freeciv;cpe:/a:freeciv:freeciv
freepbx
freeradius;cpe:/a:freeradius:freeradius
freetype;cpe:/a:freetype:freetype
freevo;cpe:/a:duncan_webb:freevo
fuse
fwbuilder
gaim;cpe:/a:rob_flynn:gaim
gallery
gallery2
gallery3
ganeti
ganglia-monitor-core
gcc-4.3;cpe:/a:gnu:gcc
gccxml
gcj-4.1
gcj-4.2
gcj-4.3
gcj-4.4
gdcm
gdm;cpe:/a:gnome:gdm
gdrae
geda-gnetlist
gedit
geronimo
geshi
gforge;cpe:/a:gforge:gforge
gforge-plugin-scmcvs
ggobi
ghostscript;cpe:/a:artifex:gpl_ghostscript
gif2png
gimp;cpe:/a:gimp:gimp
git
git-core
gitolite
glassfish
glib2.0;cpe:/a:gnome:glib
glibc;cpe:/a:gnu:glibc
glpi
gmanedit
gmime2.2
gmime2.4
gnash;cpe:/a:gnu:gnash
gnome-peercast
gnome-power-manager
gnome-screensaver
gnome-shell
gnome-subtitles;cpe:/a:pedro_castro:gnome-subtitles
gnome-vfs2
gnome-xcf-thumbnailer
gnu-smalltalk
gnucash
gnudip
gnumeric;cpe:/a:gnome:gnumeric
gnupg;cpe:/a:gnupg:gnupg
gnupg2;cpe:/a:gnupg:gnupg
gnustep-base
gnutls13;cpe:/a:gnu:gnutls
gnutls26;cpe:/a:gnu:gnutls
gollem
gpicview
gpsdrive;cpe:/a:gpsdrive:gpsdrive
graphicsmagick
graphviz
grmonitor
grub2;cpe:/a:gnu:grub_2
grubcpe:/a:gnu:grub_legacy
gs-esp;cpe:/a:ghostscript:ghostscript
gs-gpl;cpe:/a:ghostscript:ghostscript
gst-plugins-bad0.10
gst-plugins-base0.10
gst-plugins-good0.10;cpe:/a:gstreamer:good_plug-ins
gstreamer0.10-ffmpeg
gtk+2.0
guile-1.6
gupnp
gv;cpe:/a:gnu:gv
gzip;cpe:/a:gnu:gzip
hamlib
havp
heartbeat
heimdal
henplus
hercules
hf
hipo
hobix
honeyd
horde3;cpe:/a:horde:horde_application_framework
hplip
hsolink
htmldoc
htop
httrack
hybserv
hypermail
hypre
ibackup
iceape;cpe:/a:mozilla:seamonkey
icedove;cpe:/a:mozilla:thunderbird
iceweasel;cpe:/a:mozilla:firefox
icu
ike
ikiwiki;cpe:/a:ikiwiki:ikiwiki
imagemagick;cpe:/a:imagemagick:imagemagick
imlib
imlib2
imp4
impose+
incron
ingo1
initramfs-tools
insighttoolkit
inspircd
interchange
ipplan
ipsec-tools
iputils
ircd-hybrid
ircd-ircu
ircd-ratbox
irrlicht
irssi
isc-dhcp
iscsitarget
jags
jailer
jasper
jbig2dec
jbossas4
jetty
jhead
jifty
jquery
jscropperui
jspwiki
kadu
karrigell
kaya
kde4libs;cpe:/o:kde:kdelibs
kdebase-workspace
kdebase;cpe:/o:kde:kde
kdegraphics;cpe:/a:kde:kdegraphics
kdelibs;cpe:/o:kde:kdelibs
kdenetwork
kfreebsd-5
kfreebsd-6
kfreebsd-7
kfreebsd-8
kino
klibc
knowledgeroot
kolab-cyrus-imapd
kolab-webclient
kompozer
konwert
krb5;cpe:/a:mit:kerberos
kronolith2
ktorrent
ktorrent2.2
kvirc
kvm
lam
lasso
lastfm
lazarus
lcms;cpe:/a:littlecms:lcms
ldm
ldns
lftp
lib3ds
libannodex
libapache-mod-jk
libapache-mod-security
libapache2-mod-auth-shadow
libapache2-mod-fcgid
libapache2-mod-perl2
libaws
libcdaudio
libcgi-pm-perl
libcgi-simple-perl
libcompface
libcompress-raw-bzip2-perl
libcompress-raw-zlib-perl
libconvert-uulib-perl
libcrypt-openssl-dsa-perl
libdbd-pg-perl
libesmtp
libexif
libextractor
libfishsound
libfwbuilder
libgadu
libgd2;cpe:/a:libgd:gd_graphics_library
libgdiplus
libglpng
libgnucrypto-java
libhtml-parser-perl
libhtml-prototype-perl
libhx
libid3tag
libimager-perl
libio-socket-ssl-perl;cpe:/a:io-socket-ssl:io-socket-ssl
libjson-ruby
libmcrypt
libmikmod
libmodplug
libnasl
libnet-dns-perl
libnids
libnss-db
liboggplay
liboggz
libpam-heimdal
libpam-krb5;cpe:/a:eyrie:pam-krb5
libpam-mount;cpe:/a:pam_mount:pam_mount
libpam-ssh;cpe:/a:andrew_j.korty:pam_ssh
libphp-cas
libphp-jpgraph
libphp-snoopy
libpng;cpe:/a:libpng:libpng
libprelude
libsamplerate
libsdp
libsmi
libsndfile
libsoup
libspf2
libspring-2.5-java
libstruts1.2-java
libthai
libtheora
libtk-img
libtool
libtorrent-rasterbar
libtunepimp
libuser;cpe:/a:miloslav_trmac:libuser
libv8
libvirt
libvorbis
libvpx
libwmf
libwordpress-xmlrpc-perl
libwww-perl
libxcrypt
libxerces2-java
libxfont
libxml
libxml2
libxslt
licq
lighttpd
lilo
links2
lintian
linux-2.6.24;cpe:/o:linux:kernel
linux-2.6;cpe:/o:linux:kernel
linux-ftpd
linux-ftpd-ssl
linux-patch-grsecurity2
linux-patch-tuxonice
linuxdcpp
linuxtrade
liquidsoap
litmus
lmbench;cpe:/a:bitmover:lmbench
ltp
ltsp
lucene2
lustre
lvm2;cpe:/a:heinz_mauelshagen:lvm2
lxr
lxr-cvs
lxsession
lynx-cur;cpe:/a:lynx:lynx
lynx;cpe:/a:lynx:lynx
m2crypto
m4
mafft
magics++
magpierss
mahara;cpe:/a:mahara:mahara
maildirsync
maildrop
mailman
mailscanner
mako
mantis;cpe:/a:mantis:mantis
mapserver;cpe:/a:umn:mapserver
maradns
matanza
mathtex
matrixssl
maxdb-7.5.00
mayavi
mcabber
mediamate
mediatomb
mediawiki1.7
mediawiki;cpe:/a:mediawiki:mediawiki
mednafen
memcached
memcachedb
mercurial
merkaartor
mgetty
mgt
mh-book
mhonarc;cpe:/a:mhonarc:mhonarc
midori
mimetex
mini-httpd
mistelix
mksh
mldonkey
mlmmj
mn-fit
mnemo2
mod-auth-mysql
moin;cpe:/a:moinmoin:moinmoin
mojarra
mon
mondo
monkeysphere
mono-debugger
mono;cpe:/a:mono:mono
monotone
moodle;cpe:/a:moodle:moodle
moon
motion
movabletype-opensource;cpe:/a:sixapart:movabletype
mp4h
mpfr
mpg123
mplayer;cpe:/a:mplayer:mplayer
mpop
msmtp
msp-webserver
mt-daapd
mtr
multi-gnome-terminal
multipath-tools
mutt;cpe:/a:mutt:mutt
muttprint
mydms
myspell
mysql-5.1;cpe:/a:mysql:mysql
mysql-dfsg-4.1;cpe:/a:mysql:mysql
mysql-dfsg-5.0;cpe:/a:mysql:mysql
mysql-dfsg-5.1;cpe:/a:mysql:mysql
mysql-ocaml
nag2
nagios2
nagios3
naim
namazu2
nano
nasm
nautilus-python
ncbi-tools6
ncompress
ncpfs
ndiswrapper
neon26;cpe:/a:webdav:neon
neon27;cpe:/a:webdav:neon
neon;cpe:/a:webdav:neon
net-snmp;cpe:/o:net-snmp:net_snmp
netatalk
netdisco-mibs-installer
netmrg
netpbm-free
network-manager
network-manager-applet
newsbeuter
newsgate
newsx
newt
nfs-utils
nginx
ngircd
nilfs2-tools
no-ip
nordugrid-arc-nox
nsd
nsd3
nspr
nss
nss-ldapd
ntop
ntp;cpe:/a:ntp:ntp
nusoap
nvidia-cg-toolkit
ocrodjvu
ocsinventory-agent
ocsinventory-server
oftc-hybrid
ogle
okular
op
op-panel
open-iscsi
openacs
openafs
openconnect
opendb
opendchub
openexr
openjdk-6;cpe:/a:sun:openjdk
openldap2.2;cpe:/a:openldap:openldap
openldap2.3;cpe:/a:openldap:openldap
openldap2;cpe:/a:openldap:openldap
openldap;cpe:/a:openldap:openldap
openmpi
openoffice.org;cpe:/a:openoffice:openoffice.org
opensaml
opensaml2
opensc
openscenegraph
openssh;cpe:/a:openssh:openssh
openssl097;cpe:/a:openssl:openssl
openssl;cpe:/a:openssl:openssl
openswan
openttd;cpe:/a:openttd:openttd
openvpn
openx
opie
optipng
os-prober
otrs
otrs2
owl
owl-dms
p3nfs
p7zip
pam;cpe:/a:kernel:linux-pam
pam-pgsql
pan
pango1.0;cpe:/a:pango:pango
paramiko
paraview
parser
parser-mysql
passenger
paste
pax
pcre3
pcsc-lite;cpe:/a:muscle:pcsc-lite
pdfjam
pdkim
pdns
pdns-recursor
pdnsd
pdsh
peercast
perl;cpe:/a:perl:perl
perlbal
pgfouine
php-apc
php-htmlpurifier
php-json-ext
php-mail
php-net-ping
php4;cpe:/a:php:php
php5;cpe:/a:php:php
phpbb2
phpbb3
phpgedview;cpe:/a:phpgedview:phpgedview
phpgroupware
phpicalendar
phpldapadmin
phpmyadmin;cpe:/a:phpmyadmin:phpmyadmin
phpmyid
phppgadmin
phpqladmin
pidgin;cpe:/a:pidgin:pidgin
pike7.6
pilot-qof
pimd;cpe:/a:troglobit:pimd
pinball
piwigo
piwik;cpe:/a:piwik:piwik
pixelpost
plait
planet
planet-venus
plone3;cpe:/a:plone:plone
plt-scheme
pmount
poco
poker-network
polarssl
policyd-weight
policykit
polipo
poppler;cpe:/a:poppler:poppler
postfix
postgresql-7.4;cpe:/a:postgresql:postgresql
postgresql-8.1;cpe:/a:postgresql:postgresql
postgresql-8.2;cpe:/a:postgresql:postgresql
postgresql-8.3;cpe:/a:postgresql:postgresql
postgresql-8.4;cpe:/a:postgresql:postgresql
postgresql-9.0;cpe:/a:postgresql:postgresql
postgresql-ocaml
ppp
prewikka
printfilters-ppd
pristine-tar
proftpd-dfsg;cpe:/a:proftpd:proftpd
projectl
prototypejs
psi
pulseaudio
puppet
pvpgn
pyfribidi
pyftpd
pygresql
python-4suite
python-cherrypy
python-cjson
python-crypto
python-defaults
python-django;cpe:/a:django_project:django
python-dns
python-formencode
python-pyftpdlib
python-xml
python2.4;cpe:/a:python:python
python2.5;cpe:/a:python:python
python2.6;cpe:/a:python:python
python2.7;cpe:/a:python:python
python3.1;cpe:/a:python:python
python3.2;cpe:/a:python:python
qemu-kvm
qemu;cpe:/a:qemu:qemu
qt4-x11;cpe:/a:nokia:qt
qtcreator
quagga
quassel
qutecom
qwik
r-base
r-base-core-ra
radiance
rails
rancid
rccp
rdesktop
realtimebattle
redhat-cluster;cpe:/a:redhat:cman
redland
redmine
refpolicy
rekonq
reportbug
reportbug-ng
request-tracker3.4;cpe:/a:bestpractical:rt
request-tracker3.6;cpe:/a:bestpractical:rt
request-tracker3.8;cpe:/a:bestpractical:rt
rhythmbox
rkhunter
roaraudio
robocode
root-system
roundcube
roundup
rpm;cpe:/a:rpm:rpm
rsync;cpe:/a:rsync:rsync
rsyslog
rt-extension-emailcompletion
rt2400
rt2500
rt2570
rt73
ruby1.8;cpe:/a:ruby-lang:ruby
ruby1.9.1;cpe:/a:ruby-lang:ruby
ruby1.9;cpe:/a:ruby-lang:ruby
ruby;cpe:/a:ruby-lang:ruby
rxvt
sabre
sahana
salome
samba;cpe:/a:samba:samba
samhain
samizdat
sarg
scilab
scratchbox2
screen
screenie
scriptaculous
sdcc
sdl-image1.2
sdm
sendmail
serendipity
sgml2x
shadow
shibboleth-sp
shibboleth-sp2
silc-client
silc-server
silc-toolkit
silverstripe
simgear
sip-tester
siproxd
ski
slash
slim
slurm-llnl
smart
smarty
smbind
smsclient
sng
snort
socat
sork-passwd-h3
spamass-milter
speex
spice
spip
splitvt
sql-ledger
squid;cpe:/a:squid-cache:squid
squid3;cpe:/a:squid-cache:squid
squidguard;cpe:/a:squidguard:squidguard
squirrelmail;cpe:/a:squirrelmail:squirrelmail
ssmtp
sssd;cpe:/a:fedoraproject:sssd
stardict
streamripper
strongswan
stunnel4
subversion;cpe:/a:apache:subversion
sudo;cpe:/a:todd_miller:sudo
sun-java5;cpe:/a:sun:jdk
sun-java6;cpe:/a:sun:jdk
suphp
swfdec0.5
swfdec0.6
swftools;cpe:/a:swftools:swftools
sword
symfony
sympa;cpe:/a:sympa:sympa
synfig
syslog-ng
system-tools-backends
systemimager
systemtap
t-prot
tangerine
tar
tau
tdiary
tdom
teamspeak-client
teamspeak-server
texlive-base
texlive-bin
texmacs
textpattern
tgt
thin
thttpd
tiff;cpe:/a:libtiff:libtiff
tiger
tightvnc;cpe:/a:tightvnc:tightvnc
tikiwiki
tintin++
tk8.3
tk8.4
tk8.5
tkman
tkusr
tla
tmsnc
tomboy
tomcat-native
tomcat5;cpe:/a:apache:tomcat
tomcat5.5;cpe:/a:apache:tomcat
tomcat6;cpe:/a:apache:tomcat
tor;cpe:/a:tor:tor
torcs
torrentflux
tqsllib
trac;cpe:/a:edgewall:trac
trac-git
transmission
trickle
tss
tunapie
turba2
turbogears2
tutos
tutos2
tuxguitar
tuxonice-userui
twiki
typo
typo3-src;cpe:/a:typo3:typo3
udev;cpe:/a:kernel:udev
udisks
udns
udunits
unbound
unrealircd
unzip;cpe:/a:info-zip:unzip
ust
util-linux
uudeview
uw-imap
uzbl
valgrind
varnish
vdccm
vdr
verlihub
videocache
viewvc
vim;cpe:/a:vim:vim
vinagre
vips
virtualbox-guest-additions
virtualbox-ose
vlc;cpe:/a:videolan:vlc_media_player
vmware-package
vnc4
vsftpd;cpe:/a:redhat:vsftpd
vte
vxl
w3c-libwww
w3m
wafp
webauth
webcalendar
webcit
webgui
webhelpers
webkit;cpe:/a:webkit:webkit
webkitkde
webmin
weborf
websvn
weechat
wesnoth
wget
whitedune
wicd
wims
wireshark;cpe:/a:wireshark:wireshark
wml
wordnet
wordpress;cpe:/a:wordpress:wordpress
wordpress-mu
wxwidgets2.6
wxwidgets2.8
wxwindows2.4
wyrd
xapian-omega
xar
xastir
xcal
xcftools
xchat
xdg-utils
xemacs21
xemacs21-packages
xen
xen-3
xen-3.0
xen-unstable
xerces-c
xerces-c2
xerces27
xfig
xine-lib;cpe:/a:xine:xine-lib
xmacs21
xmcd
xml-security-c
xmlrpc-c
xmlsec1
xmltooling
xmovie
xorg-server
xotcl
xpdf;cpe:/a:xpdf:xpdf
xrdp
xscreensaver
xterm
xulrunner
xvidcore
xwine
xyssl
yacy
yaws
yelp
yui
zabbix;cpe:/a:zabbix:zabbix
zaptel
zenoss
ziproxy
znc
zodb
zonecheck
zoneminder
zope-cmfplone
zope-ldapuserfolder
zope2.10
zope2.11
zope2.9
zope3
zoph
zorp

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