From the course: Secure Coding in Python (2020)
Unlock the full course today
Join today to access over 24,800 courses taught by industry experts.
Safe serializing - Python Tutorial
From the course: Secure Coding in Python (2020)
Safe serializing
- [Instructor] It's time to address OWASP Top 10 number three, sensitive data exposure. Now over the past few years, there's been a drastic change in the way we develop software. And much of that change has been powered by APIs and RESTful APIs in particular. Now whether an API is consumed by a single page application, a mobile application, or even another API, it's important to note that APIs are often less observed by people, and therefore more susceptible to overexposure of data. In the past, when a simple HTML page was rendered, with less APIs running in the background, you would see when data was leaked right away, and this would be picked up by the developer in the development process, perhaps QA, or even a customer that would complain to say that something is a little bit off. With APIs, a lot can go wrong as far as overexposure and this would go on under the hood. Unfortunately, hackers know this as well. And it…
Practice while you learn with exercise files
Download the files the instructor uses to teach the course. Follow along and learn by watching, listening and practicing.