Category: Programming

27 articles
Date Mon 01 June 2015
Author Adrien Merlini
Category Programming

Where a simple xor gets transformed beyond what it ever thought

Date Mon 02 February 2015
Author Adrien Merlini
Category Programming

A "hands-on" introduction to LLVM passes through obfuscation.

Date Fri 27 June 2014
Author Serge Guelton
Category Programming

Why does some memset calls get optimized away by the compiler? Let's investigate!

Date Fri 16 May 2014
Author Serge Guelton
Category Programming

Where building a custom obfuscated Python interpreter for a Python packer turned into an optimized Python interpreter.

Date Mon 12 May 2014
Author Adrien Guinet
Category Programming

Back in the days when I was playing with SSE instructions, I was trying to optimize every workload that I could think of. One of these was to convert thousands of IPv4 strings to 32-bit numbers for further processing. This article shows one way to optimize such a thing, and how the SSE instructions set can be used to get the better of your $1000 Intel CPU :)

Date Tue 21 January 2014
Author David Carle
Category Programming

Angular is a client side framework aimed at creating rich web applications. It adds logic declaration to the normally static HTML in order to provide a dynamic user experience. Built at Google, it is a perfect tool for building one page applications, and is made to be really accessible for the standard web developper. But some of the magic going on underneath can be tricky, doing things outside the box can be much more difficult. This article has no tutorial or introduction vocation, it just tries to shed some light on some unexpected behaviours of angular.

Date Wed 20 November 2013
Author Kevin Szkudlapski
Category Programming

Writing a disassembler is a tedious task. You have to decode the opcode, interpret the meaning of the operands and, finally, print the instruction correctly. Fortunately, you can count on IDA to provide modules with mapping executable, a colorful GUI, control flow graphs and so on. In this article, I'll share my feedbacks on developing an IDP module for IDA.