Hashing Passwords – Python Cryptography Examples

By Lane Wagner – @wagslane on Twitter Building a from-scratch server or using a lightweight framework is empowering. With that power comes responsibility, specifically the responsibility to securely store user’s passwords. Can I Store Passwords In Plain T… Read more

Similar

Python One Line Reverse Shell

https://youtu.be/ps00wDz6d-U This article will be fun! You'll learn about an important concept in security: reverse shells. You'll also learn how to create reverse shells in Python in a single line of code. So, let's start with the big question: What is a... (more…)

Read more »

Changing Python’s string search algorithms

Fredrik Lundh crafted our current string search algorithms, and they've served us very well. They're nearly always as fast as dumbest-possible brute force search, and sometimes much faster. This was bought with some very cheap one-pass preprocessing of t... (more…)

Read more »