...
As you read these, you'll find a number of common themes.
The SAFECode document lays things out very nicely into separate practices for Design, Coding, and Testing & Validation. Under Design, they discuss: Secure Design Principles, Threat modeling, Encryption Strategy, Standardize Identity and Access, and Establish Log and Audit Practices. Under Coding, they discuss: Coding Standards, Using safe functions only, Using code analysis tools, Handling data safely, and Error Handling. And under Testing, they discuss both Automated and Manual Testing.
The other documents are oriented specifically to coding. For example, OWASP has some nice good checklists in these categories:
OWASP Coding Practice Checklists | ||
---|---|---|
Input Validation | Error Handling and Logging | Cryptographic Practices |
Output Encoding | Data Protection | Memory Management |
Authentication and Password Management | Communication Security | File Management |
Session Management | System Configuration | General Coding Practices |
Access Control | Database Security | |
Cryptographic Practices | File Management | |
Memory Management | General Coding Practices | |
InvokingĀ External Processes
...
- Use full paths for the programs you are executing. Note: While this can be done for shell scripts, this is most useful for non-shell scripts. For example,
- shell (but see the note above):
/bin/ls -l file
- python:
subprocess.Popen(["/bin/ls", "-l", "file"],
...)
...
os.environ['PATH'] = '/sbin:/usr/sbin:/bin:/usr/bin'
- Make certain that the current directory ("
.
") and relative directories (those not starting with a "/
") are not at the beginning or middle of the PATH.- Both an empty path element ("
::
") and ":
./:
" are equivalent to including ".
". That is, "::
", ":.:
", andĀ ":./:
" are all equivalent. - A leading "
:
" is equivalent to a leading ".:
".
- Both an empty path element ("
- If you must depend on an externally-provided path, combine prepending known locations to the beginning of the PATH, with sanitizing the rest of it. For example, you can add a line to the beginning of your program such as:
- shell:
...
- You will have to write the sanitize() function. Some things to consider are:
- The current directory is dangerous in the PATH, except possibly at the end. So one thing your sanitize function should do is to remove the current directory, or any aliases that map into the current directory (e.g.
::
,:.:
,:./:
,:./.:
, etc.). - Relative directories, those not starting with "/" are similarly dangerous.
- It's also dangerous for any of the directories found in the PATH to be world writable, where someone can create a program with the same name as a system tool invoked by your program. (Consider having a PATH with
/tmp
in it, where someone could have placed a script named "ls
".)
- The current directory is dangerous in the PATH, except possibly at the end. So one thing your sanitize function should do is to remove the current directory, or any aliases that map into the current directory (e.g.
- You will have to write the sanitize() function. Some things to consider are:
...