Browse Source

more changes

Nikolaos Alexopoulos 6 years ago
parent
commit
598d12b3b0
77 changed files with 2693 additions and 78 deletions
  1. 73 8
      apt-sec.py
  2. 0 0
      cache/cvetable
  3. 0 0
      cache/dsa2cve
  4. 0 0
      cache/dsatable
  5. 1217 0
      cache/old_cache/all_sources
  6. 0 0
      cache/old_cache/cvetable
  7. 0 0
      cache/old_cache/dsa2cve
  8. 0 0
      cache/old_cache/dsatable
  9. 0 0
      cache/old_cache/src2bin
  10. 1 0
      cache/old_cache/src2deps
  11. 0 0
      cache/old_cache/src2dsa
  12. 0 0
      cache/old_cache/src2month
  13. 1 0
      cache/old_cache/src2pop
  14. 1 0
      cache/old_cache/src2sloccount
  15. 0 0
      cache/old_cache/src2sum
  16. 1 0
      cache/old_cache/state
  17. 0 0
      cache/src2dsa
  18. 0 0
      cache/src2month
  19. 1 1
      cache/state
  20. 1352 0
      log
  21. 15 14
      lstm_reg.py
  22. BIN
      models/apache2-9smoothing9.h5
  23. BIN
      models/asterisk-9smoothing9.h5
  24. BIN
      models/bind9-9smoothing9.h5
  25. BIN
      models/cacti-9smoothing9.h5
  26. BIN
      models/chromium-browser-9smoothing9.h5
  27. BIN
      models/clamav-9smoothing9.h5
  28. BIN
      models/cups-9smoothing9.h5
  29. BIN
      models/curl-9smoothing9.h5
  30. BIN
      models/drupal7-9smoothing9.h5
  31. BIN
      models/ffmpeg-9smoothing9.h5
  32. BIN
      models/firefox-esr-9smoothing9.h5
  33. BIN
      models/freetype-9smoothing9.h5
  34. BIN
      models/glibc-9smoothing9.h5
  35. BIN
      models/iceape-9smoothing9.h5
  36. BIN
      models/icedove-9smoothing9.h5
  37. BIN
      models/imagemagick-9smoothing9.h5
  38. BIN
      models/krb5-9smoothing9.h5
  39. BIN
      models/libav-9smoothing9.h5
  40. BIN
      models/libgd2-9smoothing9.h5
  41. BIN
      models/libpng1.6-9smoothing9.h5
  42. BIN
      models/libreoffice-9smoothing9.h5
  43. BIN
      models/libxml2-9smoothing9.h5
  44. BIN
      models/linux-9smoothing9.h5
  45. BIN
      models/mantis-9smoothing9.h5
  46. BIN
      models/mariadb-10.1-9smoothing9.h5
  47. BIN
      models/mediawiki-9smoothing9.h5
  48. BIN
      models/moodle-9smoothing9.h5
  49. BIN
      models/mysql-transitional-9smoothing9.h5
  50. BIN
      models/nss-9smoothing9.h5
  51. BIN
      models/ntp-9smoothing9.h5
  52. BIN
      models/openjdk-8-9smoothing9.h5
  53. BIN
      models/openssl-9smoothing9.h5
  54. BIN
      models/php7.0-9smoothing9.h5
  55. BIN
      models/phpmyadmin-9smoothing9.h5
  56. BIN
      models/pidgin-9smoothing9.h5
  57. BIN
      models/postgresql-9.6-9smoothing9.h5
  58. BIN
      models/python-django-9smoothing9.h5
  59. BIN
      models/qemu-9smoothing9.h5
  60. BIN
      models/rails-9smoothing9.h5
  61. BIN
      models/request-tracker4-9smoothing9.h5
  62. BIN
      models/ruby2.3-9smoothing9.h5
  63. BIN
      models/samba-9smoothing9.h5
  64. BIN
      models/squid3-9smoothing9.h5
  65. BIN
      models/squirrelmail-9smoothing9.h5
  66. BIN
      models/tcpdump-9smoothing9.h5
  67. BIN
      models/tiff-9smoothing9.h5
  68. BIN
      models/tomcat8-9smoothing9.h5
  69. BIN
      models/typo3-src-9smoothing9.h5
  70. BIN
      models/vlc-9smoothing9.h5
  71. BIN
      models/wireshark-9smoothing9.h5
  72. BIN
      models/wordpress-9smoothing9.h5
  73. BIN
      models/xen-9smoothing9.h5
  74. BIN
      models/xorg-server-9smoothing9.h5
  75. BIN
      models/xpdf-9smoothing9.h5
  76. BIN
      models/xulrunner-9smoothing9.h5
  77. 31 55
      results_paper9.txt

+ 73 - 8
apt-sec.py

