Introduction to Angr

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....

August 21, 2019 · 4 min · Denis Nuțiu

Python Fire – Turning any Python script into a command line tool

It’s been a while since I wrote a post and I’m also going to make this one a short one. Python Fire is a pretty cool Python library from Google that lets you turn any Python script into a command line tool, this means that you don’t have to write any logic for handling command line parameters and options, but, if you script has sophisticated use cases then you’ll be probably be better by using argparse from the standard library....

January 27, 2019 · 2 min · Denis Nuțiu

Django Signals

I’ve been working on a website for some time now, at first I’ve made it with Django + templates and now I use Django Rest Framework and Angular. The website is supposed to be a platform for uploading papers and offer the ability to peer review them. What I want to talk about in this short article is how I simplified the development using Django signals for certain use cases....

June 30, 2018 · 3 min · Denis Nuțiu