convert all http URLs to https
Hanno Böck

Hanno Böck commited on 2017-09-25 15:00:33
Zeige 1 geänderte Dateien mit 7 Einfügungen und 7 Löschungen.

... ...
@@ -2,14 +2,14 @@
2 2
 
3 3
 # freewvs 0.1 - the free web vulnerability scanner
4 4
 #
5
-# http://source.schokokeks.org/freewvs/
5
+# https://source.schokokeks.org/freewvs/
6 6
 #
7
-# Written 2007-2012 by schokokeks.org Hosting, http://www.schokokeks.org
7
+# Written 2007-2012 by schokokeks.org Hosting, https://schokokeks.org
8 8
 #
9 9
 # Contributions by
10
-# Hanno Boeck, http://hboeck.de/
11
-# Fabian Fingerle, http://www.fabian-fingerle.de/
12
-# Bernd Wurst, http://bwurst.org/
10
+# Hanno Boeck, https://hboeck.de/
11
+# Fabian Fingerle, https://fabian-fingerle.de/
12
+# Bernd Wurst, https://bwurst.org/
13 13
 #
14 14
 # To the extent possible under law, the author(s) have dedicated all copyright
15 15
 # and related and neighboring rights to this software to the public domain
... ...
@@ -17,7 +17,7 @@
17 17
 #
18 18
 # You should have received a copy of the CC0 Public Domain Dedication along
19 19
 # with this software. If not, see
20
-# http://creativecommons.org/publicdomain/zero/1.0/
20
+# https://creativecommons.org/publicdomain/zero/1.0/
21 21
 # Nevertheless, in case you use a significant part of this code, we ask (but
22 22
 # not require, see the license) that you keep the authors' names in place and
23 23
 # return your changes to the public. We would be especially happy if you tell
... ...
@@ -71,7 +71,7 @@ def vulnprint(appname, version, safeversion, vuln, vfilename, subdir,
71 71
                 print(_("Vulnerable %(appname)s %(version)s found, no fixed "
72 72
                         "version available.") % vars())
73 73
             if vuln[:3] == "CVE":
74
-                print(_("http://cve.mitre.org/cgi-bin/cvename.cgi?name="
74
+                print(_("https://cve.mitre.org/cgi-bin/cvename.cgi?name="
75 75
                         "%(vuln)s") % vars())
76 76
             else:
77 77
                 print(vuln)
78 78