@@ -523,15 +523,24 @@ def processCVEs(pkg, now, src2dsa, dsa2cve, src2month, cvetable, pkg_with_cvss,
     temp_cvss = 0.0
     with_cvss = dict()
 
+    ## To eliminate duplicate cves
+    haveseen = dict()
+
     ## cvestats = (date: number)
     for dsa_id in src2dsa[pkg]:
         for cve_id in dsa2cve[str(dsa_id)]:
-            tt = cvetable[cve_id][0]
-            if tt in cvestats:
-                cvestats[tt] += 1
+            if cve_id in haveseen:
+                continue
             else:
-                cvestats[tt] = 1
-            stats[1] += 1
+                haveseen[cve_id]=1
+                tt = cvetable[cve_id][0]
+                if tt in cvestats:
+                    cvestats[tt] += 1
+                else:
+                    cvestats[tt] = 1
+        stats[1] += 1
+
+    ## Date at the moment taken from CVE? - not sure.
 
     ## with_cvss = (date: number low, number med, number high)
     for dsa_id in src2dsa[pkg]:
@@ -567,7 +576,11 @@ def processCVEs(pkg, now, src2dsa, dsa2cve, src2month, cvetable, pkg_with_cvss,
     weight = 0
 
     dates = sorted(cvestats, key = cvestats.get)
-    stats[0] = dates[0]
+    try:
+        stats[0] = dates[0]
+    except IndexError:
+        print(pkg + str(dates))
+        stats[0] = 0
 
 
     count = sum(cvestats.values())
@@ -818,6 +831,8 @@ def plot_all(src2month):
                 year_num[j] += 1
             year_sum[j] += temp 
         total = sum(src2month[pkg][12:-12])
+        last_year = sum(src2month[pkg][-24:-12])
+        print(pkg + '; ' + str(last_year))
         if (total>0):
             src2sum[pkg] = total
     
@@ -845,13 +860,63 @@ def plot_all(src2month):
 
     print('Yearly vulnerabilites in total' + str(year_sum))
 
+    ## Number of affected packages
+    n = len(year_sum)
+    yearsx = ['\'01', '\'02', '\'03', '\'04', '\'05', '\'06', '\'07', '\'08', '\'09', '\'10', '\'11' , '\'12' ,'\'13', '\'14', '\'15', '\'16']
+    x = range(16)
+    width = 1/2
+    plt.bar(x, year_num, width, color='orange')
+    plt.xticks(np.arange(0,n),yearsx)
+    plt.ylabel('Number of affected packages')
+    plt.xlabel('Year')
+    plt.show()
+    
+    
     ## Average number of vulnerabilities per package per year
     average_per_year = [0] * 16
     for j in range(16):
         average_per_year[j] = year_sum[j]/float(year_num[j])
 
+    
+
     print(average_per_year)
 
+
+    n = len(year_sum)
+    yearsx = ['\'01', '\'02', '\'03', '\'04', '\'05', '\'06', '\'07', '\'08', '\'09', '\'10', '\'11' , '\'12' ,'\'13', '\'14', '\'15', '\'16']
+    x = range(16)
+    width = 1/2
+    #plt.bar(x, year_sum, width)
+    plt.bar(x, average_per_year, width, color='blue')
+    plt.xticks(np.arange(0,n),yearsx)
+    plt.ylabel('Average vulnerabilities per package')
+    plt.xlabel('Year')
+    plt.show()
+
+    ## Work on selected packages (php7.0, openjdk8, wireshark, chromium-browser, icedove, linux)
+
+    src2quarter = dict()
+    quarter_num = 17*4 
+    for pkg in src2month:
+        if (pkg == 'php7.0' or pkg == 'openjdk-8' or pkg=='wireshark' or pkg=='chromium-browser' or pkg=='icedove' or pkg=='linux'):
+            quarter_sum = [0] * quarter_num
+            for j in range(quarter_num):
+                temp =  sum(src2month[pkg][12+3*j:12+3*(j+1)])
+                quarter_sum[j] = temp
+            src2quarter[pkg] = quarter_sum
+
+    for pkg in src2quarter:
+        n = len(src2quarter[pkg])
+        quartersx = ['1/\'01', '2/\'01', '3/\'01', '4/\'01', '1/\'02', '2/\'02', '3/\'02', '4/\'02', '1/\'03', '2/\'03', '3/\'03', '4/\'03', '1/\'04', '2/\'04', '3/\'04', '4/\'04', '1/\'05', '2/\'05', '3/\'05', '4/\'05', '1/\'06', '2/\'06', '3/\'06', '4/\'06', '1/\'07', '2/\'07', '3/\'07', '4/\'07', '1/\'08', '2/\'08', '3/\'08', '4/\'08', '1/\'09', '2/\'09', '3/\'09', '4/\'09', '1/\'10', '2/\'10', '3/\'10', '4/\'10', '1/\'11', '2/\'11', '3/\'11', '4/\'11', '1/\'12', '2/\'12', '3/\'12', '4/\'12', '1/\'13', '2/\'13', '3/\'13', '4/\'13', '1/\'14', '2/\'14', '3/\'14', '4/\'14', '1/\'15', '2/\'15', '3/\'15', '4/\'15', '1/\'16', '2/\'16', '3/\'16', '4/\'16', '1/\'17', '2/\'17', '3/\'17', '4/\'17']
+        x = range(quarter_num)
+        width = 1/2
+        plt.bar(x, src2quarter[pkg], width, color='red')
+        plt.xticks(np.arange(0,n),quartersx, rotation="vertical")
+        plt.ylabel('Vulnerabilities per quarter of package ' + pkg)
+        plt.xlabel('Quarter')
+        plt.show()
+
+
     ###############################################################################################
 
     n = len(year_sum)
@@ -859,7 +924,7 @@ def plot_all(src2month):
     x = range(16)
     width = 1/2
     plt.bar(x, year_sum, width)
-    plt.bar(x, average_per_year, width)
+    #plt.bar(x, average_per_year, width)
     plt.xticks(np.arange(0,n),yearsx)
     plt.ylabel('Total vulnerabilities')
     plt.xlabel('Year')
@@ -964,7 +1029,7 @@ if action == 'update':
 #    getdeps(src2dsa, src2deps)
     save_DBs(dsatable, src2dsa, dsa2cve, cvetable, src2month, src2sloccount, src2pop, src2deps, src2sum)
     save_state(state)
-    lstm.predict(src2month, src2sloccount, src2pop, src2deps)
+#    lstm.predict(src2month, src2sloccount, src2pop, src2deps)
 #    print(pkg_with_cvss['linux'])
     
     low = []

File diff suppressed because it is too large
+ 0 - 0
cache/cvetable


File diff suppressed because it is too large
+ 0 - 0
cache/dsa2cve


File diff suppressed because it is too large
+ 0 - 0
cache/dsatable


+ 1217 - 0
cache/old_cache/all_sources

@@ -0,0 +1,1217 @@
+[
+  "Konquerer",
+  "XChat",
+  "a2ps",
+  "abc2ps",
+  "abcmidi",
+  "abiword",
+  "abuse",
+  "acidlab",
+  "acm",
+  "acpi-support",
+  "acpid",
+  "activemq",
+  "adzapper",
+  "affix",
+  "afuse",
+  "aircrack-ng",
+  "ajaxterm",
+  "albatross",
+  "alsa-driver",
+  "alsaplayer",
+  "amarok",
+  "amule",
+  "analog",
+  "antiword",
+  "aodh",
+  "apache2",
+  "apcupsd",
+  "apr",
+  "apr-util",
+  "apt",
+  "apt-cacher",
+  "apt-listchanges",
+  "arc",
+  "aria2",
+  "arj",
+  "arpwatch",
+  "asterisk",
+  "at",
+  "atari800",
+  "atftp",
+  "atheme-services",
+  "atril",
+  "audiofile",
+  "augeas",
+  "auth2db",
+  "autorespond",
+  "avahi",
+  "awstats",
+  "axel",
+  "b2evolution",
+  "backup-manager",
+  "backupninja",
+  "bacula",
+  "balsa",
+  "barnowl",
+  "bash",
+  "batik",
+  "bcfg2",
+  "beaker",
+  "belpic",
+  "bidwatcher",
+  "bind9",
+  "binutils",
+  "bip",
+  "bitlbee",
+  "blender",
+  "blueman",
+  "bluez",
+  "bluez-hcidump",
+  "bluez-utils",
+  "bmv",
+  "bnc",
+  "bochs",
+  "bogofilter",
+  "boinc",
+  "bomberclone",
+  "bonsai",
+  "botan1.10",
+  "bouncycastle",
+  "bsd-mailx",
+  "bsdgames",
+  "bsh",
+  "bsmtpd",
+  "bugzilla",
+  "bzip2",
+  "c-ares",
+  "c-icap",
+  "cabextract",
+  "cacti",
+  "cadaver",
+  "calife",
+  "camlimages",
+  "canna",
+  "capi4hylafax",
+  "catdoc",
+  "centericq",
+  "cfengine2",
+  "cfingerd",
+  "cfs",
+  "cgiemail",
+  "cgiirc",
+  "cgit",
+  "changetrack",
+  "charybdis",
+  "chasen",
+  "chbg",
+  "checkpw",
+  "cheesetracker",
+  "chkrootkit",
+  "chmlib",
+  "chromium-browser",
+  "chrony",
+  "cinder",
+  "cipe",
+  "citadel",
+  "clamav",
+  "claws-mail",
+  "clearsilver",
+  "collectd",
+  "common-lisp-controller",
+  "condor",
+  "connman",
+  "conntrack",
+  "conquest",
+  "couchdb",
+  "courier",
+  "courier-authlib",
+  "cpio",
+  "crawl",
+  "crip",
+  "cron",
+  "crossfire",
+  "cscope",
+  "ctorrent",
+  "cups",
+  "cups-filters",
+  "cups-pk-helper",
+  "curl",
+  "cvs",
+  "cvsnt",
+  "cyrus-imapd",
+  "cyrus-sasl2",
+  "das-watchdog",
+  "davfs2",
+  "dbus",
+  "dcmtk",
+  "ddskk",
+  "debian-goodies",
+  "debmake",
+  "deluge",
+  "denyhosts",
+  "devil",
+  "devscripts",
+  "dhcpcd5",
+  "dhis-tools-dns",
+  "dia",
+  "diatheke",
+  "didiwiki",
+  "dietlibc",
+  "django-markupfield",
+  "djbdns",
+  "djvulibre",
+  "dnsmasq",
+  "doctrine",
+  "dokuwiki",
+  "dovecot",
+  "dpkg",
+  "dropbear",
+  "drupal",
+  "drupal7",
+  "dspam",
+  "dtc",
+  "dulwich",
+  "dvipng",
+  "e2fsprogs",
+  "ecartis",
+  "ecryptfs-utils",
+  "eggdrop",
+  "egroupware",
+  "ejabberd",
+  "eject",
+  "ekg",
+  "elasticsearch",
+  "eldav",
+  "elinks",
+  "elog",
+  "emacs2",
+  "emil",
+  "enemies-of-carlotta",
+  "enigmail",
+  "enscript",
+  "eperl",
+  "epic",
+  "eric",
+  "eroaster",
+  "eterm",
+  "ettercap",
+  "evince",
+  "evolution",
+  "evolution-data-server",
+  "exactimage",
+  "exiftags",
+  "exim",
+  "exim4",
+  "exiv2",
+  "exmh",
+  "expat",
+  "extplorer",
+  "exuberant-ctags",
+  "ez-ipupdate",
+  "f2c",
+  "fail2ban",
+  "falconseye",
+  "fam",
+  "faqomatic",
+  "fbi",
+  "fcheck",
+  "fckeditor",
+  "fdclone",
+  "feta",
+  "fetchmail",
+  "fetchmail-ssl",
+  "fex",
+  "ffmpeg",
+  "file",
+  "firebird3.0",
+  "fireflier-server",
+  "firefox-esr",
+  "firefox-sage",
+  "flac",
+  "flamethrower",
+  "flatpak",
+  "flex",
+  "flexbackup",
+  "flightgear",
+  "flim",
+  "flyspray",
+  "fontconfig",
+  "fontforge",
+  "foomatic-filters",
+  "fop",
+  "freeamp",
+  "freeciv",
+  "freeimage",
+  "freenet6",
+  "freeradius",
+  "freerdp",
+  "freeswan",
+  "freesweep",
+  "freetype",
+  "freexl",
+  "fsp",
+  "fte",
+  "fuse",
+  "fuseiso",
+  "fusionforge",
+  "fuzz",
+  "gaim",
+  "gajim",
+  "gallery",
+  "ganeti",
+  "ganglia",
+  "ganglia-monitor-core",
+  "gatos",
+  "gcc",
+  "gdk-pixbuf",
+  "gdm",
+  "gdm3",
+  "gedit",
+  "geneweb",
+  "getmail",
+  "getmail4",
+  "gfax",
+  "gftp",
+  "ghostscript",
+  "gimp",
+  "git",
+  "git-core",
+  "gkrellm-newsticker",
+  "glib2.0",
+  "glibc",
+  "globus-gridftp-server",
+  "gmc",
+  "gmime2.2",
+  "gnash",
+  "gnats",
+  "gnatsweb",
+  "gnocatan",
+  "gnome-gv",
+  "gnome-peercast",
+  "gnomemeeting",
+  "gnujsp",
+  "gnumeric",
+  "gnump3d",
+  "gnupg2",
+  "gnuserv",
+  "gnutls28",
+  "gopher",
+  "gpdf",
+  "gpgme1.0",
+  "gpm",
+  "gps",
+  "gpsdrive",
+  "graphicsmagick",
+  "graphite2",
+  "graphviz",
+  "gridengine",
+  "groff",
+  "grub2",
+  "gs-common",
+  "gs-esp",
+  "gs-gpl",
+  "gsambad",
+  "gst-plugins-bad0.10",
+  "gst-plugins-bad1.0",
+  "gst-plugins-base1.0",
+  "gst-plugins-good0.10",
+  "gst-plugins-good1.0",
+  "gst-plugins-ugly1.0",
+  "gstreamer1.0",
+  "gtetrinet",
+  "gtk+2.0",
+  "gtkdiskfree",
+  "gtkhtml",
+  "gtksee",
+  "gv",
+  "gzip",
+  "hanterm",
+  "haproxy",
+  "hashcash",
+  "hdf5",
+  "heartbeat",
+  "heimdal",
+  "heirloom-mailx",
+  "helix-player",
+  "hf",
+  "hiki",
+  "horizon",
+  "hostapd",
+  "hplip",
+  "hpsockd",
+  "hsftp",
+  "hsqldb",
+  "ht",
+  "htcheck",
+  "htdig",
+  "htget",
+  "html2ps",
+  "htmlheadline",
+  "httrack",
+  "hybserv",
+  "hylafax",
+  "hypermail",
+  "hztty",
+  "iceape",
+  "icecast-server",
+  "icecast2",
+  "icedove",
+  "icedtea-web",
+  "icinga",
+  "icoutils",
+  "icu",
+  "id3lib3.8.3",
+  "ident2",
+  "ikiwiki",
+  "ilohamail",
+  "im",
+  "imagemagick",
+  "imlib",
+  "imlib2",
+  "imp",
+  "imp4",
+  "inetutils",
+  "info2www",
+  "ingo1",
+  "inkscape",
+  "inn2",
+  "inotify-tools",
+  "inspircd",
+  "interchange",
+  "iodine",
+  "ioquake3",
+  "iortcw",
+  "ipmasq",
+  "ipmenu",
+  "ipmitool",
+  "ipplan",
+  "iproute",
+  "ipsec-tools",
+  "iptables",
+  "ircd-hybrid",
+  "ircd-hybrid/ircd-ratbox",
+  "ircd-ratbox",
+  "ircii",
+  "ircii-pana",
+  "irssi",
+  "irssi-text",
+  "isakmpd",
+  "isc-dhcp",
+  "iscsitarget",
+  "jabber",
+  "jabberd14",
+  "jabberd2",
+  "jackrabbit",
+  "jackson-databind",
+  "jailer",
+  "jansson",
+  "jasper",
+  "jazip",
+  "jbig2dec",
+  "jbigkit",
+  "jffnms",
+  "jftpgw",
+  "jhead",
+  "jitterbug",
+  "joe",
+  "jqueryui",
+  "junkbuster",
+  "jython",
+  "kaffeine",
+  "kamailio",
+  "kazehakase",
+  "kdeadmin",
+  "kdebase",
+  "kdeedu",
+  "kdegames",
+  "kdegraphics",
+  "kdelibs",
+  "kdelibs-crypto",
+  "kdemultimedia",
+  "kdenetwork",
+  "kdepim",
+  "kdepimlibs",
+  "kdesdk",
+  "kdeutils",
+  "kernel",
+  "ketm",
+  "kfreebsd-10",
+  "kismet",
+  "knot",
+  "koffice",
+  "konversation",
+  "kphone",
+  "krb5",
+  "krb5-appl",
+  "kronolith",
+  "kronolith2",
+  "ktorrent",
+  "kvirc",
+  "l2tpd",
+  "l2tpns",
+  "lasso",
+  "lbreakout2",
+  "lcms",
+  "lcms2",
+  "ldap-account-manager",
+  "ldapscripts",
+  "ldm",
+  "ldns",
+  "leksbot",
+  "lesstif1-1",
+  "lftp",
+  "lha",
+  "lhasa",
+  "libapache-auth-ldap",
+  "libapache-mod-auth-kerb",
+  "libapache-mod-dav",
+  "libapache-mod-jk",
+  "libapache-mod-python",
+  "libapache-mod-security",
+  "libapache-mod-ssl",
+  "libapache2-mod-auth-pgsql",
+  "libapache2-mod-authnz-external",
+  "libapache2-mod-fcgid",
+  "libapache2-mod-perl2",
+  "libapreq2-perl",
+  "libarchive",
+  "libarchive1",
+  "libast2",
+  "libav",
+  "libcairo",
+  "libcdaudio",
+  "libcgi-pm-perl",
+  "libcgroup",
+  "libcommons-fileupload-java",
+  "libconvert-uulib-perl",
+  "libcrypt-cbc-perl",
+  "libcrypto++",
+  "libcurl3-gnutls",
+  "libdbd-firebird-perl",
+  "libdbd-mysql-perl",
+  "libdbd-pg-perl",
+  "libdbi-perl",
+  "libdmx",
+  "libdumb",
+  "libebml",
+  "libemail-address-perl",
+  "libevent",
+  "libexif",
+  "libextractor",
+  "libfcgi-perl",
+  "libffi",
+  "libfishsound",
+  "libfs",
+  "libgadu",
+  "libgcrypt11",
+  "libgcrypt20",
+  "libgd",
+  "libgd2",
+  "libgda",
+  "libgdata",
+  "libgtop",
+  "libgtop2",
+  "libhtml-parser-perl",
+  "libhttp-body-perl",
+  "libidn",
+  "libidn2-0",
+  "libimager-perl",
+  "libjakarta-poi-java",
+  "libksba",
+  "libmail-audit-perl",
+  "libmailtools-perl",
+  "libmatroska",
+  "libmcrypt",
+  "libmikmod",
+  "libmms",
+  "libmodplug",
+  "libmodule-signature-perl",
+  "libmojolicious-perl",
+  "libmspack",
+  "libmusicbrainz",
+  "libmwaw",
+  "libndp",
+  "libnet-dns-perl",
+  "libnet-server-perl",
+  "libnids",
+  "libnss-ldap",
+  "libosip2",
+  "libotr",
+  "libpam-heimdal",
+  "libpam-krb5",
+  "libpam-ldap",
+  "libpam-radius-auth",
+  "libpam-smb",
+  "libpam-sshauth",
+  "libpdfbox-java",
+  "libphp-adodb",
+  "libphp-phpmailer",
+  "libphp-snoopy",
+  "libphp-swiftmailer",
+  "libpng1.6",
+  "libproxy",
+  "libquicktime",
+  "libraw",
+  "libreoffice",
+  "librpcsecgss",
+  "librsvg",
+  "libsmi",
+  "libsndfile",
+  "libsoup",
+  "libsoup2.4",
+  "libspf2",
+  "libspring-2.5-java",
+  "libspring-java",
+  "libssh",
+  "libssh2",
+  "libstruts1.2-java",
+  "libtar",
+  "libtasn1",
+  "libtasn1-3",
+  "libtasn1-6",
+  "libthai",
+  "libtheora",
+  "libtirpc",
+  "libtk-img",
+  "libtool",
+  "libtorrent-rasterbar",
+  "libtunepimp",
+  "libungif4",
+  "libupnp",
+  "libvdpau",
+  "libvirt",
+  "libvncserver",
+  "libvorbis",
+  "libwmf",
+  "libwpd",
+  "libx11",
+  "libxalan2-java",
+  "libxcb",
+  "libxcursor",
+  "libxerces2-java",
+  "libxext",
+  "libxfixes",
+  "libxfont",
+  "libxi",
+  "libxinerama",
+  "libxml",
+  "libxml-libxml-perl",
+  "libxml-security-java",
+  "libxml2",
+  "libxp",
+  "libxpm",
+  "libxrandr",
+  "libxrender",
+  "libxres",
+  "libxslt",
+  "libxstream-java",
+  "libxt",
+  "libxtst",
+  "libxv",
+  "libxvmc",
+  "libxxf86dga",
+  "libxxf86vm",
+  "libyaml",
+  "libyaml-libyaml-perl",
+  "libytnef",
+  "liece",
+  "lighttpd",
+  "link-grammar",
+  "links",
+  "links2",
+  "linpopup",
+  "lintian",
+  "linux",
+  "linux-ftpd",
+  "linux-ftpd-ssl",
+  "listar",
+  "lm-sensors",
+  "log2mail",
+  "logcheck",
+  "logwatch",
+  "lookup-el",
+  "loop-aes-utils",
+  "lpr",
+  "lpr-ppd",
+  "lprng",
+  "lsh-utils",
+  "lsyncd",
+  "lua5.1",
+  "lua5.2",
+  "lucene-solr",
+  "lukemftpd",
+  "lurker",
+  "luxman",
+  "lv",
+  "lvm2",
+  "lxc",
+  "lxml",
+  "lxr",
+  "lxr-cvs",
+  "lynx",
+  "lynx-cur",
+  "lynx-ssl",
+  "lyskom-server",
+  "lzo2",
+  "mah-jong",
+  "mahara",
+  "maildrop",
+  "mailman",
+  "mailreader",
+  "mailutils",
+  "man-db",
+  "man2html",
+  "mantis",
+  "mapserver",
+  "maradns",
+  "marbles",
+  "mariadb-10.1",
+  "mason",
+  "masqmail",
+  "maxdb-7.5.00",
+  "mbedtls",
+  "mc",
+  "mediawiki",
+  "memcached",
+  "mercurial",
+  "mesa",
+  "metamail",
+  "metrics",
+  "mgetty",
+  "mhc",
+  "mhonarc",
+  "micq",
+  "migrationtools",
+  "mikmod",
+  "mime-support",
+  "mimetex",
+  "mindi",
+  "minimalist",
+  "miniupnpc",
+  "mldonkey",
+  "mlmmj",
+  "mm",
+  "mod-auth-shadow",
+  "mod-gnutls",
+  "mod-wsgi",
+  "modsecurity-apache",
+  "module-assistant",
+  "moin",
+  "mojarra",
+  "mon",
+  "mono",
+  "moodle",
+  "mosquitto",
+  "most",
+  "motor",
+  "movabletype-opensource",
+  "moxftp",
+  "mozart",
+  "mpack",
+  "mpg123",
+  "mpg321",
+  "mplayer",
+  "mt-daapd",
+  "mtr",
+  "multipath-tools",
+  "mumble",
+  "munin",
+  "mupdf",
+  "mutt",
+  "mydms",
+  "mydns",
+  "mysql",
+  "mysql-transitional",
+  "nagios",
+  "nagios-plugins",
+  "namazu2",
+  "nas",
+  "nasm",
+  "nautilus",
+  "nbd",
+  "ncompress",
+  "ncpfs",
+  "ncurses",
+  "nd",
+  "ndiswrapper",
+  "nedit",
+  "neon",
+  "net-acct",
+  "net-snmp",
+  "netatalk",
+  "nethack",
+  "netkit-rwho",
+  "netkit-telnet",
+  "netkit-telnet-ssl",
+  "netpbm-free",
+  "netrik",
+  "netris",
+  "netscape",
+  "network-manager",
+  "newsbeuter",
+  "newsx",
+  "newt",
+  "nfs-user-server",
+  "nfs-utils",
+  "nginx",
+  "nis",
+  "no-ip",
+  "node",
+  "noffle",
+  "noweb",
+  "nsd",
+  "nspr",
+  "nss",
+  "nss-ldapd",
+  "nss-pam-ldapd",
+  "ntfs-3g",
+  "ntlmaps",
+  "ntp",
+  "ntpd",
+  "nullmailer",
+  "nut",
+  "nvi",
+  "nvi-m17n",
+  "oar",
+  "ocsinventory-agent",
+  "oftpd",
+  "omega-rpg",
+  "oops",
+  "open-iscsi",
+  "openafs",
+  "openarena",
+  "openconnect",
+  "openexr",
+  "openjdk-8",
+  "openjfx",
+  "openjpeg",
+  "openjpeg2",
+  "openldap",
+  "opensaml",
+  "opensaml2",
+  "opensc",
+  "openslp-dfsg",
+  "openssh",
+  "openssl",
+  "openswan",
+  "openttd",
+  "openvpn",
+  "openvswitch",
+  "opie",
+  "oprofile",
+  "optipng",
+  "orville-write",
+  "osh",
+  "osiris",
+  "otrs",
+  "otrs2",
+  "owncloud",
+  "owncloud-client",
+  "p7zip",
+  "pam",
+  "pam-pgsql",
+  "pango1.0",
+  "parcimonie",
+  "pavuk",
+  "pcal",
+  "pcp",
+  "pcre3",
+  "pcsc-lite",
+  "pcscd",
+  "pdfkit",
+  "pdftohtml",
+  "pdns",
+  "pdns-recursor",
+  "peercast",
+  "perdition",
+  "perl",
+  "petris",
+  "php-cas",
+  "php-horde",
+  "php-horde-core",
+  "php-json-ext",
+  "php-net-ping",
+  "php-radius",
+  "php-xajax",
+  "php7.0",
+  "phpbb3",
+  "phpgedview",
+  "phpgroupware",
+  "phpldapadmin",
+  "phpmyadmin",
+  "phppgadmin",
+  "phpsysinfo",
+  "phpwiki",
+  "pidgin",
+  "pidgin-otr",
+  "pillow",
+  "pimd",
+  "pinball",
+  "pixman",
+  "pjproject",
+  "playmidi",
+  "plib",
+  "pmount",
+  "polarssl",
+  "policyd-weight",
+  "policykit-1",
+  "polipo",
+  "polygen",
+  "popfile",
+  "poppler",
+  "postfix",
+  "postfix-policyd",
+  "postfixadmin",
+  "postgresql",
+  "postgresql-9.6",
+  "postgrey",
+  "pound",
+  "ppp",
+  "pppoe",
+  "pptpd",
+  "ppxp",
+  "privoxy",
+  "procmail",
+  "proftpd",
+  "proftpd-dfsg",
+  "prosody",
+  "prozilla",
+  "psi",
+  "pstotext",
+  "pulseaudio",
+  "puppet",
+  "purity",
+  "putty",
+  "pwlib",
+  "py2play",
+  "pygments",
+  "pygresql",
+  "pyjwt",
+  "pymongo",
+  "pyopenssl",
+  "python",
+  "python-bottle",
+  "python-cherrypy",
+  "python-cjson",
+  "python-crypto",
+  "python-django",
+  "python-django-piston",
+  "python-dns",
+  "python-gnupg",
+  "python-imaging",
+  "python-pam",
+  "python-pysaml2",
+  "python3.5",
+  "pywebdav",
+  "pyyaml",
+  "qemu",
+  "qpopper",
+  "qt-copy",
+  "qt-x11-free",
+  "qt4-x11",
+  "quagga",
+  "quassel",
+  "queue",
+  "r-base",
+  "rabbitmq-server",
+  "radicale",
+  "radiusd-cistron",
+  "radsecproxy",
+  "radvd",
+  "rails",
+  "raptor",
+  "razor",
+  "rdesktop",
+  "redis",
+  "redmine",
+  "refpolicy",
+  "remstats",
+  "reportbug",
+  "reprepro",
+  "request-tracker4",
+  "requests",
+  "resmgr",
+  "rinetd",
+  "rlpr",
+  "roundcube",
+  "roundup",
+  "rp-pppoe",
+  "rpcbind",
+  "rpm",
+  "rssh",
+  "rsync",
+  "rsyslog",
+  "rt-authen-externalauth",
+  "rt2400",
+  "rt2500",
+  "rt2570",
+  "rtfm",
+  "rtmpdump",
+  "ruby-defaults",
+  "ruby-rack",
+  "ruby2.3",
+  "rxvt",
+  "rxvt-unicode",
+  "s3ql",
+  "samba",
+  "sane-backends",
+  "sash",
+  "scponly",
+  "screen",
+  "scrollkeeper",
+  "sdl-image1.2",
+  "semi",
+  "sendfile",
+  "sendmail",
+  "sendmail-wide",
+  "serendipity",
+  "sgml-tools",
+  "shadow",
+  "shibboleth-sp",
+  "shibboleth-sp2",
+  "shorewall",
+  "silc-client/silc-toolkit",
+  "simpleproxy",
+  "sitebar",
+  "skk",
+  "slash",
+  "slocate",
+  "slrn",
+  "smail",
+  "smartlist",
+  "smarty",
+  "smb2www",
+  "smb4k",
+  "smbind",
+  "smokeping",
+  "smstools",
+  "snmptrapfmt",
+  "snort",
+  "socat",
+  "sork-passwd-h3",
+  "sox",
+  "spamassassin",
+  "speex",
+  "spice",
+  "spip",
+  "splitvt",
+  "sql-ledger",
+  "sqlalchemy",
+  "sqlite3",
+  "squid3",
+  "squirrelmail",
+  "srtp",
+  "ssmtp",
+  "storebackup",
+  "streamripper",
+  "strongswan",
+  "stunnel4",
+  "subversion",
+  "sudo",
+  "sup",
+  "sup-mail",
+  "super",
+  "supervisor",
+  "suphp",
+  "suricata",
+  "svgsalamander",
+  "swift",
+  "swift-plugin-s3",
+  "sword",
+  "sylpheed",
+  "sylpheed-claws",
+  "symfony",
+  "sympa",
+  "synaesthesia",
+  "syslog-ng",
+  "sysstat",
+  "systemd",
+  "systemtap",
+  "t1lib",
+  "tar",
+  "tardiff",
+  "tcpdump",
+  "tcpreen",
+  "tcptraceroute",
+  "tdiary",
+  "teapop",
+  "telepathy-gabble",
+  "terminology",
+  "tetex-bin",
+  "tex-common",
+  "texinfo",
+  "texlive-base",
+  "tgt",
+  "thttpd",
+  "tidy",
+  "tiff",
+  "tinc",
+  "tinymux",
+  "tinyproxy",
+  "tk8",
+  "tkdiff",
+  "tkmail",
+  "tmux",
+  "tnef",
+  "tomcat",
+  "tomcat8",
+  "toolchain-source",
+  "tor",
+  "torque",
+  "trac",
+  "trac-git",
+  "traceroute-nanog",
+  "transmission",
+  "trousers",
+  "trr19",
+  "tryton-client",
+  "tryton-server",
+  "tunapie",
+  "turba2",
+  "turqstat",
+  "tutos",
+  "tuxpaint",
+  "twig",
+  "twiki",
+  "typespeed",
+  "typo3-src",
+  "ucd-snmp",
+  "udev",
+  "udisks",
+  "uim",
+  "unace",
+  "unadf",
+  "unalz",
+  "unarj",
+  "unattended-upgrades",
+  "unbound",
+  "undertow",
+  "unicon-imc2",
+  "unrtf",
+  "unzip",
+  "up-imapproxy",
+  "usermin",
+  "util-linux",
+  "util-vserver",
+  "uucp",
+  "uw-imap",
+  "varnish",
+  "vbox3",
+  "vdr",
+  "viewcvs",
+  "viewvc",
+  "vim",
+  "vino",
+  "virtualbox",
+  "virtualbox-ose",
+  "vlc",
+  "vnc4",
+  "vsftpd",
+  "vzctl",
+  "w3m",
+  "w3m-ssl",
+  "w3mmee",
+  "w3mmee-ssl",
+  "webcalendar",
+  "webcit",
+  "webfs",
+  "webkit",
+  "webmin",
+  "websvn",
+  "weechat",
+  "weex",
+  "wemi",
+  "wesnoth",
+  "wesnoth-1.10",
+  "wget",
+  "wine",
+  "wireshark",
+  "wmaker",
+  "wml",
+  "wmtv",
+  "wordnet",
+  "wordpress",
+  "wordpress-shibboleth",
+  "wpa",
+  "wu-ftpd",
+  "wv",
+  "wv2",
+  "www-sql",
+  "wwwoffle",
+  "wxwindows2.4",
+  "wzdftpd",
+  "x11-xserver-utils",
+  "xaos",
+  "xapian-omega",
+  "xbl",
+  "xboing",
+  "xbuffy",
+  "xchat",
+  "xconq",
+  "xdelta3",
+  "xdg-utils",
+  "xemacs21",
+  "xen",
+  "xen-qemu-dm-4.0",
+  "xerces-c",
+  "xfce4-terminal",
+  "xfs",
+  "xfsdump",
+  "xfstt",
+  "xgalaga",
+  "xine-lib-1.2",
+  "xine-ui",
+  "xinetd",
+  "xitalk",
+  "xli",
+  "xloadimage",
+  "xmail",
+  "xmcd",
+  "xml-security-c",
+  "xmlsec1",
+  "xmltooling",
+  "xmms",
+  "xonix",
+  "xorg-server",
+  "xpcd",
+  "xpdf",
+  "xpilot",
+  "xpvm",
+  "xscreensaver",
+  "xsok",
+  "xtel",
+  "xtell",
+  "xterm",
+  "xtokkaetama",
+  "xtrlock",
+  "xulrunner",
+  "xview",
+  "xvt",
+  "xwine",
+  "xymon",
+  "xzgv",
+  "yadifa",
+  "yardradius",
+  "yarssr",
+  "yaws",
+  "zabbix",
+  "zaptel",
+  "zblast",
+  "zebra",
+  "zendframework",
+  "zeromq3",
+  "zgv",
+  "zhcon",
+  "zip",
+  "zlib",
+  "znc",
+  "zodb",
+  "zonecheck",
+  "zoneminder",
+  "zoo",
+  "zookeeper",
+  "zope-common",
+  "zsync",
+  "zziplib"
+]

File diff suppressed because it is too large
+ 0 - 0
cache/old_cache/cvetable


File diff suppressed because it is too large
+ 0 - 0
cache/old_cache/dsa2cve


File diff suppressed because it is too large
+ 0 - 0
cache/old_cache/dsatable


File diff suppressed because it is too large
+ 0 - 0
cache/old_cache/src2bin


+ 1 - 0
cache/old_cache/src2deps

@@ -0,0 +1 @@
+{}

File diff suppressed because it is too large
+ 0 - 0
cache/old_cache/src2dsa


File diff suppressed because it is too large
+ 0 - 0
cache/old_cache/src2month


+ 1 - 0
cache/old_cache/src2pop

@@ -0,0 +1 @@
+{}

+ 1 - 0
cache/old_cache/src2sloccount

@@ -0,0 +1 @@
+{}

File diff suppressed because it is too large
+ 0 - 0
cache/old_cache/src2sum


+ 1 - 0
cache/old_cache/state

@@ -0,0 +1 @@
+{"vendor": "debian", "Sources": "", "next_adv": 4014, "next_fsa": 0, "Packages": "", "cache_dir": "cache/state", "Sha1Sums": ""}

File diff suppressed because it is too large
+ 0 - 0
cache/src2dsa


File diff suppressed because it is too large
+ 0 - 0
cache/src2month


+ 1 - 1
cache/state

@@ -1 +1 @@
-{"next_adv": 3931, "Sources": "", "Sha1Sums": "", "vendor": "debian", "Packages": "", "cache_dir": "cache/state", "next_fsa": 0}
+{"cache_dir": "cache/state", "next_adv": 4015, "next_fsa": 0, "Packages": "", "Sources": "", "Sha1Sums": "", "vendor": "debian"}

+ 1352 - 0
log

@@ -0,0 +1,1352 @@
+mgetty 1
+micq 2
+mysql 24
+splitvt 3
+sash 3
+wu-ftpd 10
+jazip 1
+tinyproxy 4
+squid3 44
+php7.0 241
+apache2 61
+exmh 1
+inn2 1
+cron 2
+openssh 12
+bind9 68
+man-db 5
+proftpd 9
+xorg-server 75
+sudo 19
+analog 2
+eperl 1
+man2html 2
+mc 16
+gmc 1
+nextaw[]
+nextaw 0
+xaw3d[]
+xaw3d 0
+xaw95[]
+xaw95 0
+sgml-tools 1
+glibc 39
+slrn 2
+joe 1
+gnuserv 1
+xemacs21 2
+zope-common 15
+mailx[]
+mailx 0
+ntpd 1
+exuberant-ctags 2
+CVE-2017-7895
+CVE-2014-9940
+CVE-2017-12153
+CVE-2017-14340
+linux 853
+samba 71
+cfingerd 3
+sendfile 1
+netscape 1
+nedit 1
+gftp 3
+exim 5
+fetchmail 11
+gnupg2 22
+rxvt 1
+xinetd 3
+w3m 3
+openldap 18
+xloadimage 4
+netkit-telnet 3
+groff 1
+imp 5
+wmaker 2
+netkit-telnet-ssl 6
+most 1
+uucp 2
+htdig 3
+w3m-ssl 3
+xvt 1
+procmail 2
+nvi 3
+nvi-m17n 3
+fml[]
+fml 0
+icecast-server 4
+xtel 1
+wmtv 3
+postfix 7
+mailman 16
+gpm 1
+mutt 6
+libgtop 2
+XChat 1
+gzip 13
+at 1
+cipe 1
+enscript 6
+rsync 6
+jgroff[]
+jgroff 0
+faqomatic 1
+cups 61
+ucd-snmp 5
+hanterm 1
+ncurses 1
+gnujsp 1
+cfs 2
+cvs 20
+xsane[]
+xsane 0
+libapache-mod-ssl 7
+xtell 3
+zlib 3
+listar 2
+mtr 2
+xpilot 1
+wireshark 271
+openssl 133
+mm 1
+gallery 9
+super 4
+libpng1.6 35
+mpack 1
+openafs 23
+krb5 78
+wwwoffle 1
+dietlibc 5
+hylafax 7
+interchange 2
+l2tpd 3
+mantis 61
+fam 1
+kdelibs 23
+epic 4
+irssi-text 1
+gaim 10
+python 1
+scrollkeeper 1
+mhonarc 3
+cacti 46
+postgresql 14
+purity 1
+Konquerer 1
+htcheck 1
+tomcat8 73
+fetchmail-ssl 2
+tkmail 1
+bugzilla 16
+heartbeat 4
+syslog-ng 2
+gv 2
+pam 3
+heimdal 16
+gnome-gv 1
+nis 1
+kdegraphics 26
+log2mail 2
+luxman 2
+squirrelmail 32
+html2ps 1
+kdenetwork 4
+masqmail 3
+courier 9
+nullmailer 1
+freeswan 2
+im 1
+smb2www 1
+gtetrinet 1
+tcpdump 156
+tetex-bin 10
+CVE-2017-12837
+CVE-2017-12883
+perl 23
+perl-5.004 1
+CVE-2017-13089
+CVE-2017-13090
+wget 7
+lynx 3
+lynx-ssl 3
+cyrus-imapd 10
+typespeed 4
+dhcpcd5 18
+xpdf 38
+geneweb 2
+canna 2
+libmcrypt 2
+kdeadmin 1
+kdepim 1
+kdesdk 1
+kdegames 1
+kdeutils 1
+kdebase 9
+kdemultimedia 1
+noffle 1
+tomcat 3
+hypermail 1
+w3mmee 2
+w3mmee-ssl 2
+slocate 3
+traceroute-nanog 5
+mhc 1
+sendmail 17
+sendmail-wide 6
+qpopper 3
+file 22
+netpbm-free 11
+lxr 1
+bonsai 4
+lpr 1
+ecartis 4
+lpr-ppd 1
+apcupsd 2
+metrics 1
+moxftp 1
+xfsdump 2
+lprng 1
+gs-common 1
+rinetd 1
+ircii 1
+mime-support 2
+gkrellm-newsticker 2
+pptpd 2
+snort 5
+leksbot 1
+balsa 1
+fuzz 1
+lv 1
+ircii-pana 3
+gps 3
+eterm 2
+xaos 1
+kernel 8
+atftp 1
+gnocatan 2
+nethack 2
+lyskom-server 1
+webmin 7
+mikmod 1
+radiusd-cistron 1
+noweb 2
+eldav 1
+orville-write 1
+xbl 2
+webfs 3
+osh 3
+tcptraceroute 1
+CVE-2017-8343
+CVE-2017-8344
+CVE-2017-8345
+CVE-2017-8346
+CVE-2017-8347
+CVE-2017-8348
+CVE-2017-8349
+CVE-2017-8350
+CVE-2017-8351
+CVE-2017-8352
+CVE-2017-8353
+CVE-2017-8354
+CVE-2017-8355
+CVE-2017-8356
+CVE-2017-8357
+CVE-2017-8765
+imagemagick 149
+acm 1
+xgalaga 1
+gtksee 1
+semi 1
+wemi 1
+x-face-el[]
+x-face-el 0
+liece 1
+mozart 1
+skk 1
+ddskk 1
+unzip 10
+phpsysinfo 4
+teapop 1
+nfs-utils 2
+falconseye 1
+fdclone 1
+sup 2
+xconq 1
+xtokkaetama 2
+atari800 2
+xfstt 2
+kdelibs-crypto 3
+mindi 1
+phpgroupware 18
+eroaster 1
+xpcd 3
+zblast 1
+pam-pgsql 2
+netris 1
+autorespond 1
+libpam-smb 1
+node 2
+exim4 13
+mah-jong 3
+sane-backends 6
+hztty 2
+libmailtools-perl 1
+gopher 5
+ipmasq 1
+marbles 1
+freesweep 1
+thttpd 4
+conquest 1
+omega-rpg 1
+minimalist 1
+xsok 1
+lftp 2
+screen 3
+libnids 1
+mpg321 1
+nd 1
+jabber 1
+zebra 2
+fsp 2
+vbox3 1
+jitterbug 1
+mod-auth-shadow 2
+trr19 1
+crawl 2
+mpg123 4
+cgiemail 1
+lbreakout2 1
+synaesthesia 2
+hsftp 1
+pwlib 1
+metamail 5
+xboing 1
+libapache-mod-python 2
+libxml 4
+libxml2 62
+python3.5 18
+sysstat 1
+calife 1
+xitalk 1
+gdk-pixbuf 16
+emil 2
+fte 3
+oftpd 1
+xine-ui 2
+xonix 1
+ssmtp 1
+neon 2
+logcheck 1
+iproute 1
+xchat 1
+ident2 1
+flim 1
+cadaver 1
+gatos 2
+jftpgw 1
+lha 2
+www-sql 1
+rlpr 2
+pavuk 1
+mailreader 2
+ruby2.3 56
+qt-copy 3
+imlib 3
+gtk+2.0 10
+wv 1
+lukemftpd 1
+imlib2 14
+getmail 2
+freenet6 1
+rp-pppoe 1
+pppoe 1
+libapache-mod-dav 1
+net-acct 1
+lesstif1-1 4
+cyrus-sasl2 5
+sox 2
+tiff 113
+cabextract 2
+catdoc 2
+abiword 3
+iptables 1
+lvm2 2
+shadow 6
+freeamp 1
+libgd 1
+gnats 1
+libgd2 35
+ez-ipupdate 1
+bnc 1
+yardradius 1
+hpsockd 1
+viewcvs 1
+zgv 3
+cscope 4
+htget 1
+a2ps 3
+xzgv 2
+debmake 1
+htmlheadline 1
+nasm 1
+zip 1
+pcal 1
+namazu2 1
+lintian 4
+linpopup 1
+bmv 2
+playmidi 1
+queue 1
+chbg 1
+xtrlock 1
+sword 1
+unarj 2
+zhcon 1
+vdr 1
+xine-lib-1.2 16
+libdbi-perl 1
+libpam-radius-auth 2
+f2c 2
+prozilla 3
+cpio 6
+ncpfs 1
+CVE-2017-14482
+CVE-2017-14482
+emacs2 4
+xview 1
+evolution 6
+sympa 4
+netkit-rwho 1
+toolchain-source 1
+awstats 5
+bidwatcher 1
+bsmtpd 1
+abuse 2
+xli 4
+remstats 2
+axel 1
+libexif 12
+gtkhtml 1
+info2www 1
+junkbuster 2
+lsh-utils 3
+smartlist 1
+smail 1
+ppxp 1
+oops 1
+libconvert-uulib-perl 1
+bzip2 3
+mailutils 5
+crip 1
+spamassassin 2
+clamav 52
+razor 1
+trac 4
+ht 2
+fuse 4
+drupal 17
+egroupware 6
+CVE-2017-8366
+ettercap 3
+gedit 1
+centericq 7
+phppgadmin 4
+ekg 10
+affix 3
+webcalendar 8
+phpbb3 18
+pdns 15
+apt-cacher 1
+several[]
+several 0
+firefox-esr 681
+bluez-utils 1
+mysql-transitional 243
+libpam-ldap 4
+simpleproxy 2
+backup-manager 3
+kismet 2
+phpldapadmin 5
+maildrop 1
+pstotext 2
+polygen 1
+zsync 2
+pcre3 10
+ntp 41
+tdiary 2
+common-lisp-controller 1
+turqstat 1
+lm-sensors 1
+kdeedu 1
+gtkdiskfree 1
+util-linux 2
+loop-aes-utils 2
+helix-player 3
+backupninja 1
+ntlmaps 1
+cfengine2 2
+arc 2
+mason 1
+dia 2
+shorewall 1
+openvpn 12
+up-imapproxy 1
+weex 1
+py2play 1
+graphviz 4
+uw-imap 3
+module-assistant 1
+eric 1
+libgda 1
+koffice 13
+net-snmp 5
+gnump3d 5
+phpmyadmin 70
+php-horde 27
+chmlib 4
+enigmail 2
+libungif4 2
+gpsdrive 1
+acidlab 1
+uim 1
+linux-ftpd-ssl 1
+xmail 1
+sylpheed 1
+ipmenu 1
+sylpheed-claws 1
+inkscape 2
+CVE-2017-1000257
+curl 42
+dropbear 4
+nbd 5
+ketm 1
+tkdiff 1
+dhis-tools-dns 1
+petris 1
+smstools 1
+pound 5
+libapache2-mod-auth-pgsql 1
+libextractor 11
+gpdf 11
+tuxpaint 1
+albatross 1
+antiword 1
+libapache-auth-ldap 1
+flyspray 1
+wine 1
+unalz 1
+libmail-audit-perl 1
+pdfkit 11
+pdftohtml 9
+mydns 2
+ipsec-tools 5
+adzapper 1
+elog 11
+scponly 4
+kronolith 1
+otrs 3
+nfs-user-server 1
+libast2 1
+tutos 2
+libtasn1 1
+gnutls28 19
+tar 5
+bluez-hcidump 1
+zoo 1
+ffmpeg 65
+freeciv 2
+libcrypt-cbc-perl 1
+bomberclone 3
+lurker 3
+libapreq2-perl 1
+crossfire 2
+xpvm 1
+vlc 41
+wzdftpd 2
+ilohamail 1
+util-vserver 2
+snmptrapfmt 1
+firebird3.0 20
+flex 2
+storebackup 3
+kaffeine 1
+libimager-perl 2
+libphp-adodb 4
+moodle 52
+fcheck 1
+bsdgames 1
+blender 3
+gdm 1
+abc2ps 1
+abcmidi 1
+resmgr 1
+asterisk 55
+cgiirc 2
+CVE-2017-16227
+quagga 25
+popfile 1
+kphone 1
+hostapd 2
+fbi 2
+nagios 7
+dovecot 10
+motor 1
+lynx-cur 2
+xmcd 1
+freeradius 15
+fusionforge 13
+CVE-2017-8287
+freetype 57
+wv2 1
+pinball 1
+libreoffice 52
+ppp 3
+rssh 4
+hashcash 1
+gimp 13
+hiki 2
+postgrey 1
+libnet-server-perl 1
+libdumb 1
+osiris 1
+sitebar 7
+libtunepimp 1
+ncompress 2
+streamripper 3
+libmusicbrainz 1
+capi4hylafax 1
+cheesetracker 1
+gcc 1
+isakmpd 1
+usermin 1
+alsaplayer 2
+migrationtools 1
+maxdb-7.5.00 1
+libwmf 6
+qt-x11-free 3
+ingo1 1
+flexbackup 1
+linux-ftpd 1
+texinfo 2
+libgsf[]
+libgsf 0
+links 1
+elinks 4
+l2tpns 1
+enemies-of-carlotta 1
+sql-ledger 3
+links2 2
+evince 6
+libapache-mod-auth-kerb 1
+libsoup 2
+netrik 1
+libgtop2 1
+gnomemeeting 1
+libwpd 1
+lookup-el 1
+nas 8
+xmms 2
+aircrack-ng 1
+CVE-2015-7549
+qemu 100
+wordpress 130
+ldap-account-manager 2
+qt4-x11 11
+otrs2 12
+iceape 178
+lighttpd 28
+icedove 413
+xulrunner 211
+postgresql-9.6 59
+libapache-mod-jk 3
+mplayer 11
+open-iscsi 2
+libphp-phpmailer 3
+tinymux 1
+maradns 5
+evolution-data-server 4
+fireflier-server 1
+gsambad 1
+unicon-imc2 1
+gfax 1
+libcurl3-gnutls 1
+xfs 2
+poppler 18
+bochs 1
+postfix-policyd 1
+vim 9
+id3lib3.8.3 1
+librpcsecgss 2
+phpwiki 3
+ktorrent 1
+jffnms 3
+xen 133
+wesnoth 4
+t1lib 7
+xfce4-terminal 1
+reprepro 1
+mono 5
+perdition 1
+ruby-defaults 2
+tk8 2
+hsqldb 1
+zabbix 5
+e2fsprogs 3
+libnss-ldap 1
+link-grammar 1
+typo3-src 63
+inotify-tools 1
+peercast 2
+libsndfile 5
+tcpreen 1
+eggdrop 2
+libarchive1 3
+fail2ban 4
+hplip 6
+apt-listchanges 1
+flac 4
+libvorbis 9
+exiv2 1
+pulseaudio 3
+yarssr 1
+python-cherrypy 1
+gnatsweb 1
+wml 2
+sdl-image1.2 2
+nagios-plugins 2
+dspam 1
+alsa-driver 1
+turba2 1
+diatheke 1
+gs-esp 1
+gs-gpl 1
+libicu[]
+libicu 0
+moin 24
+libnet-dns-perl 3
+ldapscripts 1
+smarty 3
+ikiwiki 10
+xwine 2
+debian-goodies 1
+serendipity 3
+policyd-weight 2
+exiftags 3
+mapserver 13
+libcairo 1
+pdns-recursor 7
+gnumeric 1
+suphp 1
+roundup 2
+phpgedview 2
+kronolith2 1
+ldm 1
+b2evolution 1
+kazehakase 10
+rdesktop 3
+gnome-peercast 2
+libfishsound 1
+speex 1
+libxslt 10
+mt-daapd 3
+libtk-img 3
+dbus 15
+afuse 1
+refpolicy 1
+python-dns 2
+newsx 1
+dnsmasq 10
+httrack 1
+opensc 2
+slash 2
+wordnet 2
+git-core 6
+twiki 1
+python-django 45
+feta 1
+mon 1
+libspf2 1
+libcdaudio 1
+hf 1
+jailer 1
+flamethrower 1
+lcms 5
+no-ip 1
+courier-authlib 2
+proftpd-dfsg 12
+avahi 5
+php-xajax 1
+xterm 1
+zaptel 2
+lasso 1
+netatalk 1
+amarok 2
+ganglia-monitor-core 1
+rt2400 1
+rt2500 1
+rt2570 1
+vnc4 1
+devil 1
+boinc 1
+libpam-krb5 2
+libpam-heimdal 1
+websvn 4
+python-crypto 3
+dkim-milter[]
+dkim-milter 0
+gst-plugins-bad0.10 5
+ndiswrapper 1
+znc 2
+mahara 28
+mldonkey 1
+yaws 1
+psi 1
+weechat 4
+CVE-2017-8291
+ghostscript 31
+glib2.0 1
+webcit 1
+systemtap 4
+auth2db 3
+nss-ldapd 1
+strongswan 16
+openswan 6
+icu 27
+tunapie 2
+multipath-tools 1
+openjdk-8 262
+imp4 4
+udev 2
+ejabberd 4
+php-json-ext 1
+slurm-llnl[]
+slurm-llnl 0
+apt 10
+libdbd-pg-perl 3
+acpid 5
+drupal7 57
+ldns 2
+pango1.0 3
+nsd 3
+pidgin 41
+apr-util 3
+libtorrent-rasterbar 1
+ctorrent 1
+amule 1
+ipplan 1
+ocsinventory-agent 1
+sork-passwd-h3 1
+djbdns 1
+camlimages 3
+fckeditor 2
+gst-plugins-good0.10 4
+openexr 3
+xml-security-c 8
+libmodplug 11
+memcached 6
+apr 2
+subversion 18
+nss 32
+devscripts 10
+silc-client/silc-toolkit 3
+xapian-omega 1
+nginx 12
+rails 33
+wxwindows2.4 1
+wxwidgets2.6 1
+wxwidgets2.8 1
+changetrack 1
+newt 1
+xmltooling 1
+opensaml 3
+shibboleth-sp 4
+mediawiki 30
+graphicsmagick 26
+pygresql 1
+mimetex 2
+expat 11
+libhtml-parser-perl 1
+nspr 6
+php-mail[]
+php-mail 0
+request-tracker4 40
+belpic 1
+shibboleth-sp2 2
+opensaml2 2
+php-net-ping 1
+webkit 27
+firefox-sage 1
+network-manager 1
+aria2 2
+libtool 1
+ganeti 3
+unbound 5
+transmission 2
+libthai 1
+audiofile 14
+dokuwiki 8
+ircd-hybrid/ircd-ratbox 2
+hybserv 1
+libxerces2-java 1
+trac-git 1
+chrony 8
+ajaxterm 1
+polipo 2
+dpkg 7
+drbd8[]
+drbd8 0
+spamass-milter[]
+spamass-milter 0
+jasper 21
+iscsitarget 1
+libtheora 1
+dvipng 1
+barnowl 2
+zonecheck 2
+pcsc-lite 2
+pmount 1
+kvirc 3
+python-cjson 1
+libmikmod 3
+mlmmj 1
+gmime2.2 1
+socat 1
+lxr-cvs 3
+smbind 1
+couchdb 1
+cvsnt 1
+collectd 2
+CVE-2017-0380
+tor 17
+libapache2-mod-fcgid 3
+libsmi 1
+mydms 1
+pimd 1
+pcscd 1
+CVE-2017-5087
+CVE-2017-5088
+CVE-2017-5089
+CVE-2017-5091
+CVE-2017-5092
+CVE-2017-5093
+CVE-2017-5094
+CVE-2017-5095
+CVE-2017-5097
+CVE-2017-5098
+CVE-2017-5099
+CVE-2017-5100
+CVE-2017-5101
+CVE-2017-5102
+CVE-2017-5103
+CVE-2017-5104
+CVE-2017-5105
+CVE-2017-5106
+CVE-2017-5107
+CVE-2017-5108
+CVE-2017-5109
+CVE-2017-5110
+CVE-2017-5111
+CVE-2017-5112
+CVE-2017-5113
+CVE-2017-5114
+CVE-2017-5115
+CVE-2017-5116
+CVE-2017-5117
+CVE-2017-5118
+CVE-2017-5119
+CVE-2017-5120
+CVE-2017-5121
+CVE-2017-5122
+chromium-browser 570
+telepathy-gabble 1
+pywebdav 1
+dtc 9
+logwatch 1
+isc-dhcp 9
+libcgroup 2
+CVE-2017-1000256
+libvirt 11
+tex-common 1
+gdm3 1
+tgt 1
+tmux 1
+x11-xserver-utils 1
+gitolite[]
+gitolite 0
+xmlsec1 1
+libmojolicious-perl 4
+doctrine 1
+spip 20
+zodb 2
+vino 2
+jabberd14 1
+citadel 1
+fontforge 9
+oprofile 1
+fex 2
+redmine 8
+movabletype-opensource 14
+libapache2-mod-authnz-external 1
+opie 3
+krb5-appl 2
+libxfont 10
+ca-certificates[]
+ca-certificates 0
+bcfg2 2
+vsftpd 2
+puppet 27
+policykit-1 1
+radvd 3
+kfreebsd-10 17
+libfcgi-perl 1
+torque 5
+simplesamlphp[]
+simplesamlphp 0
+python-django-piston 1
+clearsilver 1
+mojarra 1
+chasen 1
+libsoup2.4 2
+inetutils 2
+ipmitool 1
+foomatic-filters 4
+ecryptfs-utils 7
+openttd 5
+bip 1
+xen-qemu-dm-4.0 4
+mumble 3
+libarchive 27
+notmuch[]
+notmuch 0
+libxml-atom-perl[]
+libxml-atom-perl 0
+plib 1
+python-pam 1
+libyaml-libyaml-perl 4
+gnash 3
+raptor 1
+libtasn1-3 5
+openarena 1
+tryton-server 5
+inspircd 6
+sqlalchemy 1
+gajim 4
+libjakarta-poi-java 1
+gridengine 1
+pidgin-otr 2
+arpwatch 1
+libgdata 1
+nut 1
+openconnect 2
+libspring-2.5-java 1
+zendframework 14
+libapache-mod-security 2
+extplorer 2
+globus-gridftp-server 1
+libotr 2
+libapache2-mod-rpaf[]
+libapache2-mod-rpaf 0
+pcp 4
+rtfm 2
+beaker 1
+bacula 1
+cups-pk-helper 1
+viewvc 5
+libproxy 1
+radsecproxy 2
+trousers 1
+libssh 6
+bogofilter 1
+libcgi-pm-perl 1
+virtualbox-ose 1
+ganglia 1
+ircd-ratbox 1
+libupnp 10
+ircd-hybrid 1
+polarssl 11
+nss-pam-ldapd 1
+openjpeg 7
+zoneminder 2
+libapache2-mod-perl2 1
+smokeping 2
+icinga 6
+tinc 1
+stunnel4 2
+libdmx 1
+libxv 2
+libxvmc 2
+libxfixes 1
+libxrender 1
+mesa 2
+libxt 2
+libxcursor 1
+libxext 1
+libxi 3
+libxrandr 1
+libxp 1
+libxcb 1
+libfs 1
+libxres 1
+libxtst 1
+libxxf86dga 2
+libxinerama 1
+libxxf86vm 1
+libx11 4
+pymongo 1
+haproxy 4
+php-radius 1
+libgcrypt11 5
+putty 6
+swift 2
+exactimage 2
+pyopenssl 1
+davfs2 1
+icedtea-web 1
+systemd 3
+ruby-rack 4
+roundcube 2
+tryton-client 1
+libav 47
+libhttp-body-perl 1
+sup-mail 2
+varnish 3
+munin 3
+libtar 2
+pixman 2
+denyhosts 1
+libcommons-fileupload-java 3
+spice 10
+srtp 2
+libspring-java 5
+djvulibre 1
+libyaml 3
+libgadu 2
+parcimonie 1
+udisks 1
+cups-filters 7
+virtualbox 16
+libxalan2-java 1
+postfixadmin 1
+prosody 3
+jbigkit 1
+ []
+  0
+libmms 1
+xbuffy 1
+rxvt-unicode 1
+mod-wsgi 2
+libstruts1.2-java 2
+lxml 1
+chkrootkit 1
+python-gnupg 4
+python-bottle 2
+CVE-2017-14685
+CVE-2017-14686
+CVE-2017-14687
+mupdf 10
+lucene-solr 3
+iodine 1
+libemail-address-perl 2
+acpi-support 2
+modsecurity-apache 1
+lzo2 1
+reportbug 1
+gpgme1.0 1
+python-imaging 1
+s3ql 1
+lua5.1 1
+lua5.2 1
+php-cas 1
+bash 2
+rsyslog 2
+wpa 22
+quassel 2
+libxml-security-java 1
+konversation 1
+libksba 1
+libvncserver 7
+getmail4 3
+c-icap 2
+bsd-mailx 1
+heirloom-mailx 2
+pyyaml 1
+libevent 5
+binutils 8
+rpm 2
+lsyncd 1
+xdg-utils 2
+privoxy 5
+requests 2
+condor 1
+unrtf 2
+libgtk2-perl[]
+libgtk2-perl 0
+mod-gnutls 1
+unace 1
+libssh2 2
+checkpw 1
+xerces-c 4
+batik 1
+dulwich 2
+freexl 5
+arj 3
+wesnoth-1.10 1
+libdbd-firebird-perl 1
+das-watchdog 1
+django-markupfield 1
+icecast2 1
+elasticsearch 1
+libxml-libxml-perl 1
+owncloud 11
+libphp-snoopy 1
+jqueryui 1
+sqlite3 3
+suricata 1
+zeromq3 1
+libtasn1-6 3
+mercurial 8
+libmodule-signature-perl 4
+ntfs-3g 2
+symfony 5
+redis 3
+p7zip 2
+cinder 1
+pyjwt 1
+libcrypto++ 2
+unattended-upgrades 1
+jackrabbit 2
+tidy 2
+mariadb-10.1 85
+lxc 3
+activemq 2
+conntrack 1
+twig 1
+openslp-dfsg 1
+libvdpau 3
+vzctl 1
+owncloud-client 1
+rpcbind 1
+miniupnpc 1
+freeimage 3
+libcommons-collections3-java[]
+libcommons-collections3-java 0
+bouncycastle 2
+grub2 1
+blueman 1
+git 6
+xscreensaver 1
+pygments 1
+claws-mail 1
+radicale 2
+libgcrypt20 5
+graphite2 26
+xdelta3 1
+didiwiki 1
+xymon 5
+php-horde-core 1
+pillow 5
+bsh 1
+libmatroska 1
+openvswitch 1
+kamailio 1
+libebml 3
+lhasa 1
+oar 1
+cgit 3
+optipng 3
+fuseiso 2
+tardiff 2
+botan1.10 7
+libpam-sshauth 1
+CVE-2017-7957
+libxstream-java 2
+jansson 1
+libidn 4
+libndp 1
+swift-plugin-s3 1
+librsvg 2
+atheme-services 1
+libpdfbox-java 1
+horizon 2
+libdbd-mysql-perl 3
+fontconfig 1
+charybdis 1
+openjpeg2 18
+irssi 4
+unadf 2
+c-ares 1
+kdepimlibs 1
+mat[]
+mat 0
+terminology 1
+akonadi[]
+akonadi 0
+gst-plugins-bad1.0 5
+gst-plugins-good1.0 8
+hdf5 4
+game-music-emu[]
+game-music-emu 0
+flightgear 1
+dcmtk 1
+icoutils 7
+python-pysaml2 1
+rabbitmq-server 1
+libphp-swiftmailer 1
+libxpm 1
+lcms2 1
+svgsalamander 1
+tnef 5
+libquicktime 1
+texlive-base 1
+ioquake3 2
+r-base 1
+jbig2dec 4
+gst-plugins-base1.0 5
+gst-plugins-ugly1.0 2
+gstreamer1.0 1
+eject 1
+jhead 1
+libtirpc 1
+libytnef 12
+rtmpdump 3
+bitlbee 2
+deluge 2
+fop 1
+mosquitto 1
+zookeeper 1
+libmwaw 1
+zziplib 7
+libosip2 4
+rt-authen-externalauth 1
+libffi 1
+jython 1
+flatpak 1
+jabberd2 1
+undertow 2
+knot 1
+atril 1
+freerdp 6
+pjproject 2
+iortcw 1
+supervisor 1
+libmspack 2
+CVE-2017-14500
+newsbeuter 2
+augeas 1
+libraw 2
+smb4k 1
+aodh 1
+connman 1
+mbedtls 1
+bluez 1
+wordpress-shibboleth 1
+libidn2-0 1
+CVE-2017-14604
+nautilus 1
+CVE-2017-14339
+yadifa 1
+jackson-databind 1
+openjfx 2
+CVE-2017-15924
+shadowsocks-libev 1
+git-annex 1

+ 15 - 14
lstm_reg.py

@@ -54,10 +54,11 @@ def predict(src2month, src2sloccount, src2pop, src2deps):
     feat_num = 1
     
     ## Model parameters
+    do_train = False
     num_steps = 9
     smoothing = num_steps
     num_neurons = 10
-    look_back = 1
+    look_back = 3
     train_flag = True
     test_flag = True
     lamda_w = 12
@@ -80,6 +81,7 @@ def predict(src2month, src2sloccount, src2pop, src2deps):
     # create the LSTM network
     model = Sequential()
     model.add(LSTM(num_neurons, batch_input_shape = (batch_num, look_back, feat_num) , activation ='relu', dropout_W=0.5, stateful=True))
+#    model.add((keras.layers.0, recurrent_dropout=0.4, implementation=1, return_sequences=False, return_state=False, go_backwards=False, stateful=True, unroll=False))
 #    model.add(Dense(32, activation='relu'))
 #    model.add(Dense(16, activation='relu'))
     model.add(Dense(1))
@@ -196,15 +198,14 @@ def predict(src2month, src2sloccount, src2pop, src2deps):
 
     
                 # fit the LSTM network
-                for i in range (10000):
-                    model.fit(trainX, trainY, nb_epoch=1, batch_size=len(trainX), verbose=2, shuffle=False)
-                    model.reset_states()
-   #            
-                #if (sum(dataset)>80):
-                try:
-                    model.save('./models/' + pkg_name + '-' + str(num_steps) + 'smoothing' + str(smoothing) + '.h5')
-                except OSError:
-                    model.save('./models/unknown-' + str(num_steps) + 'smoothing' + str(smoothing) + '.h5')
+                if do_train:
+                    for i in range (20000):
+                        model.fit(trainX, trainY, nb_epoch=1, batch_size=len(trainX), verbose=2, shuffle=False)
+                        model.reset_states()
+                    try:
+                        model.save('./models/' + pkg_name + '-' + str(num_steps) + 'smoothing' + str(smoothing) + '.h5')
+                    except OSError:
+                        model.save('./models/unknown-' + str(num_steps) + 'smoothing' + str(smoothing) + '.h5')
                 #else:    
                 #    try:
                 #        model.save('./moels/low_together' + '-' + str(num_steps) + 'smoothing' + str(smoothing) + '.h5')
@@ -373,10 +374,10 @@ def predict(src2month, src2sloccount, src2pop, src2deps):
             w_av_pred = w_averagear_test[-1]*num_steps
             #print(real_values)
 
-            #plt.plot(real_values)
-            #plt.plot(training_fit)
-            #plt.plot(prediction)
-            #plt.show()
+            plt.plot(real_values)
+            plt.plot(training_fit)
+            plt.plot(prediction)
+            plt.show()
             
             ## Caclulate better predictor
             best = -1

BIN
models/apache2-9smoothing9.h5


BIN
models/asterisk-9smoothing9.h5


BIN
models/bind9-9smoothing9.h5


BIN
models/cacti-9smoothing9.h5


BIN
models/chromium-browser-9smoothing9.h5


BIN
models/clamav-9smoothing9.h5


BIN
models/cups-9smoothing9.h5


BIN
models/curl-9smoothing9.h5


BIN
models/drupal7-9smoothing9.h5


BIN
models/ffmpeg-9smoothing9.h5


BIN
models/firefox-esr-9smoothing9.h5


BIN
models/freetype-9smoothing9.h5


BIN
models/glibc-9smoothing9.h5


BIN
models/iceape-9smoothing9.h5


BIN
models/icedove-9smoothing9.h5


BIN
models/imagemagick-9smoothing9.h5


BIN
models/krb5-9smoothing9.h5


BIN
models/libav-9smoothing9.h5


BIN
models/libgd2-9smoothing9.h5


BIN
models/libpng1.6-9smoothing9.h5


BIN
models/libreoffice-9smoothing9.h5


BIN
models/libxml2-9smoothing9.h5


BIN
models/linux-9smoothing9.h5


BIN
models/mantis-9smoothing9.h5


BIN
models/mariadb-10.1-9smoothing9.h5


BIN
models/mediawiki-9smoothing9.h5


BIN
models/moodle-9smoothing9.h5


BIN
models/mysql-transitional-9smoothing9.h5


BIN
models/nss-9smoothing9.h5


BIN
models/ntp-9smoothing9.h5


BIN
models/openjdk-8-9smoothing9.h5


BIN
models/openssl-9smoothing9.h5


BIN
models/php7.0-9smoothing9.h5


BIN
models/phpmyadmin-9smoothing9.h5


BIN
models/pidgin-9smoothing9.h5


BIN
models/postgresql-9.6-9smoothing9.h5


BIN
models/python-django-9smoothing9.h5


BIN
models/qemu-9smoothing9.h5


BIN
models/rails-9smoothing9.h5


BIN
models/request-tracker4-9smoothing9.h5


BIN
models/ruby2.3-9smoothing9.h5


BIN
models/samba-9smoothing9.h5


BIN
models/squid3-9smoothing9.h5


BIN
models/squirrelmail-9smoothing9.h5


BIN
models/tcpdump-9smoothing9.h5


BIN
models/tiff-9smoothing9.h5


BIN
models/tomcat8-9smoothing9.h5


BIN
models/typo3-src-9smoothing9.h5


BIN
models/vlc-9smoothing9.h5


BIN
models/wireshark-9smoothing9.h5


BIN
models/wordpress-9smoothing9.h5


BIN
models/xen-9smoothing9.h5


BIN
models/xorg-server-9smoothing9.h5


BIN
models/xpdf-9smoothing9.h5


BIN
models/xulrunner-9smoothing9.h5


+ 31 - 55
results_paper9.txt

@@ -1,55 +1,31 @@
-request-tracker4,1.66666666667,0.16977014092,0.148351779249,0.362517508172,1, 174, 7, 4.0, 2.0320469141, 2.25, 5.82595791914
-tiff,5.44444444444,0.641476040568,0.672745388212,0.66300465879,0, 174, 7, 46.0, 3.47781416774, 2.35, 2.8974488222
-chromium-browser,16.4444444444,0.319962087646,0.852279105548,0.464829311599,0, 174, 7, 87.0, 81.9463262558, 9.95, 69.4293552927
-clamav,0.0,inf,inf,inf,2, 174, 7, 0.0, 1.08985984325, 2.6, 0.0460936654695
-mariadb-10.1,3.11111111111,0.703647839085,0.838009233373,0.838009233373,0, 174, 7, 22.0, 3.36345201731, 0.0, 0.0
-openssl,2.66666666667,0.351652628404,0.413806980934,0.266576871845,2, 174, 7, 3.0, 5.34726262093, 4.75, 9.16023691398
-xorg-server,1.44444444444,0.185692816973,0.187140618652,0.104206899172,2, 174, 7, 0.0, 2.41400662065, 2.9, 1.35468968924
-postgresql-9.6,1.88888888889,0.256360574444,0.0433836518725,0.494117207642,1, 174, 7, 3.0, 6.36892676353, 2.8, 10.6735502921
-phpmyadmin,0.777777777778,0.472877635329,0.527540773593,0.556432456569,0, 174, 7, 0.0, 4.61861371994, 2.75, 2.21920330822
-qemu,4.22222222222,0.655860863136,0.059736899327,0.103538999597,1, 174, 7, 0.0, 23.061255455, 3.2, 4.4007655842
-iceape,0.0,inf,inf,inf,0, 174, 7, 0.0, 5.51956558228, 8.9, 6.61814781983
-mediawiki,2.55555555556,0.0743924664414,0.0834164958765,0.536886457069,0, 174, 7, 0.0, 1.71102672815, 2.05, 12.3483885126
-squid3,1.0,0.338225853258,0.347360948133,0.406389983155,0, 174, 7, 1.0, 2.33108264208, 1.65, 0.503497987538
-mysql-transitional,2.0,0.452584587292,0.825343136975,0.308463202555,2, 174, 7, 27.0, 16.7504843473, 7.9, 22.5032732231
-xulrunner,0.0,inf,inf,inf,2, 174, 7, 0.0, 2.95166051388, 10.55, 1.3426493327
-mantis,2.22222222222,0.150726574659,0.112729055073,0.113800635668,1, 174, 7, 0.0, 3.01453149319, 2.75, 2.27601271335
-squirrelmail,0.111111111111,1.17692239796,1.25623760288,0.528332100425,2, 174, 7, 1.0, 1.49639555812, 1.55, 0.243539406598
-pidgin,1.88888888889,0.676157487839,0.677297738393,0.486710746085,2, 174, 7, 1.0, 2.55115628242, 1.2, 6.33801265622
-libgd2,2.33333333333,0.692979380875,0.697032140365,0.701200604334,0, 174, 7, 9.0, -0.898090280592, 0.65, 0.570872787274
-cups,0.777777777778,0.467050258602,0.424484471303,0.294733002179,2, 174, 7, 0.0, 3.26935181022, 2.95, 2.06313101526
-xen,2.44444444444,0.438590451402,0.469287808135,0.107067229785,2, 174, 7, 11.0, 19.8562731743, 3.05, 12.1030276517
-samba,1.33333333333,0.435688326813,0.358343102496,0.272642577581,2, 174, 7, 5.0, 1.28399866819, 2.15, 3.6735214084
-nss,0.666666666667,0.395705819522,0.163889057066,0.397206653445,1, 174, 7, 3.0, 2.94456982613, 0.85, 3.02514670463
-libav,2.88888888889,0.436651398784,0.0400366717916,0.342805234422,1, 174, 7, 3.0, 14.9892675877, 1.6, 11.1711312098
-drupal7,1.55555555556,0.286582687848,0.0862459946676,0.352826919084,1, 174, 7, 4.0, 6.05917453766, 1.9, 7.60403250817
-ruby2.3,1.44444444444,0.116788976882,0.157713329987,0.398867775065,0, 174, 7, 2.0, 2.51046395302, 3.5, 6.56243231397
-glibc,1.33333333333,0.192275575258,0.111799057097,0.0535646398517,2, 174, 7, 1.0, 2.46074679494, 1.6, 0.682033916207
-cacti,1.11111111111,0.212416897502,0.187508634082,0.511470350308,1, 174, 7, 0.0, 1.9419106096, 1.9, 5.11470350308
-bind9,1.0,0.541417886021,0.493759181364,0.574341082714,1, 174, 7, 8.0, 2.01059058309, 2.5, 1.71167125173
-krb5,1.0,0.431325235178,0.439893155358,0.0773119821668,2, 174, 7, 0.0, 3.9055146575, 3.95, 0.695807839501
-tcpdump,4.55555555556,0.897602524258,0.904307637972,0.925783069758,0, 174, 7, 41.0, 1.25290811062, 1.05, 0.00163988194492
-wordpress,2.22222222222,0.412749351535,0.666101055317,0.488033339029,0, 174, 7, 19.0, 8.46560204029, 3.6, 7.01621175181
-imagemagick,8.55555555556,0.787834328086,0.723055258158,0.711067414979,2, 174, 7, 46.0, -18.7326571941, 1.9, 2.87167337062
-moodle,0.0,inf,inf,inf,2, 174, 7, 0.0, 1.72223380208, 2.8, 1.28611916126
-rails,0.222222222222,1.58467282334,0.317102867052,0.884916295697,1, 174, 7, 0.0, 3.74270403385, 1.15, 2.42549165423
-curl,1.11111111111,1.09893127129,1.13942613158,0.904466127447,2, 174, 7, 10.0, 2.28257060051, 0.9, 3.20030924664
-openjdk-8,10.0,0.18025687931,0.1014783951,0.316407004145,1, 174, 7, 23.0, 25.5578362942, 11.6, 47.1131116889
-libxml2,1.77777777778,0.510192993087,0.487214205491,0.479812547215,2, 174, 7, 0.0, 1.20098188519, 1.25, 1.41934163075
-icedove,3.22222222222,0.348279957426,0.471334492494,0.404773435942,0, 174, 7, 32.0, 25.5129060745, 12.9, 31.8420377005
-libreoffice,0.555555555556,0.676227206018,0.152981285143,0.16460281612,1, 174, 7, 2.0, 4.66814017296, 2.15, 0.913816058104
-asterisk,0.333333333333,0.516782621543,0.480417892121,0.584460464549,1, 174, 7, 1.0, 2.55034786463, 2.4, 2.75338139365
-python-django,0.777777777778,0.298901269801,0.347258999949,0.34682245916,0, 174, 7, 4.0, 5.39708465338, 1.4, 5.48296567091
-libpng1.6,0.222222222222,1.17336327947,0.940858170692,0.219523222445,2, 174, 7, 0.0, 2.28111067414, 1.85, 0.43904644489
-vlc,0.666666666667,0.252350669687,0.236016207017,0.219333605936,2, 174, 7, 4.0, 1.80059480667, 1.5, 1.13256919199
-linux,2.66666666667,0.984272829811,0.891769977691,0.374191689121,2, 174, 7, 41.0, 59.0351200104, 57.95, 44.4874441972
-xpdf,0.0,inf,inf,inf,2, 174, 7, 0.0, 2.0662997961, 2.35, 0.131147436173
-wireshark,3.0,0.494323607248,0.685356104417,0.51193359201,0, 174, 7, 15.0, 14.1122646332, 8.7, 13.4671561965
-ffmpeg,0.0,inf,inf,inf,0, 174, 7, 0.0, 1.2661741823, 2.4, 2.70917523258
-typo3-src,0.888888888889,0.231062114239,0.48314338495,0.820379809825,0, 174, 7, 0.0, 1.84849691391, 3.8, 6.5630384786
-apache2,0.888888888889,0.287263920887,0.275272660438,0.371493742881,1, 174, 7, 8.0, 4.01619654894, 3.45, 1.42453551737
-firefox-esr,5.88888888889,0.369646142627,0.506645037659,0.42201655634,0, 174, 7, 60.0, 42.753493309, 33.1, 38.4753537559
-php7.0,5.66666666667,0.570847447962,0.616693862301,0.617920064799,0, 174, 7, 9.0, 13.211725831, 8.6, 8.34342058844
-tomcat8,3.0,0.897171419181,0.849258916698,0.645217081744,2, 174, 7, 28.0, 0.544591158628, 2.55, 8.12997301026
-ntp,2.55555555556,1.28472431243,0.318735095765,0.327865827041,1, 174, 7, 0.0, 14.5997915268, 0.5, 0.024330673332
-freetype,2.11111111111,0.136636534682,0.08412268186,0.0821754560511,2, 174, 7, 3.0, 2.81603139639, 1.8, 0.802308472013
+php7.0,0.0,inf,inf,inf,2, 172, 5, 0.0, 6.33956891298, 6.08522727273, 2.13253343492
+apache2,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.15923893452, 2.04545454545, 0.66805539544
+bind9,0.0,inf,inf,inf,2, 172, 5, 0.0, 3.52079495788, 2.14772727273, 0.565328136681
+xorg-server,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.14891430736, 2.14772727273, 0.0958422085578
+linux,0.0,inf,inf,inf,2, 172, 5, 0.0, 27.8348321915, 27.3579545455, 7.00252165467
+samba,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.07630690932, 1.84090909091, 0.419222298113
+cups,0.0,inf,inf,inf,2, 172, 5, 0.0, 3.5355527401, 2.55681818182, 0.270861409056
+wireshark,0.0,inf,inf,inf,2, 172, 5, 0.0, 2.97153005004, 5.67613636364, 1.23851091002
+openssl,0.0,inf,inf,inf,2, 172, 5, 0.0, 2.4051733017, 2.60795454545, 1.11395674757
+libpng1.6,0.0,inf,inf,inf,2, 172, 5, 0.0, 2.16252833605, 1.58522727273, 0.51851078743
+krb5,0.0,inf,inf,inf,2, 172, 5, 0.0, 3.37359505892, 3.17045454545, 0.533789735212
+mantis,0.0,inf,inf,inf,2, 172, 5, 0.0, 3.17739093304, 1.94318181818, 0.804236774053
+tomcat8,0.0,inf,inf,inf,2, 172, 5, 0.0, 0.89970651269, 1.6875, 0.847645623387
+squirrelmail,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.624612391, 1.58522727273, 0.287707840244
+xpdf,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.43476831913, 1.94318181818, 0.153539283112
+imagemagick,0.0,inf,inf,inf,0, 172, 5, 0.0, 0.263301327825, 1.73863636364, 0.832116977889
+clamav,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.11232709885, 2.65909090909, 0.0544532366503
+firefox-esr,0.0,inf,inf,inf,2, 172, 5, 0.0, 6.17971301079, 15.6988636364, 4.3291548593
+mysql-transitional,0.0,inf,inf,inf,2, 172, 5, 0.0, 3.32139873505, 3.63068181818, 2.83370621708
+phpmyadmin,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.07605531812, 2.30113636364, 0.647823234461
+ffmpeg,0.0,inf,inf,inf,0, 172, 5, 0.0, 0.606434851885, 2.04545454545, 2.15033621739
+moodle,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.51682782173, 2.65909090909, 1.35007290634
+asterisk,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.08788627386, 1.99431818182, 0.999730851447
+freetype,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.32499288023, 1.78977272727, 0.947102337894
+libreoffice,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.0574297905, 2.04545454545, 0.803932018918
+wordpress,0.0,inf,inf,inf,2, 172, 5, 0.0, 1.32163207233, 2.19886363636, 1.29940972155
+iceape,0.0,inf,inf,inf,2, 172, 5, 0.0, 4.01141524315, 7.82386363636, 4.00568014499
+icedove,0.0,inf,inf,inf,0, 172, 5, 0.0, 1.95500636101, 7.46590909091, 3.71744926151
+xulrunner,0.0,inf,inf,inf,2, 172, 5, 0.0, 2.16342902184, 10.7897727273, 1.58615291509
+typo3-src,0.0,inf,inf,inf,0, 172, 5, 0.0, 0.907962083817, 2.14772727273, 0.908337504225
+openjdk-8,0.0,inf,inf,inf,0, 172, 5, 0.0, 0.896175384521, 3.11931818182, 3.22841564633

Some files were not shown because too many files changed in this diff