Explore >> Select a destination


You are here

akr.am
| | typesanitizer.com
14.8 parsecs away

Travel
| | Recently, I turned on UBSan for a fledgling work project. It went a little more sideways than I was expecting.
| | blog.nuculabs.de
13.7 parsecs away

Travel
| | I always wanted to play around with a binary analysis framework but most of the time I was turned off by how difficult it was to install and use it. Just recently I've thought to give angr a try and now I want to share my experience with you! I will present you a two scripts that solve two challenges, if you wish to dig deeper and learn Angr then you should visit it's official documentation.
| | embeddedartistry.com
11.3 parsecs away

Travel
| | 20 September 2023 by Phillip Johnston ? Last updated 28 September 2023Your toolchain is a useful place to start when incorporating security into your development process. There are several warnings and program augmentations that help harden your application. This article focuses on GCC and Clang, as that's what I primarily use. I'm happy to take ... Continue reading "Leveraging Your Toolchain to Improve Security"
| | qsantos.fr
81.8 parsecs away

Travel
| Although I am now mostly comfortable with Rust, some concepts still elude me. One of them is the exact meaning of Unpin. The documentation says: The documentation of Unpin says: Types that do not require any pinning guarantees. Where pinning is described as: From this, you could naturally deduce that Unpin is the trait that ... Continue reading You can move !Unpin ?