Add cross-link to "Secure Programming" book
This commit is contained in:
parent
4d5c3fe36c
commit
a6b3a1b24d
|
@ -320,5 +320,8 @@ Minimum risk level = 1
|
||||||
Not every hit is necessarily a security vulnerability.
|
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>
|
||||||
|
See '<a href="http://www.dwheeler.com/secure-programs">Secure Programming for Linux and Unix HOWTO</a>'
|
||||||
|
(<a href="http://www.dwheeler.com/secure-programs">http://www.dwheeler.com/secure-programs</a>) for more information.
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -149,6 +149,8 @@ Suppressed hits = 2 (use --neverignore to show them)
|
||||||
Minimum risk level = 1
|
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 for Linux and Unix HOWTO'
|
||||||
|
(http://www.dwheeler.com/secure-programs) for more information.
|
||||||
|
|
||||||
Testing for no ending newline:
|
Testing for no ending newline:
|
||||||
Lines analyzed = 32
|
Lines analyzed = 32
|
||||||
|
|
|
@ -1891,6 +1891,13 @@ def show_final_results():
|
||||||
if output_format:
|
if output_format:
|
||||||
print "<br>"
|
print "<br>"
|
||||||
print "There may be other security vulnerabilities; review your code!"
|
print "There may be other security vulnerabilities; review your code!"
|
||||||
|
if output_format:
|
||||||
|
print "<br>"
|
||||||
|
print "See '<a href=\"http://www.dwheeler.com/secure-programs\">Secure Programming for Linux and Unix HOWTO</a>'"
|
||||||
|
print "(<a href=\"http://www.dwheeler.com/secure-programs\">http://www.dwheeler.com/secure-programs</a>) for more information."
|
||||||
|
else:
|
||||||
|
print "See 'Secure Programming for Linux and Unix HOWTO'"
|
||||||
|
print "(http://www.dwheeler.com/secure-programs) for more information."
|
||||||
if output_format:
|
if output_format:
|
||||||
print "</body>"
|
print "</body>"
|
||||||
print "</html>"
|
print "</html>"
|
||||||
|
|
Loading…
Reference in New Issue