Tag: security
All the articles with the tag "security".
Dangerous Python Functions, Part 3
Published: at 09:30 AMUpdates on Python security: new vulnerabilities discovered in PyYAML and other libraries, plus community feedback on dangerous function usage.
Answers to Django Security Questions
Published: at 06:56 AMAnswers to the Django security questions I get asked most often: CSRF protection, SQL injection prevention, secure sessions, and authentication gotchas.
Using Bandit in the Field
Published: at 03:17 PMReal-world experience using Bandit to scan Python codebases for security vulnerabilities. What works, what doesn't, and how to integrate it into your workflow.
Finding Vulnerabilities with Bandit Talk
Published: at 06:23 AMHow to use Bandit to automatically scan Python codebases for security vulnerabilities: setup, configuration, and integrating security checks into your development workflow.
Dangerous Python Functions, Part 2
Published: at 08:22 AMMore Python functions that can introduce security vulnerabilities, including pickle, PyYAML, and SQL injection risks. Learn how to use them safely.
Dangerous Python Functions, Part 1
Published: at 12:54 PMPython functions like eval(), exec(), and input() can create serious security vulnerabilities. Here's how to identify and avoid these dangerous patterns in your code.