Skip to content

Instantly share code, notes, and snippets.

@rgranadino
rgranadino / gwsdecoder.php
Created August 23, 2012 04:43
D-Link gws file decoder
#/usb/bin/php
<?php
//author rgranadino aug 22 2012
//tested on a D-Link DIR-615 B2 v2.25 firmware.
//this is a php translation of:
// http://www.shulerent.com/2009/08/21/cracking-the-d-link-settings-file/
$file = $argv[1];
if (!is_readable($file)) {
echo "Cannot read file: $file\n";
@threedaymonk
threedaymonk / decode.sh
Created July 16, 2012 18:43
Breaking the http://www.olympicgamesmonitoring.com/ CAPTCHA in one line of shell script
#!/bin/sh
convert -threshold 30% $1 pnm:- | gocr - | tr 'OI' '01' | tr 'A-Z' 'a-z'
@zircote
zircote / composer.json
Created May 19, 2012 02:28
Example Composer utlizing Zend Framework 1.11.9 via SVN
{
"name": "zircote/Org",
"type": "library",
"version": "0.2.0",
"time" : "2012-04-21",
"description": "New world API Order",
"keywords": ["api"],
"homepage": "http://github.com/zircote/Org/",
"repositories": [
{