Skip to content

Instantly share code, notes, and snippets.

View alaamub's full-sized avatar

Aladdin Almubayed alaamub

  • Resourcely
  • Berkeley, CA
View GitHub Profile
@alaamub
alaamub / cookiemonster.go
Created April 2, 2018 20:55 — forked from rwifeng/cookiemonster.go
Simple script to extract (encrypted) cookies out of Chrome OS X cookie store. Usage: ./cookiemonster domain.com
package main
import (
"code.google.com/p/go.crypto/pbkdf2"
"crypto/aes"
"crypto/cipher"
"crypto/sha1"
"database/sql"
"fmt"
"log"