Alok Menghrajani

Previously: security engineer at Square, co-author of HackLang, put the 's' in https at Facebook. Maker of CTFs.


This blog does not use any tracking cookies and does not serve any ads. Enjoy your anonymity; I have no idea who you are, where you came from, and where you are headed to. Let's dream of an Internet from times past.


Home | Contact me | Github | RSS feed | Consulting services | Tools & games

Max, Scott and I worked on taint support for PHP.

The idea is to detect & prevent security bugs such as SQL injections, shell injection, XSS, etc.

Taint support implies keeping track of which strings are controlled externally. The main implementation difficulty is making sure that the taint related code does not spread through the entire compiler. Max came up with a clever design involving a TaintObserver object.

Unfortunately, tracking taint currently implies a big performance loss and cannot be enabled site-wide.

Checkout http://www.jsflow.net/jsflow-challenge.html for similar work and if you want to play with a JavaScript challenge.