InterviewSolution
| 1. |
What's An "include" File? |
|
Answer» "INCLUDE" files are ones that contain information that will be incorporated into a program file when it executes. Typically, these files contain parameters or COMMONLY used code. However, they should never contain sensitive information LIKE passwords. If this recommendation has been followed, even an attacker who could read the files WOULD GAIN nothing from them. "include" files are ones that contain information that will be incorporated into a program file when it executes. Typically, these files contain parameters or commonly used code. However, they should never contain sensitive information like passwords. If this recommendation has been followed, even an attacker who could read the files would gain nothing from them. |
|