Skip to content

Commit 9abbce3

Browse files
Rename secure_design.png -> a_secure_design.png
Rename files so that they don't all start with 'secure...". This makes file completion more convenient. Signed-off-by: David A. Wheeler <[email protected]>
1 parent 0eaa794 commit 9abbce3

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed
File renamed without changes.

secure_software_development_fundamentals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ You can use JavaScript securely, you just need to do it correctly. You can send
916916

917917
The following figure shows a similar but secure design; notice that all the security-related checks are being done in the server, since in this case that is the system we can trust. It also prevents direct database access, which is often a good idea if users do not need direct access:
918918

919-
![A More Secure Alternative of the JavaScript Application: In this figure some security-relevant input validation checks are run in a web browser, but all security checks are run by the web server, even if some were run in the browser earlier. Since the server in this case is trusted, this is a secure design. The database is not directly accessible by logged-in users; this is a good architecture, because direct access to the database is often unnecessary.](secure_design.png)
919+
![A More Secure Alternative of the JavaScript Application: In this figure some security-relevant input validation checks are run in a web browser, but all security checks are run by the web server, even if some were run in the browser earlier. Since the server in this case is trusted, this is a secure design. The database is not directly accessible by logged-in users; this is a good architecture, because direct access to the database is often unnecessary.](a_secure_design.png)
920920

921921
A More Secure Alternative of the JavaScript Application
922922

0 commit comments

Comments
 (0)