You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bu...@apache.org on 2021/06/06 08:21:31 UTC

svn commit: r1075468 - in /websites/staging/httpd/trunk/content: ./ security/cvejsontohtml.py

Author: buildbot
Date: Sun Jun  6 08:21:31 2021
New Revision: 1075468

Log:
Staging update by buildbot for httpd

Modified:
    websites/staging/httpd/trunk/content/   (props changed)
    websites/staging/httpd/trunk/content/security/cvejsontohtml.py

Propchange: websites/staging/httpd/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sun Jun  6 08:21:31 2021
@@ -1 +1 @@
-1890520
+1890521

Modified: websites/staging/httpd/trunk/content/security/cvejsontohtml.py
==============================================================================
--- websites/staging/httpd/trunk/content/security/cvejsontohtml.py (original)
+++ websites/staging/httpd/trunk/content/security/cvejsontohtml.py Sun Jun  6 08:21:31 2021
@@ -101,7 +101,7 @@ for sectioncves in sections:
     print ("\n<h1 id=\""+sectioncves["fixed"]+"\">Fixed in "+sectioncves["product"]+" "+sectioncves["fixed"]+"</h1><dl>\n")
     for e in sectioncves["cves"]:
         html = "<dt><h3 id=\""+e['cveid']+"\">"+e['impact']+": <name name=\""+e['cveid']+"\">"+saxutils.escape(e['title'])+"</name>\n";
-        html += "(<a href=\"http://cve.mitre.org/cgi-bin/cvename.cgi?name="+e['cveid']+"\">"+e['cveid']+"</a>)</h3></dt>\n";
+        html += "(<a href=\"https://cve.mitre.org/cgi-bin/cvename.cgi?name="+e['cveid']+"\">"+e['cveid']+"</a>)</h3></dt>\n";
         desc = saxutils.escape(e['desc'])
         desc = re.sub(r'\n','</p><p>', desc)
         html += "<dd><p>"+desc+"</p>\n"