Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

The OWASP Top 10 is an excellent example that shows that of all possible security weaknesses only a small percentage still leads to the majority of security breaches. The OWASP Top 10 project analyses CVEs (Common Vulnerabilities and Exposures) and calculates an impact score.

SAST testing for Python is a low-effort method with a very high success rate.

pareto_for_python

In this course we will use the FOSS SAST tool for Python: Python Code Audit:

Most Python security defects can be traced back to:

  1. Design mistakes

  2. Weaknesses in the code. This also applies to AI-generated code, as many AI code generators do not produce secure code by default.

sast_in_context