QuestionQ36
Security EngineeringA security engineer is reviewing the following code in an internally developed web application that enables employees to manipulate documents from several internal servers. Users can identify the document to parse by supplying its URL to the application as a parameter. The application then runs the following Python call:
response = requests.get(url)
Before deployment, the engineer wants to improve the application's security. Which of the following is the best control to implement?
- A Indexing
- B Output encoding
- C A code scanner
- D A WAF
Community Discussion