최신The SecOps Group Certified AppSec Practitioner - CAP무료샘플문제
Which of the following is considered as a safe password?
Salt is a cryptographically secure random string that is added to a password before it is hashed. In this context, what is the primary objective of salting?
The application is vulnerable to Cross-Site Scripting. Which of the following exploitation is NOT possible at all?
What is the name of the WordPress file that contains the database connection information, including the database name, username, and password?
Which of the following hashing algorithms is considered to be the most secure amongst these?
Based on the below-mentioned code snippet, the 'filename' variable is vulnerable to which of the following attacks?
import os
filename = input("Enter the file name:")
path = "/var/www/html/files/" + filename
content = ""
with open(path, 'r') as file:
content = file.read()
print("File content:\n", content)