Rule Definition
				Ensure the developer will work with a list of trusted source. Thanks to Strict-Transport-Security header you will enforces secure (HTTP over SSL/TLS) connections to the server.				
								
				
				Remediation
				Ensure you have enabled secure https connection when creating your connection.				
												
				 Violation Code Sample
				
				>>> import requests
>>> requests.get(url = "https://www.openstack.org/",verify = False)
				 
												 Fixed Code Sample
				
				>>> import requests
>>> requests.get(url = "https://www.openstack.org/", verify = CONF.ca_file) #Certificate check will be performed using file
>>> requests.get(url = "https://myserver.com") # Certificate check will be perfomed. Default value of verify "True" will be processed
        
				 
												
				 Related Technologies
								
				
				
				
				Technical Criterion
				Secure Coding - Input Validation
				
				
				
				
				
					
				
				
				
About CAST Appmarq
					
CAST Appmarq is by far the biggest repository of data about real IT systems. It's built on thousands of analyzed applications, made of 35 different technologies, by over 300 business organizations across major verticals. It provides IT Leaders with factual key analytics to let them know if their applications are on track.