Explore >> Select a destination


You are here

intrigus.org
| | pymotw.com
11.2 parsecs away

Travel
| |
| | blog.trailofbits.com
13.8 parsecs away

Travel
| | By Matt Schwager Deserializing, decoding, and processing untrusted input are telltale signs that your project would benefit from fuzzing. Yes, even Python projects. Fuzzing helps reduce bugs in high-assurance software developed in all programming languages. Fortunately for the Python ecosystem, Google has released Atheris, a coverage-guided fuzzer for both pure Python code and Python C
| | thepythoncorner.com
24.0 parsecs away

Travel
| | In 2016 I wrote a post about serialization in Python by using the pickle Python module. In this article, we will try to serialize Python objects by using another module: json. According to Wikipedia "JSON is an open-standard file format or data interchange format that uses human-readable text to transmit data objects consisting of attribute-value pairs and array data types (or any other serializable value)". But why you should use to use JSON instead of the official pickle module? Well, it depends on what you have to do... JSON is a safer protocol, it's human-readable and it's a standard adopted...
| | textslashplain.com
85.1 parsecs away

Travel
| While it's common to think of cyberattacks as being conducted by teams of elite cybercriminals leveraging the freshest 0-day attacks against victims' PCs, the reality is far more mundane. Most attacks start as social engineering attacks: abusing a user's misplaced trust. Most attackers don't hack in, they log in. The most common cyberattack is phishing:...