Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am cgcai on github.
  • I am qxcg (https://keybase.io/qxcg) on keybase.
  • I have a public key whose fingerprint is B6AD 3899 0B54 B9F3 86A4 C1E0 70E3 5CC0 2363 B79C

To claim this, I am signing this object:

@cgcai
cgcai / fuzz.py
Created August 24, 2014 07:12
Incorrect Host Field Redirection Detection
# BUG: Incorrectly configured proxy servers can inadvertently redirect web
# traffic to the wrong hosts.
# This script tests for bad redirection against a CSV list of sites in the
# format:
# <index:int>,<host:string>
#
# Usage Instructions:
# 1. Alexa Top 1m: 'http://s3.amazonaws.com/alexa-static/top-1m.csv.zip'
# 2. `echo [] > seen.json`
# 3. `python fuzz.py >> results.txt`
@cgcai
cgcai / psi.js
Created June 19, 2013 08:40
A quick hack to parse NEA Website for latest PSI figures using vanilla nodejs (without plugins). Written 19 June 2013 while choking on Indonesian haze and waiting for code to compile. --Xofel.
/* File: psi.js
A quick hack to parse NEA Website for latest PSI figures using vanilla nodejs (without plugins).
Written 19 June 2013 while choking on Indonesian haze and waiting for code to compile. --Xofel.
*/
var http = require("http");
var util = require("util");
var isNumber = function (n) {
return !isNaN(parseFloat(n)) && isFinite(n);