Update www.dwheeler.com URLs to use https

The www.dwheeler.com site has long supported https, but I forgot
to change these URLs. Fix that, so that people will use https.

Signed-off-by: David A. Wheeler <dwheeler@dwheeler.com>
This commit is contained in:
David A. Wheeler 2017-09-23 20:45:03 -04:00
parent 4d589859dc
commit 5aa1dec7f7
4 changed files with 15 additions and 15 deletions

View File

@ -9,8 +9,8 @@
<body> <body>
<h1>Flawfinder Results</h1> <h1>Flawfinder Results</h1>
Here are the security scan results from Here are the security scan results from
<a href="http://www.dwheeler.com/flawfinder">Flawfinder version 2.0.4</a>, <a href="https://www.dwheeler.com/flawfinder">Flawfinder version 2.0.4</a>,
(C) 2001-2017 <a href="http://www.dwheeler.com">David A. Wheeler</a>. (C) 2001-2017 <a href="https://www.dwheeler.com">David A. Wheeler</a>.
Number of rules (primarily dangerous function names) in C/C++ ruleset: 223 Number of rules (primarily dangerous function names) in C/C++ ruleset: 223
<p> <p>
Examining test.c <br> Examining test.c <br>
@ -322,7 +322,7 @@ Not every hit is necessarily a security vulnerability.
<br> <br>
There may be other security vulnerabilities; review your code! There may be other security vulnerabilities; review your code!
<br> <br>
See '<a href="http://www.dwheeler.com/secure-programs">Secure Programming HOWTO</a>' See '<a href="https://www.dwheeler.com/secure-programs">Secure Programming HOWTO</a>'
(<a href="http://www.dwheeler.com/secure-programs">http://www.dwheeler.com/secure-programs</a>) for more information. (<a href="https://www.dwheeler.com/secure-programs">https://www.dwheeler.com/secure-programs</a>) for more information.
</body> </body>
</html> </html>

View File

@ -151,7 +151,7 @@ Minimum risk level = 1
Not every hit is necessarily a security vulnerability. Not every hit is necessarily a security vulnerability.
There may be other security vulnerabilities; review your code! There may be other security vulnerabilities; review your code!
See 'Secure Programming HOWTO' See 'Secure Programming HOWTO'
(http://www.dwheeler.com/secure-programs) for more information. (https://www.dwheeler.com/secure-programs) for more information.
Testing for no ending newline: Testing for no ending newline:
Lines analyzed = 32 Lines analyzed = 32

View File

@ -1666,8 +1666,8 @@ def display_header():
print("<body>") print("<body>")
print("<h1>Flawfinder Results</h1>") print("<h1>Flawfinder Results</h1>")
print("Here are the security scan results from") print("Here are the security scan results from")
print('<a href="http://www.dwheeler.com/flawfinder">Flawfinder version %s</a>,' % version) print('<a href="https://www.dwheeler.com/flawfinder">Flawfinder version %s</a>,' % version)
print('(C) 2001-2017 <a href="http://www.dwheeler.com">David A. Wheeler</a>.') print('(C) 2001-2017 <a href="https://www.dwheeler.com">David A. Wheeler</a>.')
else: else:
print("Flawfinder version %s, (C) 2001-2017 David A. Wheeler." % version) print("Flawfinder version %s, (C) 2001-2017 David A. Wheeler." % version)
displayed_header = 1 displayed_header = 1
@ -2144,11 +2144,11 @@ def show_final_results():
print("There may be other security vulnerabilities; review your code!") print("There may be other security vulnerabilities; review your code!")
if output_format: if output_format:
print("<br>") print("<br>")
print("See '<a href=\"http://www.dwheeler.com/secure-programs\">Secure Programming HOWTO</a>'") print("See '<a href=\"https://www.dwheeler.com/secure-programs\">Secure Programming HOWTO</a>'")
print("(<a href=\"http://www.dwheeler.com/secure-programs\">http://www.dwheeler.com/secure-programs</a>) for more information.") print("(<a href=\"https://www.dwheeler.com/secure-programs\">https://www.dwheeler.com/secure-programs</a>) for more information.")
else: else:
print("See 'Secure Programming HOWTO'") print("See 'Secure Programming HOWTO'")
print("(http://www.dwheeler.com/secure-programs) for more information.") print("(https://www.dwheeler.com/secure-programs) for more information.")
if output_format: if output_format:
print("</body>") print("</body>")
print("</html>") print("</html>")

View File

@ -262,11 +262,11 @@ If you're getting an extraordinary number of false positives because
variable names look like dangerous function names, use the \-F option variable names look like dangerous function names, use the \-F option
to remove reports about them. to remove reports about them.
If you don't understand the error message, please see documents such as the If you don't understand the error message, please see documents such as the
.UR "http://www.dwheeler.com/secure-programs" .UR "https://www.dwheeler.com/secure-programs"
.I "Writing Secure Programs HOWTO" .I "Writing Secure Programs HOWTO"
.UE .UE
at at
http://www.dwheeler.com/secure-programs https://www.dwheeler.com/secure-programs
which provides more information on writing secure programs. which provides more information on writing secure programs.
.PP .PP
Once you identify the problem and understand it, you can fix it. Once you identify the problem and understand it, you can fix it.
@ -1030,7 +1030,7 @@ can be fixed.
However, developers and reviewers must However, developers and reviewers must
know how to develop secure software to use this tool, because otherwise, know how to develop secure software to use this tool, because otherwise,
\fIa fool with a tool is still a fool\fR. \fIa fool with a tool is still a fool\fR.
My book at http://www.dwheeler.com/secure-programs may help. My book at https://www.dwheeler.com/secure-programs may help.
.PP .PP
This tool should be, at most, a small part of a larger software This tool should be, at most, a small part of a larger software
development process designed development process designed
@ -1222,11 +1222,11 @@ Still, it can serve as a useful aid for humans, helping to identify
useful places to examine further, and that's the point of this simple tool. useful places to examine further, and that's the point of this simple tool.
.SH "SEE ALSO" .SH "SEE ALSO"
See the flawfinder website at http://www.dwheeler.com/flawfinder. See the flawfinder website at https://www.dwheeler.com/flawfinder.
You should also see the You should also see the
.I "Secure Programming HOWTO" .I "Secure Programming HOWTO"
at at
.IR "http://www.dwheeler.com/secure-programs" . .IR "https://www.dwheeler.com/secure-programs" .
.SH AUTHOR .SH AUTHOR
David A. Wheeler (dwheeler@dwheeler.com). David A. Wheeler (dwheeler@dwheeler.com).